aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/commands/mod/kick.js
blob: 1797ba939b1c527e8d9933656b1baa00a03daf44 (plain)
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
/*
  Description: Forces a change on the target socket's channel, then broadcasts event
*/

exports.run = async (core, server, socket, data) => {
  if (socket.uType === 'user') {
    // ignore if not mod or admin
    return;
  }

  if (typeof data.nick !== 'string') {
    if (typeof data.nick !== 'object' && !Array.isArray(data.nick)) {
      return;
    }
  }

  let badClients = server.findSockets({ channel: socket.channel, nick: data.nick });

  if (badClients.length === 0) {
    server.reply({
      cmd: 'warn',
      text: 'Could not find user(s) in channel'
    }, socket);

    return;
  }

  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' });

  core.managers.stats.increment('users-kicked', kicked.length);
};

exports.requiredData = ['nick'];

exports.info = {
  name: 'kick',
  usage: 'kick {nick}',
  description: 'Silently forces target client(s) into another channel. `nick` may be string or array of strings'
};