cloudservices/src/Client.ts

64 lines
2.0 KiB
TypeScript
Raw Normal View History

2019-10-14 15:46:10 -04:00
import Eris from 'eris';
import mongoose from 'mongoose';
import fs from 'fs-extra';
import path from 'path';
import config from './config.json';
2019-10-14 23:32:37 -04:00
import Account, { AccountInterface } from './models/Account.js';
import Moderation, { ModerationInterface } from './models/Moderation.js';
import emojis from './stores/emojis.js';
import Util from './Util.js';
2019-10-14 23:37:04 -04:00
import Command from './class/Command';
2019-10-14 15:46:10 -04:00
2019-10-14 18:01:05 -04:00
2019-10-14 15:46:10 -04:00
export default class Client extends Eris.Client {
2019-10-14 23:32:37 -04:00
public util: Util;
2019-10-14 19:04:07 -04:00
public commands: Map<string, Command>;
2019-10-14 23:32:37 -04:00
2019-10-14 15:46:10 -04:00
public aliases: Map<string, string>;
2019-10-14 23:32:37 -04:00
public db: { Account: mongoose.Model<AccountInterface>; Moderation: mongoose.Model<ModerationInterface>; };
public stores: { emojis: { success: string, loading: string, error: string }; };
2019-10-14 15:46:10 -04:00
constructor() {
2019-10-14 23:32:37 -04:00
super(config.token, { getAllUsers: true, restMode: true, defaultImageFormat: 'png' });
2019-10-14 15:46:10 -04:00
2019-10-14 23:32:37 -04:00
this.util = new Util(this);
2019-10-14 15:46:10 -04:00
this.commands = new Map();
this.aliases = new Map();
2019-10-14 23:32:37 -04:00
this.db = { Account, Moderation };
this.stores = { emojis };
2019-10-14 15:46:10 -04:00
}
public loadCommand(commandPath: string) {
// eslint-disable-next-line no-useless-catch
try {
const command = new (require(commandPath))(this);
2019-10-14 23:32:37 -04:00
this.commands.set(command.name, command);
2019-10-14 18:01:05 -04:00
return `Successfully loaded ${command.name}.`;
2019-10-14 15:46:10 -04:00
} catch (err) { throw err; }
}
public async init() {
const evtFiles = await fs.readdir('./events/');
2019-10-14 23:32:37 -04:00
2019-10-14 15:46:10 -04:00
const commands = await fs.readdir(path.join(__dirname, './commands/'));
2019-10-14 23:32:37 -04:00
commands.forEach((command) => {
2019-10-14 15:46:10 -04:00
const response = this.loadCommand(`./commands/${command}`);
if (response) console.log(response);
});
2019-10-14 23:32:37 -04:00
2019-10-14 15:46:10 -04:00
console.log(`Loading a total of ${evtFiles.length} events.`);
2019-10-14 23:32:37 -04:00
evtFiles.forEach((file) => {
2019-10-14 15:46:10 -04:00
const eventName = file.split('.')[0];
console.log(`Loading Event: ${eventName}`);
const event = new (require(`./events/${file}`))(this);
this.on(eventName, (...args) => event.run(...args));
delete require.cache[require.resolve(`./events/${file}`)];
});
this.connect();
}
2019-10-14 23:32:37 -04:00
}