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/unban.js

62 lines
1.4 KiB
JavaScript
Raw Normal View History

2018-03-10 15:47:00 +08:00
/*
Description: Removes a target ip from the ratelimiter
2018-03-10 15:47:00 +08:00
*/
// module main
2018-03-10 15:47:00 +08:00
exports.run = async (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') {
return server._police.frisk(socket.remoteAddress, 10);
2018-03-10 15:47:00 +08:00
}
2018-06-04 15:07:24 +08:00
// check user input
2018-03-14 14:22:23 +08:00
if (typeof data.ip !== 'string' && typeof data.hash !== 'string') {
return server.reply({
2018-03-14 14:22:23 +08:00
cmd: 'warn',
text: "hash:'targethash' or ip:'1.2.3.4' is required"
}, socket);
}
2018-06-04 15:07:24 +08:00
// find target
2018-03-14 14:22:23 +08:00
let mode, target;
if (typeof data.ip === 'string') {
mode = 'ip';
target = data.ip;
} else {
mode = 'hash';
target = data.hash;
}
2018-06-04 15:07:24 +08:00
// remove arrest record
2018-03-14 14:22:23 +08:00
server._police.pardon(target);
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 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',
2018-03-14 14:22:23 +08:00
text: `Unbanned ${target}`
2018-03-10 15:47:00 +08:00
}, socket);
2018-06-04 15:07:24 +08:00
// notify mods
server.broadcast({
cmd: 'info',
2018-03-14 14:22:23 +08:00
text: `${socket.nick} unbanned: ${target}`
}, { uType: 'mod' });
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
};
// module meta
2018-05-13 18:33:22 +08:00
exports.info = {
name: 'unban',
description: 'Removes target ip from the ratelimiter',
usage: `
API: { cmd: 'unban', ip/hash: '<target ip or hash>' }`
2018-06-04 15:07:24 +08:00
};