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

39 lines
768 B
JavaScript
Raw Normal View History

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 nick = data.nick; // for future upgrade
2018-03-10 15:47:00 +08:00
// TODO: support remove by nick future upgrade
server._police.pardon(badClient.remoteAddress);
2018-03-10 15:47:00 +08:00
console.log(`${socket.nick} [${socket.trip}] unbanned ${/*nick || */ip} in ${socket.channel}`);
server.reply({
cmd: 'info',
text: `Unbanned ${/*nick || */ip}`
}, socket);
core.managers.stats.decrement('users-banned');
};
exports.requiredData = ['ip'];
exports.info = {
name: 'unban',
usage: 'unban {ip}',
description: 'Removes target ip from the ratelimiter'
};