community-relations/src/events/CommandHandler.ts

35 lines
1.8 KiB
TypeScript
Raw Normal View History

2020-07-06 03:15:06 -04:00
/* eslint-disable no-useless-return */
import { Message, TextChannel, NewsChannel } from 'eris';
import { Client, Event } from '../class';
export default class CommandHandler extends Event {
public client: Client;
constructor(client: Client) {
super(client);
this.event = 'messageCreate';
}
public async run(message: Message) {
try {
2020-07-21 04:18:21 -04:00
this.client.db.Stat.updateOne({ name: 'messages' }, { $inc: { value: 1 } }).exec();
2020-07-06 03:15:06 -04:00
if (message.author.bot) return;
if (message.content.indexOf(this.client.config.prefix) !== 0) return;
const noPrefix: string[] = message.content.slice(this.client.config.prefix.length).trim().split(/ +/g);
const resolved = await this.client.util.resolveCommand(noPrefix);
if (!resolved) return;
if (resolved.cmd.guildOnly && !(message.channel instanceof TextChannel || message.channel instanceof NewsChannel)) return;
if (!resolved.cmd.enabled) { message.channel.createMessage(`***${this.client.util.emojis.ERROR} This command has been disabled***`); return; }
2020-09-19 16:30:44 -04:00
if (!resolved.cmd.checkPermissions(this.client.util.resolveMember(message.author.id, this.client.guilds.get('446067825673633794')))) return;
2020-07-06 03:15:06 -04:00
if ((message.channel.type === 0) && !message.channel.guild.members.get(message.author.id)) {
message.channel.guild.members.add(await message.channel.guild.getRESTMember(message.author.id));
}
this.client.util.signale.log(`User '${message.author.username}#${message.author.discriminator}' ran command '${resolved.cmd.name}' in '${message.channel.id}'.`);
await resolved.cmd.run(message, resolved.args);
2020-07-21 04:18:21 -04:00
this.client.db.Stat.updateOne({ name: 'commands' }, { $inc: { value: 1 } }).exec();
2020-07-06 03:15:06 -04:00
} catch (err) {
this.client.util.handleError(err, message);
}
}
}