1
0
mirror of https://github.com/hack-chat/main.git synced 2024-03-22 13:20:33 +08:00
hack-chat-main/server/src/commands/admin/reload.js

51 lines
1.3 KiB
JavaScript
Raw Normal View History

2018-03-10 15:47:00 +08:00
/*
Description: Clears and resets the command modules, outputting any errors
2018-03-10 15:47:00 +08:00
*/
// module main
2018-03-10 15:47:00 +08:00
exports.run = async (core, server, socket, data) => {
2018-06-04 15:07:24 +08:00
// increase rate limit chance and ignore if not admin
2018-03-10 15:47:00 +08:00
if (socket.uType != 'admin') {
return server._police.frisk(socket.remoteAddress, 20);
2018-03-10 15:47:00 +08:00
}
// do command reload and store results
2019-03-19 14:36:21 +08:00
let loadResult = core.dynamicImports.reloadDirCache('src/commands');
2018-03-10 15:47:00 +08:00
loadResult += core.commands.loadCommands();
// clear and rebuild all module hooks
server.loadHooks();
2018-06-04 15:07:24 +08:00
// build reply based on reload results
if (loadResult == '') {
loadResult = `Reloaded ${core.commands._commands.length} commands, 0 errors`;
} else {
loadResult = `Reloaded ${core.commands._commands.length} commands, error(s):
${loadResult}`;
}
if (typeof data.reason !== 'undefined') {
loadResult += `\nReason: ${data.reason}`;
}
2018-03-10 15:47:00 +08:00
2018-06-04 15:07:24 +08:00
// reply with results
2018-03-10 15:47:00 +08:00
server.reply({
cmd: 'info',
text: loadResult
}, socket);
2018-06-04 15:07:24 +08:00
// notify mods of reload #transparency
2018-03-10 15:47:00 +08:00
server.broadcast({
cmd: 'info',
text: loadResult
}, { uType: 'mod' });
};
// module meta
2018-05-13 18:33:22 +08:00
exports.info = {
name: 'reload',
description: '(Re)loads any new commands into memory, outputs errors if any',
usage: `
API: { cmd: 'reload', reason: '<optional reason append>' }`
2018-05-13 18:33:22 +08:00
};