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

54 lines
1.1 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
*/
'use strict';
exports.run = async (core, server, socket, data) => {
if (socket.uType == 'user') {
// ignore if not mod or admin
return;
}
if (typeof data.ip !== 'string') {
return;
}
let ip = data.ip;
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
console.log(`${socket.nick} [${socket.trip}] unbanned ${/*hash || */ip} in ${socket.channel}`);
2018-03-10 15:47:00 +08:00
server.reply({
cmd: 'info',
text: `${socket.nick} unbanned a userhash: ${server.getSocketHash(ip)}`
2018-03-10 15:47:00 +08:00
}, socket);
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'
};