2018-05-13 18:33:22 +08:00
|
|
|
/*
|
|
|
|
Description: Outputs the current command module list or command categories
|
|
|
|
*/
|
|
|
|
|
2018-09-30 14:44:36 +08:00
|
|
|
// module main
|
2020-09-17 13:44:32 +08:00
|
|
|
export async function run({
|
|
|
|
core, server, socket, payload,
|
|
|
|
}) {
|
2018-09-30 14:44:36 +08:00
|
|
|
// check for spam
|
2019-11-07 15:35:23 +08:00
|
|
|
if (server.police.frisk(socket.address, 2)) {
|
2018-09-30 14:44:36 +08:00
|
|
|
return server.reply({
|
2020-09-22 13:34:30 +08:00
|
|
|
cmd: 'warn', // @todo Add numeric error code as `id`
|
2019-11-07 15:35:23 +08:00
|
|
|
text: 'You are sending too much text. Wait a moment and try again.\nPress the up arrow key to restore your last message.',
|
2020-10-10 13:34:59 +08:00
|
|
|
channel: socket.channel, // @todo Multichannel
|
2018-09-30 14:44:36 +08:00
|
|
|
}, socket);
|
|
|
|
}
|
2018-06-04 15:07:24 +08:00
|
|
|
|
2018-09-30 14:44:36 +08:00
|
|
|
// verify user input
|
|
|
|
if (typeof payload.command !== 'undefined' && typeof payload.command !== 'string') {
|
2019-11-07 15:35:23 +08:00
|
|
|
return true;
|
2018-05-13 18:33:22 +08:00
|
|
|
}
|
|
|
|
|
2018-09-30 14:44:36 +08:00
|
|
|
let reply = '';
|
|
|
|
if (typeof payload.command === 'undefined') {
|
2019-11-08 06:34:38 +08:00
|
|
|
reply += '# All commands:\n|Category:|Name:|\n|---:|---|\n';
|
2018-05-13 18:33:22 +08:00
|
|
|
|
2019-11-07 15:35:23 +08:00
|
|
|
const categories = core.commands.categoriesList.sort();
|
|
|
|
for (let i = 0, j = categories.length; i < j; i += 1) {
|
2019-11-08 06:34:38 +08:00
|
|
|
reply += `|${categories[i].replace('../src/commands/', '').replace(/^\w/, (c) => c.toUpperCase())}:|`;
|
2020-09-17 13:44:32 +08:00
|
|
|
const catCommands = core.commands.all(categories[i]).sort(
|
|
|
|
(a, b) => a.info.name.localeCompare(b.info.name),
|
|
|
|
);
|
2019-11-08 06:34:38 +08:00
|
|
|
reply += `${catCommands.map((c) => `${c.info.name}`).join(', ')}|\n`;
|
2018-09-30 14:44:36 +08:00
|
|
|
}
|
2019-11-08 06:34:38 +08:00
|
|
|
|
|
|
|
reply += '---\nFor specific help on certain commands, use either:\nText: `/help <command name>`\nAPI: `{cmd: \'help\', command: \'<command name>\'}`';
|
2018-09-30 14:44:36 +08:00
|
|
|
} else {
|
2019-11-07 15:35:23 +08:00
|
|
|
const command = core.commands.get(payload.command);
|
2018-09-30 14:44:36 +08:00
|
|
|
|
|
|
|
if (typeof command === 'undefined') {
|
2019-11-08 06:34:38 +08:00
|
|
|
reply += 'Unknown command';
|
2018-09-30 14:44:36 +08:00
|
|
|
} else {
|
2019-11-08 06:34:38 +08:00
|
|
|
reply += `# ${command.info.name} command:\n| | |\n|---:|---|\n`;
|
|
|
|
reply += `|**Name:**|${command.info.name}|\n`;
|
|
|
|
reply += `|**Aliases:**|${typeof command.info.aliases !== 'undefined' ? command.info.aliases.join(', ') : 'None'}|\n`;
|
|
|
|
reply += `|**Category:**|${command.info.category.replace('../src/commands/', '').replace(/^\w/, (c) => c.toUpperCase())}|\n`;
|
|
|
|
reply += `|**Required Parameters:**|${command.requiredData || 'None'}|\n`;
|
2020-09-17 13:44:32 +08:00
|
|
|
// eslint-disable-next-line no-useless-escape
|
2019-11-08 06:34:38 +08:00
|
|
|
reply += `|**Description:**|${command.info.description || '¯\_(ツ)_/¯'}|\n\n`;
|
|
|
|
reply += `**Usage:** ${command.info.usage || command.info.name}`;
|
2018-09-30 14:44:36 +08:00
|
|
|
}
|
2018-05-13 18:33:22 +08:00
|
|
|
}
|
|
|
|
|
2018-06-04 15:07:24 +08:00
|
|
|
// output reply
|
2018-05-13 18:33:22 +08:00
|
|
|
server.reply({
|
|
|
|
cmd: 'info',
|
2019-11-07 15:35:23 +08:00
|
|
|
text: reply,
|
2020-10-10 13:34:59 +08:00
|
|
|
channel: socket.channel, // @todo Multichannel
|
2018-05-13 18:33:22 +08:00
|
|
|
}, socket);
|
2019-11-07 15:35:23 +08:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2018-05-13 18:33:22 +08:00
|
|
|
|
2018-09-30 14:44:36 +08:00
|
|
|
// module hook functions
|
2019-11-07 15:35:23 +08:00
|
|
|
export function initHooks(server) {
|
2019-11-08 01:46:55 +08:00
|
|
|
server.registerHook('in', 'chat', this.helpCheck.bind(this), 28);
|
2019-11-07 15:35:23 +08:00
|
|
|
}
|
2018-09-30 14:44:36 +08:00
|
|
|
|
|
|
|
// hooks chat commands checking for /whisper
|
2020-09-17 13:44:32 +08:00
|
|
|
export function helpCheck({
|
|
|
|
core, server, socket, payload,
|
|
|
|
}) {
|
2018-09-30 14:44:36 +08:00
|
|
|
if (typeof payload.text !== 'string') {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (payload.text.startsWith('/help')) {
|
2019-11-07 15:35:23 +08:00
|
|
|
const input = payload.text.substr(1).split(' ', 2);
|
2018-09-30 14:44:36 +08:00
|
|
|
|
2020-09-17 13:44:32 +08:00
|
|
|
this.run({
|
|
|
|
core,
|
|
|
|
server,
|
|
|
|
socket,
|
|
|
|
payload: {
|
|
|
|
cmd: input[0],
|
|
|
|
command: input[1],
|
|
|
|
},
|
2018-09-30 14:44:36 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return payload;
|
2019-11-07 15:35:23 +08:00
|
|
|
}
|
2018-09-30 14:44:36 +08:00
|
|
|
|
2019-11-07 15:35:23 +08:00
|
|
|
export const info = {
|
2018-05-13 18:33:22 +08:00
|
|
|
name: 'help',
|
2018-09-30 14:44:36 +08:00
|
|
|
description: 'Outputs information about the servers current protocol',
|
|
|
|
usage: `
|
|
|
|
API: { cmd: 'help', command: '<optional command name>' }
|
2019-11-07 15:35:23 +08:00
|
|
|
Text: /help <optional command name>`,
|
2018-06-04 15:07:24 +08:00
|
|
|
};
|