1
0
mirror of https://github.com/hack-chat/main.git synced 2024-03-22 13:20:33 +08:00
hack-chat-main/commands/mod/ban.js

99 lines
2.6 KiB
JavaScript
Raw Normal View History

2020-09-17 13:44:32 +08:00
/* eslint no-console: 0 */
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
*/
2020-11-07 05:16:43 +08:00
import {
isModerator,
getUserDetails,
levels,
} from '../utility/_UAC';
import {
Errors,
} from '../utility/_Constants';
import {
findUser,
} from '../utility/_Channels';
// module main
2020-09-17 13:44:32 +08:00
export async function run({
core, server, socket, payload,
}) {
2018-06-04 15:07:24 +08:00
// increase rate limit chance and ignore if not admin or mod
2020-11-07 05:16:43 +08:00
if (!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 (socket.hcProtocol === 1) {
if (typeof payload.nick !== 'string') {
return true;
}
payload.channel = socket.channel; // eslint-disable-line no-param-reassign
} else if (typeof payload.userid !== 'number') {
2019-11-07 15:35:23 +08:00
return true;
}
2018-06-04 15:07:24 +08:00
// find target user
const targetUser = findUser(server, payload);
if (!targetUser) {
return server.reply({
cmd: 'warn',
text: 'Could not find user in that channel',
id: Errors.Global.UNKNOWN_USER,
2020-10-10 13:34:59 +08:00
channel: socket.channel, // @todo Multichannel
2018-03-10 15:47:00 +08:00
}, socket);
}
const targetNick = targetUser.nick;
2018-06-04 15:07:24 +08:00
// i guess banning mods or admins isn't the best idea?
if (targetUser.level >= socket.level) {
return server.reply({
cmd: 'warn',
text: 'Cannot ban other users of the same level, how rude',
id: Errors.Global.PERMISSION,
2020-10-10 13:34:59 +08:00
channel: socket.channel, // @todo Multichannel
2018-03-10 15:47:00 +08:00
}, socket);
}
2018-06-04 15:07:24 +08:00
// commit arrest record
server.police.arrest(targetUser.address, targetUser.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}`,
2020-11-07 05:16:43 +08:00
user: getUserDetails(targetUser),
2020-10-10 13:34:59 +08:00
channel: socket.channel, // @todo Multichannel
2020-11-07 05:16:43 +08:00
}, { channel: socket.channel, level: (level) => level < levels.moderator });
2018-06-04 15:07:24 +08:00
// notify mods
server.broadcast({
cmd: 'info',
text: `${socket.nick}#${socket.trip} banned ${targetNick} in ${payload.channel}, userhash: ${targetUser.hash}`,
2020-10-10 13:34:59 +08:00
channel: socket.channel, // @todo Multichannel
inChannel: payload.channel,
2020-11-07 05:16:43 +08:00
user: getUserDetails(targetUser),
banner: getUserDetails(socket),
}, { level: isModerator });
2018-06-04 15:07:24 +08:00
// force connection closed
targetUser.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;
}
2020-09-17 13:44:32 +08:00
// export const requiredData = ['nick'];
2019-11-07 15:35:23 +08:00
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
};