aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/commands/core/chat.js
blob: 4fe3b80ec925890d37fcedf1b00293b5796f5348 (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
/*

*/

'use strict';

exports.run = async (core, server, socket, data) => {
  // process text
  let text = String(data.text);
  // 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");
  if (!text) {
    // lets not send empty text?
    return;
  }

  let score = text.length / 83 / 4;
  if (server._police.frisk(socket.remoteAddress, score)) {
    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);

    return;
  }

  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;
  }

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

  core.managers.stats.increment('messages-sent');
};

exports.requiredData = ['text'];

exports.info = {
  name: 'chat',
  usage: 'chat {text}',
  description: 'Broadcasts passed `text` field to the calling users channel'
};