1
0
Fork 0

Attempt 2

refactor/models
Bsian 2019-12-17 01:27:12 +00:00
parent 34ecb3a77b
commit 08effc5b53
No known key found for this signature in database
GPG Key ID: 097FB9A291026091
2 changed files with 14 additions and 5 deletions

View File

@ -119,7 +119,11 @@ export default class Client extends Eris.Client {
});
this.server = new Server(this, { port: this.config.port });
require.cache = Object.create(null);
const corepath = '/var/CloudServices/dist';
const cmdFiles = await fs.readdir('/var/CloudServices/dist/commands');
cmdFiles.forEach((f) => delete require.cache[`${corepath}/${f}`]);
delete require.cache[`${corepath}/config.json`];
delete require.cache[`${corepath}/class/Util`];
}
}

View File

@ -9,21 +9,24 @@ export default class Load extends Command {
this.description = '(Re)loads command, config or util';
this.aliases = ['reload'];
this.permissions = { users: ['253600545972027394', '278620217221971968'] };
this.enabled = false;
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 allowed = ['config', 'util', 'command'];
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';
if (type === 'config') this.client.config = require(`${corepath}/config.json`);
else if (type === 'util') {
if (type === 'config') {
this.client.config = require(`${corepath}/config.json`);
delete require.cache[`${corepath}/config.json`];
} else if (type === 'util') {
const Util = require(`${corepath}/class/Util`);
this.client.util = new Util(this.client);
delete require.cache[`${corepath}/class/Util.js`];
} else {
try {
const cmdIndex = require('../commands');
@ -32,6 +35,8 @@ export default class Load extends Command {
Cmd = require(`${corepath}/commands/${args[1]}`).default;
this.client.commands.remove(args[1]);
this.client.loadCommand(Cmd);
delete require.cache[`${corepath}/commands/index.js`];
delete require.cache[`${corepath}/commands/${args[1]}.js`];
} catch (error) {
if (error.message.includes('Cannot find module')) return message.channel.createMessage(`${this.client.stores.emojis} ***Cannot find file***`);
throw error;