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

108 lines
2.8 KiB
JavaScript
Raw Normal View History

2020-09-17 13:44:32 +08:00
/* eslint no-param-reassign: 0 */
2022-06-23 00:32:51 +08:00
/**
* @author OpSimple ( https://github.com/OpSimple )
* @summary Unmuzzle a user
* @version 1.0.0
* @description Pardon a dumb user to be able to speak again
* @module speak
*/
2018-06-01 03:45:45 +08:00
2020-11-07 05:16:43 +08:00
import {
isModerator,
2022-06-23 00:32:51 +08:00
} from '../utility/_UAC.js';
2022-06-23 00:32:51 +08:00
/**
* Automatically executes once after server is ready
* @param {Object} core - Reference to core environment object
2022-06-23 00:32:51 +08:00
* @public
* @return {void}
*/
2019-11-07 15:35:23 +08:00
export function init(core) {
if (typeof core.muzzledHashes === 'undefined') {
core.muzzledHashes = {};
}
}
2022-06-23 00:32:51 +08:00
/**
* Executes when invoked by a remote client
* @param {Object} env - Environment object with references to core, server, socket & payload
2022-06-23 00:32:51 +08:00
* @public
* @return {void}
*/
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 or mod
2020-11-07 05:16:43 +08:00
if (!isModerator(socket.level)) {
2023-12-27 16:26:49 +08:00
return server.police.frisk(socket, 10);
2018-06-01 03:45:45 +08:00
}
2018-06-04 15:07:24 +08:00
// check user input
2020-09-17 13:44:32 +08:00
if (typeof payload.ip !== 'string' && typeof payload.hash !== 'string') {
return server.reply({
cmd: 'warn', // @todo Add numeric error code as `id`
2019-11-07 15:35:23 +08:00
text: "hash:'targethash' or ip:'1.2.3.4' is required",
2020-10-10 13:34:59 +08:00
channel: socket.channel, // @todo Multichannel
2018-06-01 03:45:45 +08:00
}, socket);
}
2018-06-04 02:08:35 +08:00
2020-09-17 13:44:32 +08:00
if (typeof payload.ip === 'string') {
if (payload.ip === '*') {
2020-03-13 02:28:20 +08:00
core.muzzledHashes = {};
return server.broadcast({
cmd: 'info',
text: `${socket.nick} unmuzzled all users`,
2020-10-10 13:34:59 +08:00
channel: false, // @todo Multichannel, false for global
2020-11-07 05:16:43 +08:00
}, { level: isModerator });
2020-03-13 02:28:20 +08:00
}
2020-09-17 13:44:32 +08:00
} else if (payload.hash === '*') {
2020-03-13 02:28:20 +08:00
core.muzzledHashes = {};
return server.broadcast({
cmd: 'info',
text: `${socket.nick} unmuzzled all users`,
2020-10-10 13:34:59 +08:00
channel: false, // @todo Multichannel, false for global
2020-11-07 05:16:43 +08:00
}, { level: isModerator });
2020-03-13 02:28:20 +08:00
}
2018-06-04 15:07:24 +08:00
// find target & remove mute status
2018-06-01 03:45:45 +08:00
let target;
2020-09-17 13:44:32 +08:00
if (typeof payload.ip === 'string') {
target = server.getSocketHash(payload.ip);
2018-06-01 03:45:45 +08:00
} else {
2020-09-17 13:44:32 +08:00
target = payload.hash;
2018-06-01 03:45:45 +08:00
}
2018-06-04 02:08:35 +08:00
2018-06-01 03:45:45 +08:00
delete core.muzzledHashes[target];
2018-06-04 02:08:35 +08:00
2018-06-04 15:07:24 +08:00
// notify mods
2018-06-01 03:45:45 +08:00
server.broadcast({
cmd: 'info',
text: `${socket.nick}#${socket.trip} unmuzzled : ${target}`,
2020-10-10 13:34:59 +08:00
channel: false, // @todo Multichannel, false for global
2020-11-07 05:16:43 +08:00
}, { level: isModerator });
2018-06-01 03:45:45 +08:00
2019-11-07 15:35:23 +08:00
return true;
}
2022-06-23 00:32:51 +08:00
/**
* Module meta information
* @public
* @typedef {Object} speak/info
* @property {string} name - Module command name
* @property {string} category - Module category name
* @property {string} description - Information about module
2023-12-22 15:14:03 +08:00
* @property {Array} aliases - An array of alternative cmd names
2022-06-23 00:32:51 +08:00
* @property {string} usage - Information about module usage
*/
2019-11-07 15:35:23 +08:00
export const info = {
2018-06-01 03:45:45 +08:00
name: 'speak',
2022-06-23 00:32:51 +08:00
category: 'moderators',
description: 'Pardon a dumb user to be able to speak again',
2022-06-23 00:32:51 +08:00
aliases: ['unmuzzle', 'unmute'],
usage: `
2023-12-22 15:14:03 +08:00
API: { cmd: 'speak', ip/hash: '<target ip or hash>' }`,
2018-06-01 03:45:45 +08:00
};