2020-09-17 13:44:32 +08:00
|
|
|
/* eslint no-console: 0 */
|
|
|
|
|
2018-03-10 15:47:00 +08:00
|
|
|
/*
|
2018-06-04 15:07:24 +08:00
|
|
|
Description: Forces a change on the target(s) socket's channel, then broadcasts event
|
2018-03-10 15:47:00 +08:00
|
|
|
*/
|
|
|
|
|
2020-11-07 05:16:43 +08:00
|
|
|
import {
|
|
|
|
isModerator,
|
|
|
|
levels,
|
|
|
|
getUserDetails,
|
|
|
|
} from '../utility/_UAC';
|
2020-09-22 13:34:30 +08:00
|
|
|
import {
|
|
|
|
Errors,
|
|
|
|
} from '../utility/_Constants';
|
|
|
|
import {
|
|
|
|
findUsers,
|
|
|
|
} 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') {
|
|
|
|
if (typeof payload.nick !== 'object' && !Array.isArray(payload.nick)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
payload.channel = socket.channel; // eslint-disable-line no-param-reassign
|
|
|
|
} else if (typeof payload.userid !== 'number') {
|
2020-09-08 12:51:47 +08:00
|
|
|
// @todo create multi-ban ui
|
2020-09-17 13:44:32 +08:00
|
|
|
if (typeof payload.userid !== 'object' && !Array.isArray(payload.userid)) {
|
2019-11-07 15:35:23 +08:00
|
|
|
return true;
|
2018-04-29 13:29:38 +08:00
|
|
|
}
|
2018-03-11 14:41:17 +08:00
|
|
|
}
|
|
|
|
|
2018-06-04 15:07:24 +08:00
|
|
|
// find target user(s)
|
2020-09-22 13:34:30 +08:00
|
|
|
const badClients = findUsers(server, payload);
|
2018-04-29 13:29:38 +08:00
|
|
|
if (badClients.length === 0) {
|
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(s) 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-01-21 12:52:36 +08:00
|
|
|
// check if found targets are kickable, add them to the list if they are
|
2019-11-07 15:35:23 +08:00
|
|
|
const kicked = [];
|
|
|
|
for (let i = 0, j = badClients.length; i < j; i += 1) {
|
2020-03-06 00:49:25 +08:00
|
|
|
if (badClients[i].level >= socket.level) {
|
2018-04-29 13:29:38 +08:00
|
|
|
server.reply({
|
2020-09-22 13:34:30 +08:00
|
|
|
cmd: 'warn',
|
2020-03-07 05:17:43 +08:00
|
|
|
text: 'Cannot kick other users with 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-04-29 13:29:38 +08:00
|
|
|
}, socket);
|
|
|
|
} else {
|
2020-01-21 12:52:36 +08:00
|
|
|
kicked.push(badClients[i]);
|
2018-04-29 13:29:38 +08:00
|
|
|
}
|
|
|
|
}
|
2018-03-10 15:47:00 +08:00
|
|
|
|
2018-04-29 13:29:38 +08:00
|
|
|
if (kicked.length === 0) {
|
2019-11-07 15:35:23 +08:00
|
|
|
return true;
|
2018-03-10 15:47:00 +08:00
|
|
|
}
|
|
|
|
|
2020-09-22 13:34:30 +08:00
|
|
|
let destChannel;
|
|
|
|
if (typeof payload.to === 'string' && !!payload.to.trim()) {
|
|
|
|
destChannel = payload.to;
|
|
|
|
} else {
|
|
|
|
destChannel = Math.random().toString(36).substr(2, 8);
|
|
|
|
}
|
|
|
|
|
2020-01-21 12:52:36 +08:00
|
|
|
// Announce the kicked clients arrival in destChannel and that they were kicked
|
|
|
|
// Before they arrive, so they don't see they got moved
|
2020-11-07 05:16:43 +08:00
|
|
|
const moveAnnouncement = {
|
|
|
|
...getUserDetails(socket),
|
|
|
|
...{
|
2020-01-21 12:52:36 +08:00
|
|
|
cmd: 'onlineAdd',
|
2020-11-07 05:16:43 +08:00
|
|
|
channel: destChannel, // @todo Multichannel
|
|
|
|
},
|
|
|
|
};
|
|
|
|
for (let i = 0; i < kicked.length; i += 1) {
|
|
|
|
server.broadcast(moveAnnouncement, { channel: destChannel });
|
2020-01-21 12:52:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Move all kicked clients to the new channel
|
2020-03-07 01:00:30 +08:00
|
|
|
for (let i = 0; i < kicked.length; i += 1) {
|
2020-09-22 13:34:30 +08:00
|
|
|
// @todo multi-channel update
|
2020-01-21 12:52:36 +08:00
|
|
|
kicked[i].channel = destChannel;
|
|
|
|
|
|
|
|
server.broadcast({
|
|
|
|
cmd: 'info',
|
|
|
|
text: `${kicked[i].nick} was banished to ?${destChannel}`,
|
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: isModerator });
|
2020-01-21 12:52:36 +08:00
|
|
|
|
|
|
|
console.log(`${socket.nick} [${socket.trip}] kicked ${kicked[i].nick} in ${socket.channel} to ${destChannel} `);
|
|
|
|
}
|
|
|
|
|
2018-04-29 13:29:38 +08:00
|
|
|
// broadcast client leave event
|
2019-11-07 15:35:23 +08:00
|
|
|
for (let i = 0, j = kicked.length; i < j; i += 1) {
|
2018-04-29 13:29:38 +08:00
|
|
|
server.broadcast({
|
|
|
|
cmd: 'onlineRemove',
|
2020-09-22 13:34:30 +08:00
|
|
|
userid: kicked[i].userid,
|
2020-01-21 12:52:36 +08:00
|
|
|
nick: kicked[i].nick,
|
2020-10-10 13:34:59 +08:00
|
|
|
channel: socket.channel, // @todo Multichannel
|
2018-04-29 13:29:38 +08:00
|
|
|
}, { channel: socket.channel });
|
|
|
|
}
|
2018-03-10 15:47:00 +08:00
|
|
|
|
2018-04-29 13:29:38 +08:00
|
|
|
// publicly broadcast kick event
|
2018-03-10 15:47:00 +08:00
|
|
|
server.broadcast({
|
|
|
|
cmd: 'info',
|
2020-03-07 01:00:30 +08:00
|
|
|
text: `Kicked ${kicked.map((k) => k.nick).join(', ')}`,
|
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-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-kicked', kicked.length);
|
2018-03-10 15:47:00 +08:00
|
|
|
|
2019-11-07 15:35:23 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-09-08 12:51:47 +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: 'kick',
|
2018-09-30 14:44:36 +08:00
|
|
|
description: 'Silently forces target client(s) into another channel. `nick` may be string or array of strings',
|
|
|
|
usage: `
|
2020-01-21 12:52:36 +08:00
|
|
|
API: { cmd: 'kick', nick: '<target nick>', to: '<optional target channel>' }`,
|
2018-06-04 15:07:24 +08:00
|
|
|
};
|