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

78 lines
2.0 KiB
JavaScript
Raw Normal View History

2018-03-10 15:47:00 +08:00
/*
Description: Forces a change on the target socket's channel, then broadcasts event
2018-03-10 15:47:00 +08:00
*/
exports.run = async (core, server, socket, data) => {
2018-04-29 13:29:38 +08:00
if (socket.uType === 'user') {
2018-03-10 15:47:00 +08:00
// ignore if not mod or admin
return;
}
if (typeof data.nick !== 'string') {
2018-04-29 13:29:38 +08:00
if (typeof data.nick !== 'object' && !Array.isArray(data.nick)) {
return;
}
}
2018-04-29 13:29:38 +08:00
let 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-03-10 15:47:00 +08:00
server.reply({
cmd: 'warn',
2018-04-29 13:29:38 +08:00
text: 'Could not find user(s) in channel'
2018-03-10 15:47:00 +08:00
}, socket);
return;
}
2018-04-29 13:29:38 +08:00
let newChannel = '';
let kicked = [];
for (let i = 0, j = badClients.length; i < j; i++) {
if (badClients[i].uType !== 'user') {
server.reply({
cmd: 'warn',
text: 'Cannot kick other mods, how rude'
}, 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',
text: `${badClients[i].nick} was banished to ?${newChannel}`
}, { 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) {
2018-03-10 15:47:00 +08:00
return;
}
2018-04-29 13:29:38 +08:00
// broadcast client leave event
for (let i = 0, j = kicked.length; i < j; i++) {
server.broadcast({
cmd: 'onlineRemove',
nick: kicked[i]
}, { 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',
2018-04-29 13:29:38 +08:00
text: `Kicked ${kicked.join(', ')}`
}, { channel: socket.channel, uType: 'user' });
2018-03-10 15:47:00 +08:00
2018-04-29 13:29:38 +08:00
core.managers.stats.increment('users-kicked', kicked.length);
2018-03-10 15:47:00 +08:00
};
exports.requiredData = ['nick'];
2018-05-13 18:33:22 +08:00
exports.info = {
name: 'kick',
usage: 'kick {nick}',
description: 'Silently forces target client(s) into another channel. `nick` may be string or array of strings'
};