aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/commands/core/chat.js
blob: 7b7e79ea3a8f0c7163f423a415416503f8ffccea (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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/*
  Description: Rebroadcasts any `text` to all clients in a `channel`
*/

// module support functions
const parseText = (text) => {
  // verifies user input is text
  if (typeof text !== 'string') {
    return false;
  }

  // strip newlines from beginning and end
  text = text.replace(/^\s*\n|^\s+$|\n\s*$/g, '');
  // replace 3+ newlines with just 2 newlines
  text = text.replace(/\n{3,}/g, "\n\n");

  return text;
};

// module main
exports.run = async (core, server, socket, data) => {
  // check user input
  let text = parseText(data.text);

  if (!text) {
    // lets not send objects or empty text, yea?
    return server.police.frisk(socket.remoteAddress, 13);
  }

  // check for spam
  let score = text.length / 83 / 4;
  if (server.police.frisk(socket.remoteAddress, score)) {
    return server.reply({
      cmd: 'warn',
      text: 'You are sending too much text. Wait a moment and try again.\nPress the up arrow key to restore your last message.'
    }, socket);
  }

  // build chat payload
  let payload = {
    cmd: 'chat',
    nick: socket.nick,
    text: text
  };

  if (socket.uType == 'admin') {
    payload.admin = true;
  } else if (socket.uType == 'mod') {
    payload.mod = true;
  }

  if (socket.trip) {
    payload.trip = socket.trip;
  }

  // broadcast to channel peers
  server.broadcast( payload, { channel: socket.channel});

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

// module hook functions
exports.initHooks = (server) => {
  server.registerHook('in', 'chat', this.commandCheckIn, 20);
  server.registerHook('in', 'chat', this.finalCmdCheck, 254);
};

// checks for miscellaneous '/' based commands
exports.commandCheckIn = (core, server, socket, payload) => {
  if (typeof payload.text !== 'string') {
    return false;
  }

  if (payload.text.startsWith('/myhash')) {
    server.reply({
      cmd: 'info',
      text: `Your hash: ${socket.hash}`
    }, socket);

    return false;
  }

  return payload;
};

exports.finalCmdCheck = (core, server, socket, payload) => {
  if (typeof payload.text !== 'string') {
    return false;
  }

  if (!payload.text.startsWith('/')) {
    return payload;
  }

  if (payload.text.startsWith('//')) {
    payload.text = payload.text.substr(1);

    return payload;
  } else {
    server.reply({
      cmd: 'warn',
      text: `Unknown command: ${payload.text}`
    }, socket);

    return false;
  }

  return payload;
};

// module meta
exports.requiredData = ['text'];
exports.info = {
  name: 'chat',
  description: 'Broadcasts passed `text` field to the calling users channel',
  usage: `
    API: { cmd: 'chat', text: '<text to send>' }
    Text: Uuuuhm. Just kind type in that little box at the bottom and hit enter.\n
    Bonus super secret hidden commands:
    /myhash`
};