aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/commands/admin/addmod.js
blob: 6853a422443b72f67c6a6b50e78cb2bb55a9fee9 (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
/*
  Description: Adds the target trip to the mod list then elevates the uType
*/

// module main
exports.run = async (core, server, socket, data) => {
  // increase rate limit chance and ignore if not admin
  if (socket.uType != 'admin') {
    return server.police.frisk(socket.remoteAddress, 20);
  }

  // add new trip to config
  core.config.mods.push({ trip: data.trip });

  // find targets current connections
  let newMod = server.findSockets({ trip: data.trip });
  if (newMod.length !== 0) {
    for (let i = 0, l = newMod.length; i < l; i++) {
      // upgrade privilages
      newMod[i].uType = 'mod';

      // inform new mod
      server.send({
        cmd: 'info',
        text: 'You are now a mod.'
      }, newMod[i]);
    }
  }

  // return success message
  server.reply({
    cmd: 'info',
    text: `Added mod trip: ${data.trip}, remember to run 'saveconfig' to make it permanent`
  }, socket);

  // notify all mods
  server.broadcast({
    cmd: 'info',
    text: `Added mod: ${data.trip}`
  }, { uType: 'mod' });
};

// module meta
exports.requiredData = ['trip'];
exports.info = {
  name: 'addmod',
  description: 'Adds target trip to the config as a mod and upgrades the socket type',
  usage: `
    API: { cmd: 'addmod', trip: '<target trip>' }`
};