cloudservices/src/events/messageCreate.ts

33 lines
1.1 KiB
TypeScript
Raw Normal View History

2019-10-14 23:37:04 -04:00
import { Message, TextChannel } from 'eris';
import Client from '../Client';
import { prefix } from '../config.json';
import Util from '../Util';
import Command from '../class/Command';
2019-10-14 19:04:07 -04:00
export default class {
client: Client
2019-10-14 23:37:04 -04:00
constructor(client: Client) {
this.client = client;
2019-10-14 19:04:07 -04:00
}
2019-10-15 10:42:42 -04:00
util: Util = new Util(this.client)
2019-10-14 19:04:07 -04:00
async run(message: Message) {
2019-10-14 23:37:04 -04:00
const noPrefix: string[] = message.content.slice(prefix.length).trim().split(/ +/g);
const command: string = noPrefix[0].toLowerCase();
2019-10-15 10:42:42 -04:00
const resolved: Command = this.util.resolveCommand(command);
2019-10-14 23:37:04 -04:00
if (!resolved) return;
if (resolved.guildOnly && !(message.channel instanceof TextChannel)) return;
const hasUserPerms: boolean = resolved.permissions.users.includes(message.author.id);
let hasRolePerms: boolean = false;
for (const role of resolved.permissions.roles) {
if (message.member && message.member.roles.includes(role)) {
hasRolePerms = true; break;
2019-10-14 19:04:07 -04:00
}
2019-10-14 23:37:04 -04:00
}
if (!hasRolePerms && !hasUserPerms) return;
const args: string[] = noPrefix.slice(1);
resolved.run(message, args);
2019-10-14 19:04:07 -04:00
}
2019-10-14 23:37:04 -04:00
}