1
0
Fork 0
cloudservices/src/commands/bearer.ts

33 lines
1.4 KiB
TypeScript
Raw Normal View History

2019-11-17 00:50:01 -05:00
/* eslint-disable consistent-return */
2019-11-17 00:43:58 -05:00
import { Message } from 'eris';
import { Command } from '../class';
import { Client } from '..';
export default class Bearer extends Command {
constructor(client: Client) {
super(client);
this.name = 'bearer';
2019-11-17 00:50:01 -05:00
this.description = 'Creates a bearer token.';
this.usage = `${this.client.config.prefix}bearer`;
this.guildOnly = false;
2019-11-17 00:43:58 -05:00
this.enabled = true;
}
public async run(message: Message) {
try {
const account = await this.client.db.Account.findOne({ userID: message.author.id });
if (!account) return message.channel.createMessage(`${this.client.stores.emojis.error} ***Account not found***`);
2019-11-17 00:43:58 -05:00
// eslint-disable-next-line no-underscore-dangle
const bearer = await this.client.server.security.createBearer(account._id);
const dm = await this.client.getDMChannel(message.author.id);
const msg = await dm.createMessage(`__**Library of Code sp-us | Cloud Services [API]**__\n*This message will automatically be deleted in 60 seconds, copy the token and save it. You cannot recover it.*\n\n${bearer}`);
message.channel.createMessage(`***${this.client.stores.emojis.success} Bearer token sent to direct messages.***`);
setTimeout(() => {
msg.delete();
}, 60000);
} catch (error) {
return this.client.util.handleError(error, message, this);
}
}
}