import Eris from 'eris'; import mongoose from 'mongoose'; import signale from 'signale'; import fs from 'fs-extra'; import path from 'path'; import config from './config.json'; import { Account, AccountInterface, Moderation, ModerationInterface, Domain, DomainInterface } from './models'; import { emojis } from './stores'; import { Command, Util } from './class'; export default class Client extends Eris.Client { public config: { 'token': string; 'cloudflare': string; 'prefix': string; 'emailPass': string; }; public util: Util; public commands: Map; public aliases: Map; public db: { Account: mongoose.Model; Domain: mongoose.Model; Moderation: mongoose.Model; }; public stores: { emojis: { success: string, loading: string, error: string }; }; public signale: signale.Signale; constructor() { super(config.token, { getAllUsers: true, restMode: true, defaultImageFormat: 'png' }); process.title = 'cloudservices'; this.config = config; this.util = new Util(this); this.commands = new Map(); this.aliases = new Map(); this.db = { Account, Domain, Moderation }; this.stores = { emojis }; this.signale = signale; this.signale.config({ displayDate: true, displayTimestamp: true, displayFilename: true, }); this.events(); this.loadFunctions(); this.init(); } private async events() { process.on('unhandledRejection', (error) => { this.signale.error(error); }); } private async loadFunctions() { const functions = await fs.readdir('./functions'); functions.forEach(async (func) => { if (func === 'index.ts') return; try { require(`./functions/${func}`).default(this); } catch (error) { await this.util.handleError(error); } }); } public loadCommand(commandPath: string) { // eslint-disable-next-line no-useless-catch try { // eslint-disable-next-line const command = new (require(commandPath).default)(this); this.commands.set(command.name, command); this.signale.complete(`Loaded command ${command.name}`); } catch (err) { throw err; } } public async init() { const evtFiles = await fs.readdir('./events/'); const commands = await fs.readdir(path.join(__dirname, './commands/')); commands.forEach((command) => { if (command === 'index.js') return; this.loadCommand(`./commands/${command}`); }); evtFiles.forEach((file) => { const eventName = file.split('.')[0]; if (file === 'index.js') return; // eslint-disable-next-line const event = new (require(`./events/${file}`).default)(this); this.signale.complete(`Loaded event ${eventName}`); this.on(eventName, (...args) => event.run(...args)); delete require.cache[require.resolve(`./events/${file}`)]; }); await mongoose.connect(config.mongoURL, { useNewUrlParser: true, useUnifiedTopology: true }); await this.connect(); } } // eslint-disable-next-line new Client();