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

72 lines
1.9 KiB
JavaScript
Raw Normal View History

2022-06-22 11:32:51 -05:00
/**
* @author Marzavec ( https://github.com/marzavec )
* @summary Refresh modules
* @version 1.0.0
* @description Allows a remote user to clear and re-import the server command modules
* @module reload
*/
2018-03-09 23:47:00 -08:00
2020-11-06 13:16:43 -08:00
import {
isAdmin,
isModerator,
2022-06-22 11:32:51 -05:00
} from '../utility/_UAC.js';
2022-06-22 11:32:51 -05:00
/**
* Executes when invoked by a remote client
* @param {Object} env - Enviroment object with references to core, server, socket & payload
* @public
* @return {void}
*/
2020-09-17 00:44:32 -05:00
export async function run({
core, server, socket, payload,
}) {
2018-06-04 00:07:24 -07:00
// increase rate limit chance and ignore if not admin
2020-11-06 13:16:43 -08:00
if (!isAdmin(socket.level)) {
2019-11-06 23:35:23 -08:00
return server.police.frisk(socket.address, 20);
2018-03-09 23:47:00 -08:00
}
// do command reload and store results
2022-06-22 11:32:51 -05:00
let loadResult = await core.commands.reloadCommands();
2018-03-09 23:47:00 -08:00
// clear and rebuild all module hooks
server.loadHooks();
2018-06-04 00:07:24 -07:00
// build reply based on reload results
2019-11-06 23:35:23 -08:00
if (loadResult === '') {
2019-04-07 17:04:10 -07:00
loadResult = `Reloaded ${core.commands.commands.length} commands, 0 errors`;
} else {
2019-04-07 17:04:10 -07:00
loadResult = `Reloaded ${core.commands.commands.length} commands, error(s):
${loadResult}`;
}
2020-09-17 00:44:32 -05:00
if (typeof payload.reason !== 'undefined') {
loadResult += `\nReason: ${payload.reason}`;
}
2018-03-09 23:47:00 -08:00
// send results to moderators (which the user using this command is higher than)
2020-03-12 13:28:20 -05:00
server.broadcast({
2018-03-09 23:47:00 -08:00
cmd: 'info',
2019-11-06 23:35:23 -08:00
text: loadResult,
2020-10-10 00:34:59 -05:00
channel: false, // @todo Multichannel, false for global
2020-11-06 13:16:43 -08:00
}, { level: isModerator });
2018-03-09 23:47:00 -08:00
2019-11-06 23:35:23 -08:00
return true;
}
2022-06-22 11:32:51 -05:00
/**
* Module meta information
* @public
* @typedef {Object} reload/info
* @property {string} name - Module command name
* @property {string} category - Module category name
* @property {string} description - Information about module
* @property {string} usage - Information about module usage
*/
2019-11-06 23:35:23 -08:00
export const info = {
2018-05-13 16:03:22 +05:30
name: 'reload',
2022-06-22 11:32:51 -05:00
category: 'admin',
description: 'Allows a remote user to clear and re-import the server command modules',
usage: `
2019-11-06 23:35:23 -08:00
API: { cmd: 'reload', reason: '<optional reason append>' }`,
2018-05-13 16:03:22 +05:30
};