aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/commands/mod/kick.js
blob: 5cd524d6bc85d501742c4bfab70a0139eebe2e8b (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
/*

*/

'use strict';

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

  let targetNick = String(data.nick);
  let badClient = null;
  for (let client of server.clients) {
    // Find badClient's socket
    if (client.channel == socket.channel && client.nick == targetNick) {
      badClient = client;
      break;
    }
  }

  if (!badClient) {
    server.reply({
      cmd: 'warn',
      text: 'Could not find user in channel'
    }, socket);

    return;
  }

  if (badClient.uType !== 'user') {
    server.reply({
      cmd: 'warn',
      text: 'Cannot kick other mods, how rude'
    }, socket);

    return;
  }

  // TODO: add event to log?
  let newChannel = Math.random().toString(36).substr(2, 8);
  badClient.channel = newChannel;

  console.log(`${socket.nick} [${socket.trip}] kicked ${targetNick} in ${socket.channel}`);

  // remove socket from same-channel client
  server.broadcast({
    cmd: 'onlineRemove',
    nick: targetNick
  }, { channel: socket.channel });

  // publicly broadcast event (TODO: should this be supressed?)
  server.broadcast({
    cmd: 'info',
    text: `Kicked ${targetNick}`
  }, { channel: socket.channel });

  // inform mods with where they were sent
  server.broadcast({
    cmd: 'info',
    text: `${targetNick} was banished to ?${newChannel}`
  }, { channel: socket.channel, uType: 'mod' });

  core.managers.stats.increment('users-banned');
};

exports.requiredData = ['nick'];

exports.info = {
  name: 'kick',
  usage: 'kick {nick}',
  description: 'Forces target client into another channel without announcing change'
};