aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/commands/admin/removemod.js
blob: 9190dd696a5294c48829c59e9f225f9c5dc95218 (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
/*
  Description: Removes target trip from the config as a mod and downgrades the socket type
*/

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

  // remove trip from config
  core.config.mods = core.config.mods.filter((mod) => mod.trip !== data.trip);

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

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

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

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

  return true;
}

export const requiredData = ['trip'];
export const info = {
  name: 'removemod',
  description: 'Removes target trip from the config as a mod and downgrades the socket type',
  usage: `
    API: { cmd: 'removemod', trip: '<target trip>' }`,
};