aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/commands/admin/addmod.js
blob: dba5aba06ae55cbbc49db6c102420b09917cf643 (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
/*

*/

'use strict';

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

  let mod = {
    trip: data.trip
  }

  core.config.mods.push(mod); // purposely not using `config.set()` to avoid auto-save

  for (let client of server.clients) {
    if (typeof client.trip !== 'undefined' && client.trip === data.trip) {
      client.uType = 'mod';

      server.reply({
        cmd: 'info',
        text: 'You are now a mod.'
      }, client);
    }
  }

  server.reply({
    cmd: 'info',
    text: `Added mod trip: ${data.trip}`
  }, socket);

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

exports.requiredData = ['trip'];

exports.info = {
  name: 'addmod',
  usage: 'addmod {trip}',
  description: 'Adds target trip to the config as a mod and upgrades the socket type'
};