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

84 lines
2.1 KiB
JavaScript
Raw Normal View History

2020-09-17 13:44:32 +08:00
/* eslint no-param-reassign: 0 */
2018-06-04 02:08:35 +08:00
/*
2018-06-01 03:45:45 +08:00
* Description: Pardon a dumb user to be able to speak again
* Author: simple
*/
2020-11-07 05:16:43 +08:00
import {
isModerator,
} from '../utility/_UAC';
2019-11-07 15:35:23 +08:00
// module constructor
export function init(core) {
if (typeof core.muzzledHashes === 'undefined') {
core.muzzledHashes = {};
}
}
// 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 or mod
2020-11-07 05:16:43 +08:00
if (!isModerator(socket.level)) {
2019-11-07 15:35:23 +08:00
return server.police.frisk(socket.address, 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;
}
export const info = {
2018-06-01 03:45:45 +08:00
name: 'speak',
description: 'Pardon a dumb user to be able to speak again',
usage: `
2019-11-07 15:35:23 +08:00
API: { cmd: 'speak', ip/hash: '<target ip or hash' }`,
2018-06-01 03:45:45 +08:00
};
2019-11-07 15:35:23 +08:00
info.aliases = ['unmuzzle', 'unmute'];