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

106 lines
2.9 KiB
JavaScript
Raw Normal View History

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
*/
import * as UAC from "../utility/UAC/info";
// 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
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
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
}
}
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) {
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) {
if (badClients[i].level >= socket.level) {
2018-04-29 13:29:38 +08:00
server.reply({
cmd: 'warn',
2019-11-07 15:35:23 +08:00
text: 'Cannot kick other mods, 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
for (let i = 0; i < kicked.length; i++) {
server.broadcast({
cmd: 'onlineAdd',
nick: kicked[i].nick,
trip: kicked[i].trip || 'null',
hash: kicked[i].userHash
}, { channel: destChannel });
}
// Move all kicked clients to the new channel
for (let i = 0; i < kicked.length; i++) {
kicked[i].channel = destChannel;
server.broadcast({
cmd: 'info',
text: `${kicked[i].nick} was banished to ?${destChannel}`,
}, { 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-01-21 12:52:36 +08:00
text: `Kicked ${kicked.map(k => k.nick).join(', ')}`,
}, { 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',
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
};