2019-11-30 18:47:47 -05:00
|
|
|
import { Message } from 'eris';
|
|
|
|
import { Client } from '..';
|
|
|
|
import { Command } from '../class';
|
|
|
|
|
2019-11-30 18:59:13 -05:00
|
|
|
export default class Load extends Command {
|
2019-11-30 18:47:47 -05:00
|
|
|
constructor(client: Client) {
|
|
|
|
super(client);
|
|
|
|
this.name = 'load';
|
|
|
|
this.description = '(Re)loads command, config or util';
|
|
|
|
this.aliases = ['reload'];
|
2019-11-30 18:53:23 -05:00
|
|
|
this.permissions = { users: ['253600545972027394', '278620217221971968'] };
|
2019-11-30 18:47:47 -05:00
|
|
|
this.enabled = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public async run(message: Message, args: string[]) {
|
|
|
|
try {
|
|
|
|
if (!args[0]) return this.client.commands.get('help').run(message, [this.name]);
|
|
|
|
const allowed = ['config', 'util', 'command', 'function'];
|
|
|
|
const type = args[0].toLowerCase();
|
|
|
|
if (!allowed.includes(type)) return message.channel.createMessage(`${this.client.stores.emojis.error} ***Invalid type to (re)load***`);
|
|
|
|
|
|
|
|
const corepath = '/var/CloudServices/dist';
|
2019-11-30 20:29:24 -05:00
|
|
|
if (type === 'config') this.client.config = require(`${corepath}/config.json`);
|
2019-11-30 18:47:47 -05:00
|
|
|
else if (type === 'util') {
|
2019-11-30 20:35:15 -05:00
|
|
|
const Util = require(`${corepath}/class/Util`);
|
2019-11-30 18:47:47 -05:00
|
|
|
this.client.util = new Util(this.client);
|
|
|
|
} else {
|
|
|
|
try {
|
2019-11-30 20:29:24 -05:00
|
|
|
const cmdIndex = require('../commands');
|
2019-11-30 19:22:51 -05:00
|
|
|
let Cmd = cmdIndex[args[1]];
|
2019-11-30 18:59:13 -05:00
|
|
|
if (!Cmd) return message.channel.createMessage(`${this.client.stores.emojis.error} ***Could not find file***`);
|
2019-11-30 19:38:01 -05:00
|
|
|
Cmd = require(`${corepath}/commands/${args[1]}`).default;
|
2019-11-30 18:47:47 -05:00
|
|
|
this.client.commands.remove(args[1]);
|
|
|
|
this.client.loadCommand(Cmd);
|
|
|
|
} catch (error) {
|
|
|
|
if (error.message.includes('Cannot find module')) return message.channel.createMessage(`${this.client.stores.emojis} ***Cannot find file***`);
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return message.channel.createMessage(`${this.client.stores.emojis.success} Reloaded ${type}`);
|
|
|
|
} catch (error) {
|
|
|
|
return this.client.util.handleError(error, message, this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|