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/mod/speak.js

54 lines
1.2 KiB
JavaScript
Raw Normal View History

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
*/
2019-11-07 15:35:23 +08:00
// module constructor
export function init(core) {
if (typeof core.muzzledHashes === 'undefined') {
core.muzzledHashes = {};
}
}
// module main
2019-11-07 15:35:23 +08:00
export async function run(core, server, socket, data) {
2018-06-04 15:07:24 +08:00
// increase rate limit chance and ignore if not admin or mod
if (socket.uType === 'user') {
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
2018-06-01 03:45:45 +08:00
if (typeof data.ip !== 'string' && typeof data.hash !== 'string') {
return server.reply({
2018-06-01 03:45:45 +08:00
cmd: 'warn',
2019-11-07 15:35:23 +08:00
text: "hash:'targethash' or ip:'1.2.3.4' is required",
2018-06-01 03:45:45 +08:00
}, socket);
}
2018-06-04 02:08:35 +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;
if (typeof data.ip === 'string') {
2019-11-07 15:35:23 +08:00
target = server.getSocketHash(data.ip);
2018-06-01 03:45:45 +08:00
} else {
target = data.hash;
}
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',
2019-11-07 15:35:23 +08:00
text: `${socket.nick} unmuzzled : ${target}`,
2018-06-01 03:45:45 +08:00
}, { uType: 'mod' });
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'];