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
|
/*
* Description: Make a user (spammer) dumb
* Author: simple
*/
exports.init = (core) => {
core.muzzledHashes = {};
}
exports.run = async (core, server, socket, data) => {
// increase rate limit chance and ignore if not admin or mod
if (socket.uType == 'user') {
server._police.frisk(socket.remoteAddress, 10);
return;
}
// check user input
if (typeof data.nick !== 'string') {
return;
}
// find target user
let badClient = server.findSockets({ channel: socket.channel, nick: data.nick });
if (badClient.length === 0) {
server.reply({
cmd: 'warn',
text: 'Could not find user in channel'
}, socket);
return;
}
badClient = badClient[0];
// likely dont need this, muting mods and admins is fine
if (badClient.uType !== 'user') {
server.reply({
cmd: 'warn',
text: 'This trick wont work on mods and admin'
}, socket);
return;
}
// store hash in mute list
let record = core.muzzledHashes[badClient.hash] = {
dumb:true
}
// store allies if needed
if(data.allies && Array.isArray(data.allies)){
record.allies = data.allies;
}
// notify mods
server.broadcast({
cmd: 'info',
text: `${socket.nick} muzzled ${data.nick} in ${socket.channel}, userhash: ${badClient.hash}`
}, { uType: 'mod' });
}
exports.requiredData = ['nick'];
exports.info = {
name: 'dumb',
usage: 'dumb {nick} [allies...]',
description: 'Globally shadow mute a connection. Optional allies array will see muted messages.'
};
|