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

84 lines
2.2 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
*/
// 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 (socket.uType === 'user') {
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
}
}
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);
}
2018-06-04 15:07:24 +08:00
// check if found targets are kickable, commit kick
2018-04-29 13:29:38 +08:00
let newChannel = '';
2019-11-07 15:35:23 +08:00
const kicked = [];
for (let i = 0, j = badClients.length; i < j; i += 1) {
2018-04-29 13:29:38 +08:00
if (badClients[i].uType !== 'user') {
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 {
newChannel = Math.random().toString(36).substr(2, 8);
badClients[i].channel = newChannel;
// inform mods with where they were sent
server.broadcast({
cmd: 'info',
2019-11-07 15:35:23 +08:00
text: `${badClients[i].nick} was banished to ?${newChannel}`,
2018-04-29 13:29:38 +08:00
}, { channel: socket.channel, uType: 'mod' });
kicked.push(badClients[i].nick);
console.log(`${socket.nick} [${socket.trip}] kicked ${badClients[i].nick} in ${socket.channel}`);
}
}
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
}
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',
2019-11-07 15:35:23 +08:00
nick: kicked[i],
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',
2019-11-07 15:35:23 +08:00
text: `Kicked ${kicked.join(', ')}`,
}, { channel: socket.channel, uType: 'user' });
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: `
2019-11-07 15:35:23 +08:00
API: { cmd: 'kick', nick: '<target nick>' }`,
2018-06-04 15:07:24 +08:00
};