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

73 lines
1.8 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
*/
import * as UAC from '../utility/UAC/_info';
// module main
2019-11-07 15:35:23 +08:00
export async function run(core, server, socket, data) {
2018-06-04 15:07:24 +08:00
// increase rate limit chance and ignore if not admin or mod
if (!UAC.isModerator(socket.level)) {
2019-11-07 15:35:23 +08:00
return server.police.frisk(socket.address, 10);
2018-03-10 15:47:00 +08:00
}
2018-06-04 15:07:24 +08:00
// check user input
if (typeof data.nick !== 'string') {
2019-11-07 15:35:23 +08:00
return true;
}
2018-06-04 15:07:24 +08:00
// find target user
2019-11-07 15:35:23 +08:00
const targetNick = data.nick;
let badClient = server.findSockets({ channel: socket.channel, nick: targetNick });
2018-03-10 15:47:00 +08:00
if (badClient.length === 0) {
return server.reply({
2018-03-10 15:47:00 +08:00
cmd: 'warn',
2019-11-07 15:35:23 +08:00
text: 'Could not find user in channel',
2018-03-10 15:47:00 +08:00
}, socket);
}
2019-11-07 15:35:23 +08:00
[badClient] = badClient;
2018-06-04 15:07:24 +08:00
// i guess banning mods or admins isn't the best idea?
if (badClient.level >= socket.level) {
return server.reply({
2018-03-10 15:47:00 +08:00
cmd: 'warn',
2019-11-07 15:35:23 +08:00
text: 'Cannot ban other mods, how rude',
2018-03-10 15:47:00 +08:00
}, socket);
}
2018-06-04 15:07:24 +08:00
// commit arrest record
2019-11-07 15:35:23 +08:00
server.police.arrest(badClient.address, badClient.hash);
2018-03-10 15:47:00 +08:00
console.log(`${socket.nick} [${socket.trip}] banned ${targetNick} in ${socket.channel}`);
2018-06-04 15:07:24 +08:00
// notify normal users
2018-03-10 15:47:00 +08:00
server.broadcast({
cmd: 'info',
2019-11-07 15:35:23 +08:00
text: `Banned ${targetNick}`,
}, { channel: socket.channel, level: (level) => level < UAC.levels.moderator });
2018-06-04 15:07:24 +08:00
// notify mods
server.broadcast({
cmd: 'info',
2019-11-07 15:35:23 +08:00
text: `${socket.nick} banned ${targetNick} in ${socket.channel}, userhash: ${badClient.hash}`,
}, { level: UAC.isModerator });
2018-06-04 15:07:24 +08:00
// force connection closed
badClient.terminate();
2018-03-10 15:47:00 +08:00
2018-06-04 15:07:24 +08:00
// stats are fun
2019-03-19 14:36:21 +08:00
core.stats.increment('users-banned');
2018-03-10 15:47:00 +08:00
2019-11-07 15:35:23 +08:00
return true;
}
export const requiredData = ['nick'];
export const info = {
2018-05-13 18:33:22 +08:00
name: 'ban',
description: 'Disconnects the target nickname in the same channel as calling socket & adds to ratelimiter',
usage: `
2019-11-07 15:35:23 +08:00
API: { cmd: 'ban', nick: '<target nickname>' }`,
2018-05-13 18:33:22 +08:00
};