2020-09-17 13:44:32 +08:00
|
|
|
/* eslint no-console: 0 */
|
|
|
|
|
2018-03-10 15:47:00 +08:00
|
|
|
/*
|
2018-03-14 13:26:53 +08:00
|
|
|
Description: Removes a target ip from the ratelimiter
|
2018-03-10 15:47:00 +08:00
|
|
|
*/
|
|
|
|
|
2020-03-07 01:00:30 +08:00
|
|
|
import * as UAC from '../utility/UAC/_info';
|
2020-03-06 00:49:25 +08:00
|
|
|
|
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-06-04 15:07:24 +08:00
|
|
|
// increase rate limit chance and ignore if not admin or mod
|
2020-03-06 00:49:25 +08:00
|
|
|
if (!UAC.isModerator(socket.level)) {
|
2019-11-07 15:35:23 +08:00
|
|
|
return server.police.frisk(socket.address, 10);
|
2018-03-10 15:47:00 +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') {
|
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: "hash:'targethash' or ip:'1.2.3.4' is required",
|
2020-10-10 13:34:59 +08:00
|
|
|
channel: socket.channel, // @todo Multichannel
|
2018-03-14 14:22:23 +08:00
|
|
|
}, socket);
|
2018-03-11 14:41:17 +08:00
|
|
|
}
|
|
|
|
|
2018-06-04 15:07:24 +08:00
|
|
|
// find target
|
2020-03-13 02:28:20 +08:00
|
|
|
let mode;
|
|
|
|
let target;
|
2020-09-17 13:44:32 +08:00
|
|
|
if (typeof payload.ip === 'string') {
|
2018-03-14 14:22:23 +08:00
|
|
|
mode = 'ip';
|
2020-09-17 13:44:32 +08:00
|
|
|
target = payload.ip;
|
2018-03-14 14:22:23 +08:00
|
|
|
} else {
|
|
|
|
mode = 'hash';
|
2020-09-17 13:44:32 +08:00
|
|
|
target = payload.hash;
|
2018-03-14 14:22:23 +08:00
|
|
|
}
|
2018-03-14 13:26:53 +08:00
|
|
|
|
2018-06-04 15:07:24 +08:00
|
|
|
// remove arrest record
|
2019-04-08 08:04:10 +08:00
|
|
|
server.police.pardon(target);
|
2018-03-14 13:26:53 +08:00
|
|
|
|
2018-06-04 15:07:24 +08:00
|
|
|
// mask ip if used
|
2018-03-14 14:22:23 +08:00
|
|
|
if (mode === 'ip') {
|
|
|
|
target = server.getSocketHash(target);
|
2018-03-14 13:26:53 +08:00
|
|
|
}
|
2018-03-14 14:22:23 +08:00
|
|
|
console.log(`${socket.nick} [${socket.trip}] unbanned ${target} in ${socket.channel}`);
|
2018-03-10 15:47:00 +08:00
|
|
|
|
2018-06-04 15:07:24 +08:00
|
|
|
// reply with success
|
2018-03-10 15:47:00 +08:00
|
|
|
server.reply({
|
|
|
|
cmd: 'info',
|
2019-11-07 15:35:23 +08:00
|
|
|
text: `Unbanned ${target}`,
|
2020-10-10 13:34:59 +08:00
|
|
|
channel: socket.channel, // @todo Multichannel
|
2018-03-10 15:47:00 +08:00
|
|
|
}, socket);
|
|
|
|
|
2018-06-04 15:07:24 +08:00
|
|
|
// notify mods
|
2018-03-14 13:26:53 +08:00
|
|
|
server.broadcast({
|
|
|
|
cmd: 'info',
|
2020-03-07 05:29:15 +08:00
|
|
|
text: `${socket.nick}#${socket.trip} unbanned: ${target}`,
|
2020-10-10 13:34:59 +08:00
|
|
|
channel: false, // @todo Multichannel, false for global
|
2020-03-06 00:49:25 +08:00
|
|
|
}, { level: UAC.isModerator });
|
2018-03-14 13:26:53 +08:00
|
|
|
|
2018-06-04 15:07:24 +08:00
|
|
|
// stats are fun
|
2019-03-19 14:36:21 +08:00
|
|
|
core.stats.decrement('users-banned');
|
2018-03-10 15:47:00 +08:00
|
|
|
|
2019-11-07 15:35:23 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
export const info = {
|
2018-05-13 18:33:22 +08:00
|
|
|
name: 'unban',
|
2018-09-30 14:44:36 +08:00
|
|
|
description: 'Removes target ip from the ratelimiter',
|
|
|
|
usage: `
|
2019-11-07 15:35:23 +08:00
|
|
|
API: { cmd: 'unban', ip/hash: '<target ip or hash>' }`,
|
2018-06-04 15:07:24 +08:00
|
|
|
};
|