mirror of
https://github.com/hack-chat/main.git
synced 2024-03-22 13:20:33 +08:00
75 lines
1.7 KiB
JavaScript
75 lines
1.7 KiB
JavaScript
/* eslint no-console: 0 */
|
|
|
|
/*
|
|
Description: Removes a target ip from the ratelimiter
|
|
*/
|
|
|
|
import {
|
|
isModerator,
|
|
} from '../utility/_UAC';
|
|
|
|
// module main
|
|
export async function run({
|
|
core, server, socket, payload,
|
|
}) {
|
|
// increase rate limit chance and ignore if not admin or mod
|
|
if (!isModerator(socket.level)) {
|
|
return server.police.frisk(socket.address, 10);
|
|
}
|
|
|
|
// check user input
|
|
if (typeof payload.ip !== 'string' && typeof payload.hash !== 'string') {
|
|
return server.reply({
|
|
cmd: 'warn', // @todo Add numeric error code as `id`
|
|
text: "hash:'targethash' or ip:'1.2.3.4' is required",
|
|
channel: socket.channel, // @todo Multichannel
|
|
}, socket);
|
|
}
|
|
|
|
// find target
|
|
let mode;
|
|
let target;
|
|
if (typeof payload.ip === 'string') {
|
|
mode = 'ip';
|
|
target = payload.ip;
|
|
} else {
|
|
mode = 'hash';
|
|
target = payload.hash;
|
|
}
|
|
|
|
// remove arrest record
|
|
server.police.pardon(target);
|
|
|
|
// mask ip if used
|
|
if (mode === 'ip') {
|
|
target = server.getSocketHash(target);
|
|
}
|
|
console.log(`${socket.nick} [${socket.trip}] unbanned ${target} in ${socket.channel}`);
|
|
|
|
// reply with success
|
|
server.reply({
|
|
cmd: 'info',
|
|
text: `Unbanned ${target}`,
|
|
channel: socket.channel, // @todo Multichannel
|
|
}, socket);
|
|
|
|
// notify mods
|
|
server.broadcast({
|
|
cmd: 'info',
|
|
text: `${socket.nick}#${socket.trip} unbanned: ${target}`,
|
|
channel: false, // @todo Multichannel, false for global
|
|
}, { level: isModerator });
|
|
|
|
// stats are fun
|
|
core.stats.decrement('users-banned');
|
|
|
|
return true;
|
|
}
|
|
|
|
export const info = {
|
|
name: 'unban',
|
|
description: 'Removes target ip from the ratelimiter',
|
|
usage: `
|
|
API: { cmd: 'unban', ip/hash: '<target ip or hash>' }`,
|
|
};
|