2019-10-14 15:46:10 -04:00
|
|
|
import Eris from 'eris';
|
|
|
|
import mongoose from 'mongoose';
|
2019-10-20 19:28:35 -04:00
|
|
|
import signale from 'signale';
|
2019-10-14 15:46:10 -04:00
|
|
|
import fs from 'fs-extra';
|
|
|
|
import path from 'path';
|
2019-10-26 00:02:44 -04:00
|
|
|
import { config } from '.';
|
2019-10-18 18:16:32 -04:00
|
|
|
import { Account, AccountInterface, Moderation, ModerationInterface, Domain, DomainInterface } from './models';
|
2019-10-15 20:34:13 -04:00
|
|
|
import { emojis } from './stores';
|
2019-10-26 00:02:44 -04:00
|
|
|
import { Command, Util } from './class';
|
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-22 18:40:02 -04:00
|
|
|
public config: { 'token': string; 'cloudflare': string; 'prefix': string; 'emailPass': string; };
|
2019-10-20 19:28:35 -04:00
|
|
|
|
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
|
|
|
|
2019-10-17 15:42:57 -04:00
|
|
|
public db: { Account: mongoose.Model<AccountInterface>; Domain: mongoose.Model<DomainInterface>; Moderation: mongoose.Model<ModerationInterface>; };
|
2019-10-14 23:32:37 -04:00
|
|
|
|
|
|
|
public stores: { emojis: { success: string, loading: string, error: string }; };
|
|
|
|
|
2019-10-20 19:28:35 -04:00
|
|
|
public signale: signale.Signale;
|
|
|
|
|
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-27 20:17:29 -04:00
|
|
|
process.title = 'cloudservices';
|
2019-10-20 19:28:35 -04:00
|
|
|
this.config = config;
|
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-17 15:42:57 -04:00
|
|
|
this.db = { Account, Domain, Moderation };
|
2019-10-14 23:32:37 -04:00
|
|
|
this.stores = { emojis };
|
2019-10-20 19:28:35 -04:00
|
|
|
this.signale = signale;
|
|
|
|
this.signale.config({
|
|
|
|
displayDate: true,
|
|
|
|
displayTimestamp: true,
|
|
|
|
displayFilename: true,
|
|
|
|
});
|
2019-10-26 00:02:44 -04:00
|
|
|
this.loadFunctions();
|
|
|
|
this.init();
|
|
|
|
}
|
|
|
|
|
|
|
|
private async loadFunctions() {
|
|
|
|
const functions = await fs.readdir('./functions');
|
|
|
|
functions.forEach(async (func) => {
|
|
|
|
try {
|
|
|
|
require(`./functions/${func}`).default(this);
|
|
|
|
} catch (error) {
|
|
|
|
await this.util.handleError(error);
|
|
|
|
}
|
|
|
|
});
|
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-20 19:28:35 -04:00
|
|
|
this.signale.complete(`Loaded command ${command.name}`);
|
2019-10-14 15:46:10 -04:00
|
|
|
} catch (err) { throw err; }
|
|
|
|
}
|
|
|
|
|
|
|
|
public async init() {
|
|
|
|
const evtFiles = await fs.readdir('./events/');
|
|
|
|
const commands = await fs.readdir(path.join(__dirname, './commands/'));
|
2019-10-14 23:32:37 -04:00
|
|
|
commands.forEach((command) => {
|
2019-10-20 19:28:35 -04:00
|
|
|
this.loadCommand(`./commands/${command}`);
|
2019-10-14 15:46:10 -04:00
|
|
|
});
|
2019-10-14 23:32:37 -04:00
|
|
|
|
|
|
|
evtFiles.forEach((file) => {
|
2019-10-14 15:46:10 -04:00
|
|
|
const eventName = file.split('.')[0];
|
|
|
|
const event = new (require(`./events/${file}`))(this);
|
2019-10-20 19:28:35 -04:00
|
|
|
this.signale.complete(`Loaded event ${eventName}`);
|
2019-10-14 15:46:10 -04:00
|
|
|
this.on(eventName, (...args) => event.run(...args));
|
|
|
|
delete require.cache[require.resolve(`./events/${file}`)];
|
|
|
|
});
|
|
|
|
|
2019-10-27 20:09:31 -04:00
|
|
|
await mongoose.connect(config.mongoURL);
|
2019-10-27 20:10:23 -04:00
|
|
|
await this.connect();
|
|
|
|
this.signale.success(`Successfully connected to Discord | ${this.user.username}#${this.user.discriminator}`);
|
2019-10-14 15:46:10 -04:00
|
|
|
}
|
2019-10-14 23:32:37 -04:00
|
|
|
}
|
2019-10-27 20:23:01 -04:00
|
|
|
|
|
|
|
// eslint-disable-next-line
|
|
|
|
new Client();
|