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-03-07 01:00:30 +08:00
|
|
|
import * as UAC from '../utility/UAC/_info';
|
2020-03-06 00:49:25 +08:00
|
|
|
|
2018-09-30 14:44:36 +08:00
|
|
|
// 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
|
2020-03-06 00:49:25 +08:00
|
|
|
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
|
2018-03-11 14:41:17 +08:00
|
|
|
if (typeof data.nick !== 'string') {
|
2018-04-29 13:29:38 +08:00
|
|
|
if (typeof data.nick !== 'object' && !Array.isArray(data.nick)) {
|
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
|
|
|
}
|
|
|
|
|
2020-01-21 12:52:36 +08:00
|
|
|
let destChannel;
|
|
|
|
if (typeof data.to === 'string' && !!data.to.trim()) {
|
|
|
|
destChannel = data.to;
|
|
|
|
} else {
|
|
|
|
destChannel = Math.random().toString(36).substr(2, 8);
|
|
|
|
}
|
|
|
|
|
2018-06-04 15:07:24 +08:00
|
|
|
// find target user(s)
|
2019-11-07 15:35:23 +08:00
|
|
|
const badClients = server.findSockets({ channel: socket.channel, nick: data.nick });
|
2018-03-10 15:47:00 +08:00
|
|
|
|
2018-04-29 13:29:38 +08:00
|
|
|
if (badClients.length === 0) {
|
2018-09-30 14:44:36 +08:00
|
|
|
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(s) in channel',
|
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({
|
|
|
|
cmd: 'warn',
|
2020-03-07 05:17:43 +08:00
|
|
|
text: 'Cannot kick other users with the same level, how rude',
|
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-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-03-07 01:00:30 +08:00
|
|
|
for (let i = 0; i < kicked.length; i += 1) {
|
2020-01-21 12:52:36 +08:00
|
|
|
server.broadcast({
|
|
|
|
cmd: 'onlineAdd',
|
|
|
|
nick: kicked[i].nick,
|
|
|
|
trip: kicked[i].trip || 'null',
|
2020-03-12 07:13:29 +08:00
|
|
|
hash: kicked[i].hash,
|
2020-01-21 12:52:36 +08:00
|
|
|
}, { channel: destChannel });
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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-01-21 12:52:36 +08:00
|
|
|
kicked[i].channel = destChannel;
|
|
|
|
|
|
|
|
server.broadcast({
|
|
|
|
cmd: 'info',
|
|
|
|
text: `${kicked[i].nick} was banished to ?${destChannel}`,
|
2020-03-06 00:49:25 +08:00
|
|
|
}, { channel: socket.channel, level: UAC.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-01-21 12:52:36 +08:00
|
|
|
nick: kicked[i].nick,
|
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-03-06 00:49:25 +08:00
|
|
|
}, { channel: socket.channel, level: (level) => level < UAC.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;
|
|
|
|
}
|
|
|
|
|
|
|
|
export const requiredData = ['nick'];
|
|
|
|
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
|
|
|
};
|