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
|
|
|
*/
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
exports.run = async (core, server, socket, data) => {
|
|
|
|
if (socket.uType == 'user') {
|
|
|
|
// ignore if not mod or admin
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-03-11 14:41:17 +08:00
|
|
|
if (typeof data.ip !== 'string') {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
let ip = data.ip;
|
2018-03-14 13:26:53 +08:00
|
|
|
let hash = data.hash; // TODO unban by hash
|
|
|
|
|
|
|
|
// TODO unban by hash
|
|
|
|
let recordFound = server._police.pardon(data.ip);
|
|
|
|
|
|
|
|
if (!recordFound) {
|
|
|
|
server.reply({
|
|
|
|
cmd: 'warn',
|
|
|
|
text: 'Could not find target in records'
|
|
|
|
}, socket);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
2018-03-10 15:47:00 +08:00
|
|
|
|
2018-03-14 13:26:53 +08:00
|
|
|
console.log(`${socket.nick} [${socket.trip}] unbanned ${/*hash || */ip} in ${socket.channel}`);
|
2018-03-10 15:47:00 +08:00
|
|
|
|
|
|
|
server.reply({
|
|
|
|
cmd: 'info',
|
2018-03-14 13:26:53 +08:00
|
|
|
text: `${socket.nick} unbanned a userhash: ${server.getSocketHash(ip)}`
|
2018-03-10 15:47:00 +08:00
|
|
|
}, socket);
|
|
|
|
|
2018-03-14 13:26:53 +08:00
|
|
|
server.broadcast({
|
|
|
|
cmd: 'info',
|
|
|
|
text: `${socket.nick} unbanned a userhash: ${server.getSocketHash(ip)}`
|
|
|
|
}, { uType: 'mod' });
|
|
|
|
|
2018-03-10 15:47:00 +08:00
|
|
|
core.managers.stats.decrement('users-banned');
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.requiredData = ['ip'];
|
|
|
|
|
|
|
|
exports.info = {
|
|
|
|
name: 'unban',
|
|
|
|
usage: 'unban {ip}',
|
|
|
|
description: 'Removes target ip from the ratelimiter'
|
|
|
|
};
|