1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
/*
Description: Forces a change on the target(s) socket's channel, then broadcasts event
*/
// module main
exports.run = async (core, server, socket, data) => {
// increase rate limit chance and ignore if not admin or mod
if (socket.uType === 'user') {
return server.police.frisk(socket.remoteAddress, 10);
}
// check user input
if (typeof data.nick !== 'string') {
if (typeof data.nick !== 'object' && !Array.isArray(data.nick)) {
return;
}
}
// find target user(s)
let badClients = server.findSockets({ channel: socket.channel, nick: data.nick });
if (badClients.length === 0) {
return server.reply({
cmd: 'warn',
text: 'Could not find user(s) in channel'
}, socket);
}
// check if found targets are kickable, commit kick
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}`);
}
}
if (kicked.length === 0) {
return;
}
// broadcast client leave event
for (let i = 0, j = kicked.length; i < j; i++) {
server.broadcast({
cmd: 'onlineRemove',
nick: kicked[i]
}, { channel: socket.channel });
}
// publicly broadcast kick event
server.broadcast({
cmd: 'info',
text: `Kicked ${kicked.join(', ')}`
}, { channel: socket.channel, uType: 'user' });
// stats are fun
core.stats.increment('users-kicked', kicked.length);
};
// module meta
exports.requiredData = ['nick'];
exports.info = {
name: 'kick',
description: 'Silently forces target client(s) into another channel. `nick` may be string or array of strings',
usage: `
API: { cmd: 'kick', nick: '<target nick>' }`
};
|