aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/commands/core/morestats.js
blob: a71729cbcce385bb3cf8bc283c9674e285f98d4f (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
79
80
81
82
83
84
85
86
87
88
/*
  Description: Outputs more info than the legacy stats command
*/

// module support functions
const stripIndents = require('common-tags').stripIndents;

const formatTime = (time) => {
  let seconds = time[0] + time[1] / 1e9;

  let minutes = Math.floor(seconds / 60);
  seconds = seconds % 60;

  let hours = Math.floor(minutes / 60);
  minutes = minutes % 60;

  let days = Math.floor(hours / 24);
  hours = hours % 24;

  return `${days.toFixed(0)}d ${hours.toFixed(0)}h ${minutes.toFixed(0)}m ${seconds.toFixed(0)}s`;
};

// module main
exports.run = async (core, server, socket, data) => {
  // gather connection and channel count
  let ips = {};
  let channels = {};
  for (let client of server.clients) {
    if (client.channel) {
      channels[client.channel] = true;
      ips[client.remoteAddress] = true;
    }
  }

  let uniqueClientCount = Object.keys(ips).length;
  let uniqueChannels = Object.keys(channels).length;

  ips = null;
  channels = null;

  // dispatch info
  server.reply({
    cmd: 'info',
    text: stripIndents`current-connections: ${uniqueClientCount}
                       current-channels: ${uniqueChannels}
                       users-joined: ${(core.stats.get('users-joined') || 0)}
                       invites-sent: ${(core.stats.get('invites-sent') || 0)}
                       messages-sent: ${(core.stats.get('messages-sent') || 0)}
                       users-banned: ${(core.stats.get('users-banned') || 0)}
                       users-kicked: ${(core.stats.get('users-kicked') || 0)}
                       stats-requested: ${(core.stats.get('stats-requested') || 0)}
                       server-uptime: ${formatTime(process.hrtime(core.stats.get('start-time')))}`
  }, socket);

  // stats are fun
  core.stats.increment('stats-requested');
};

// module hook functions
exports.initHooks = (server) => {
  server.registerHook('in', 'chat', this.statsCheck, 26);
};

// hooks chat commands checking for /stats
exports.statsCheck = (core, server, socket, payload) => {
  if (typeof payload.text !== 'string') {
    return false;
  }

  if (payload.text.startsWith('/stats')) {
    this.run(core, server, socket, {
      cmd: 'morestats'
    });

    return false;
  }

  return payload;
};

// module meta
exports.info = {
  name: 'morestats',
  description: 'Sends back current server stats to the calling client',
  usage: `
    API: { cmd: 'morestats' }
    Text: /stats`
};