2020-09-17 13:44:32 +08:00
|
|
|
/* eslint no-console: 0 */
|
2018-03-10 15:47:00 +08:00
|
|
|
/*
|
2018-03-14 13:26:53 +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';
|
2020-09-22 13:34:30 +08:00
|
|
|
import {
|
|
|
|
Errors,
|
|
|
|
} from '../utility/_Constants';
|
|
|
|
import {
|
|
|
|
findUser,
|
|
|
|
} from '../utility/_Channels';
|
2020-03-06 00:49:25 +08:00
|
|
|
|
2018-09-30 14:44:36 +08:00
|
|
|
// 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
|
2020-09-22 13:34:30 +08:00
|
|
|
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-03-11 14:41:17 +08:00
|
|
|
}
|
|
|
|
|
2018-06-04 15:07:24 +08:00
|
|
|
// find target user
|
2020-09-22 13:34:30 +08:00
|
|
|
const targetUser = findUser(server, payload);
|
|
|
|
if (!targetUser) {
|
2018-09-30 14:44:36 +08:00
|
|
|
return server.reply({
|
2020-09-22 13:34:30 +08:00
|
|
|
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);
|
|
|
|
}
|
2020-09-22 13:34:30 +08:00
|
|
|
const targetNick = targetUser.nick;
|
2018-03-14 13:26:53 +08:00
|
|
|
|
2018-06-04 15:07:24 +08:00
|
|
|
// i guess banning mods or admins isn't the best idea?
|
2020-09-22 13:34:30 +08:00
|
|
|
if (targetUser.level >= socket.level) {
|
2018-09-30 14:44:36 +08:00
|
|
|
return server.reply({
|
2020-09-22 13:34:30 +08:00
|
|
|
cmd: 'warn',
|
2020-03-07 05:17:43 +08:00
|
|
|
text: 'Cannot ban other users of the same level, how rude',
|
2020-09-22 13:34:30 +08:00
|
|
|
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
|
2020-09-22 13:34:30 +08:00
|
|
|
server.police.arrest(targetUser.address, targetUser.hash);
|
2018-03-11 14:41:17 +08:00
|
|
|
|
2018-03-10 15:47:00 +08:00
|
|
|
console.log(`${socket.nick} [${socket.trip}] banned ${targetNick} in ${socket.channel}`);
|
2018-03-11 14:41:17 +08:00
|
|
|
|
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-03-14 13:26:53 +08:00
|
|
|
|
2018-06-04 15:07:24 +08:00
|
|
|
// notify mods
|
2018-03-14 13:26:53 +08:00
|
|
|
server.broadcast({
|
|
|
|
cmd: 'info',
|
2020-09-22 13:34:30 +08:00
|
|
|
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-03-14 13:26:53 +08:00
|
|
|
|
2018-06-04 15:07:24 +08:00
|
|
|
// force connection closed
|
2020-09-22 13:34:30 +08:00
|
|
|
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',
|
2018-09-30 14:44:36 +08:00
|
|
|
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
|
|
|
};
|