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

61 lines
1.3 KiB
JavaScript
Raw Normal View History

2018-03-10 15:47:00 +08:00
/*
Description: Adds the target socket's ip to the ratelimiter
2018-03-10 15:47:00 +08:00
*/
exports.run = async (core, server, socket, data) => {
if (socket.uType == 'user') {
// ignore if not mod or admin
return;
}
if (typeof data.nick !== 'string') {
return;
}
let targetNick = data.nick;
let badClient = server.findSockets({ channel: socket.channel, nick: targetNick });
2018-03-10 15:47:00 +08:00
if (badClient.length === 0) {
2018-03-10 15:47:00 +08:00
server.reply({
cmd: 'warn',
text: 'Could not find user in channel'
}, socket);
return;
}
badClient = badClient[0];
2018-03-10 15:47:00 +08:00
if (badClient.uType !== 'user') {
server.reply({
cmd: 'warn',
text: 'Cannot ban other mods, how rude'
}, socket);
return;
}
2018-03-14 14:22:23 +08:00
let clientHash = server.getSocketHash(badClient);
server._police.arrest(badClient.remoteAddress, clientHash);
2018-03-10 15:47:00 +08:00
console.log(`${socket.nick} [${socket.trip}] banned ${targetNick} in ${socket.channel}`);
2018-03-10 15:47:00 +08:00
server.broadcast({
cmd: 'info',
text: `Banned ${targetNick}`
}, { channel: socket.channel, uType: 'user' });
server.broadcast({
cmd: 'info',
2018-03-14 14:22:23 +08:00
text: `${socket.nick} banned ${targetNick} in ${socket.channel}, userhash: ${clientHash}`
}, { uType: 'mod' });
2018-03-10 15:47:00 +08:00
badClient.close();
core.managers.stats.increment('users-banned');
};
exports.requiredData = ['nick'];
2018-05-12 16:43:12 +08:00
exports.info = { name: 'ban' };