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

50 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
*/
import * as UAC from '../utility/UAC/_info';
// module main
2020-09-17 13:44:32 +08:00
export async function run({
core, server, socket, payload,
}) {
2018-06-04 15:07:24 +08:00
// increase rate limit chance and ignore if not admin
if (!UAC.isAdmin(socket.level)) {
2019-11-07 15:35:23 +08:00
return server.police.frisk(socket.address, 20);
2018-03-10 15:47:00 +08:00
}
// do command reload and store results
2019-04-08 08:04:10 +08:00
let loadResult = core.dynamicImports.reloadDirCache();
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
2019-11-07 15:35:23 +08:00
if (loadResult === '') {
2019-04-08 08:04:10 +08:00
loadResult = `Reloaded ${core.commands.commands.length} commands, 0 errors`;
} else {
2019-04-08 08:04:10 +08:00
loadResult = `Reloaded ${core.commands.commands.length} commands, error(s):
${loadResult}`;
}
2020-09-17 13:44:32 +08:00
if (typeof payload.reason !== 'undefined') {
loadResult += `\nReason: ${payload.reason}`;
}
2018-03-10 15:47:00 +08:00
// send results to moderators (which the user using this command is higher than)
2020-03-13 02:28:20 +08:00
server.broadcast({
2018-03-10 15:47:00 +08:00
cmd: 'info',
2019-11-07 15:35:23 +08:00
text: loadResult,
}, { level: UAC.isModerator });
2018-03-10 15:47:00 +08:00
2019-11-07 15:35:23 +08:00
return true;
}
export const info = {
2018-05-13 18:33:22 +08:00
name: 'reload',
description: '(Re)loads any new commands into memory, outputs errors if any',
usage: `
2019-11-07 15:35:23 +08:00
API: { cmd: 'reload', reason: '<optional reason append>' }`,
2018-05-13 18:33:22 +08:00
};