galactic-bot/structure/client/DiscordClient.js
2020-07-27 20:00:24 -07:00

100 lines
3.1 KiB
JavaScript

const { Client } = require('discord.js');
const options = require('../../options.json');
const Registry = require('./Registry.js');
const EventHooker = require('./EventHooker.js');
const Dispatcher = require('./Dispatcher.js');
const Resolver = require('./Resolver.js');
const Logger = require('./Logger.js');
const TransactionHandler = require('./TransactionHandler.js');
const LocaleLoader = require('../../language/LocaleLoader.js');
const ModerationManager = require('../moderation/ModerationManager.js');
const RateLimiter = require('./RateLimiter.js');
const { Guild, GuildMember, User, Message } = require('../../structure/extensions/'); //eslint-disable-line no-unused-vars
const { Command, Observer, Inhibitor, Setting } = require('../../structure/interfaces/');
const { DefaultGuild } = require('../../util/defaults/');
class DiscordClient extends Client {
constructor(options) {
super(options.bot.clientOptions);
this.registry = new Registry(this);
this.eventHooker = new EventHooker(this);
this.dispatcher = new Dispatcher(this);
this.resolver = new Resolver(this);
this.logger = new Logger(this);
this.transactionHandler = new TransactionHandler(this);
this.localeLoader = new LocaleLoader(this);
this.rateLimiter = new RateLimiter(this);
this.moderationManager = new ModerationManager(this);
this._options = options;
this._built = false;
this._defaultConfig = null;
process.on('message', this._handleMessage.bind(this));
}
async build() {
if(this._built) return undefined;
const beforeTime = Date.now();
await super.login(this._options.bot.token);
this.localeLoader.loadLanguages();
await this.registry.loadComponents('components/inhibitors/', Inhibitor);
await this.registry.loadComponents('components/commands/', Command);
await this.registry.loadComponents('components/observers/', Observer);
await this.registry.loadComponents('components/settings/', Setting);
await this.moderationManager.initialize();
await this.dispatcher.dispatch();
this.logger.debug(`Took ${Date.now()-beforeTime}ms to build the client.`);
this._built = true;
return this._built;
}
async _handleMessage(message) {
if(message._storage) this.transactionHandler._receive(message);
}
get defaultConfig() {
if(this._defaultConfig) return this._defaultConfig;
const settings = this.registry.components.filter((c) => c.type === 'setting' && c.resolve === 'GUILD');
let def = DefaultGuild;
for(const setting of settings.values()) {
if(setting.default !== null) {
def = {
...def,
...setting.default
};
}
}
this._defaultConfig = def;
return def;
}
}
module.exports = DiscordClient;
const client = new DiscordClient(options);
client.build();
process.on("unhandledRejection", (error) => {
console.error("Unhandled promise rejection:", error); //eslint-disable-line no-console
});