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/kick.js

137 lines
3.8 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
/*
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';
import {
Errors,
} from '../utility/_Constants';
import {
findUsers,
} 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') {
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-06-04 15:07:24 +08:00
// find target user(s)
const badClients = findUsers(server, payload);
2018-04-29 13:29:38 +08:00
if (badClients.length === 0) {
return server.reply({
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) {
if (badClients[i].level >= socket.level) {
2018-04-29 13:29:38 +08:00
server.reply({
cmd: 'warn',
text: 'Cannot kick other users with the same level, how rude',
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
}
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
for (let i = 0; i < kicked.length; i += 1) {
2020-11-07 06:12:36 +08:00
server.broadcast({
...getUserDetails(kicked[i]),
...{
cmd: 'onlineAdd',
channel: destChannel, // @todo Multichannel
},
}, { channel: destChannel });
2020-01-21 12:52:36 +08:00
}
// Move all kicked clients to the new channel
for (let i = 0; i < kicked.length; i += 1) {
// @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',
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',
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',
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
};