1
0
mirror of https://github.com/hack-chat/main.git synced 2024-03-22 13:20:33 +08:00
hack-chat-main/server/src/commands/core/chat.js

62 lines
1.3 KiB
JavaScript
Raw Normal View History

2018-03-10 15:47:00 +08:00
/*
Description: Rebroadcasts any `text` to all clients in a `channel`
2018-03-10 15:47:00 +08:00
*/
const parseText = (text) => {
if (typeof text !== 'string') {
return false;
}
2018-03-10 15:47:00 +08:00
// 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;
};
exports.run = async (core, server, socket, data) => {
let text = parseText(data.text);
2018-03-10 15:47:00 +08:00
if (!text) {
// lets not send objects or empty text, yea?
2018-03-10 15:47:00 +08:00
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'];
2018-05-13 18:33:22 +08:00
exports.info = {
name: 'chat',
usage: 'chat {text}',
description: 'Broadcasts passed `text` field to the calling users channel'
};