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/emote.js

103 lines
2.4 KiB
JavaScript
Raw Normal View History

/*
Description: Broadcasts an emote to the current channel
*/
// module support functions
const parseText = (text) => {
// verifies user input is text
if (typeof text !== 'string') {
return false;
}
2019-11-07 15:35:23 +08:00
let sanitizedText = text;
// strip newlines from beginning and end
2019-11-07 15:35:23 +08:00
sanitizedText = sanitizedText.replace(/^\s*\n|^\s+$|\n\s*$/g, '');
// replace 3+ newlines with just 2 newlines
2019-11-07 15:35:23 +08:00
sanitizedText = sanitizedText.replace(/\n{3,}/g, '\n\n');
2019-11-07 15:35:23 +08:00
return sanitizedText;
};
// module main
2019-11-07 15:35:23 +08:00
export async function run(core, server, socket, payload) {
// check user input
2019-11-07 15:35:23 +08:00
const text = parseText(payload.text);
if (!text) {
// lets not send objects or empty text, yea?
2019-11-07 15:35:23 +08:00
return server.police.frisk(socket.address, 8);
}
// check for spam
2019-11-07 15:35:23 +08:00
const score = text.length / 83 / 4;
if (server.police.frisk(socket.address, score)) {
return server.reply({
cmd: 'warn',
2019-11-07 15:35:23 +08:00
text: 'You are sending too much text. Wait a moment and try again.\nPress the up arrow key to restore your last message.',
}, socket);
}
2019-11-07 15:35:23 +08:00
const newPayload = {
cmd: 'info',
type: 'emote',
nick: socket.nick,
2019-11-07 15:35:23 +08:00
text: `@${socket.nick} ${text}`,
};
2019-10-12 07:11:13 +08:00
if (socket.trip) {
newPayload.trip = socket.trip;
}
// broadcast to channel peers
2019-11-07 15:35:23 +08:00
server.broadcast(newPayload, { channel: socket.channel });
return true;
}
// module hook functions
2019-11-07 15:35:23 +08:00
export function initHooks(server) {
2019-11-08 01:46:55 +08:00
server.registerHook('in', 'chat', this.emoteCheck.bind(this), 30);
2019-11-07 15:35:23 +08:00
}
// hooks chat commands checking for /me
2019-11-07 15:35:23 +08:00
export function emoteCheck(core, server, socket, payload) {
if (typeof payload.text !== 'string') {
return false;
}
if (payload.text.startsWith('/me ')) {
2019-11-07 15:35:23 +08:00
const input = payload.text.split(' ');
// If there is no emote target parameter
if (input[1] === undefined) {
server.reply({
cmd: 'warn',
2019-11-07 15:35:23 +08:00
text: 'Refer to `/help emote` for instructions on how to use this command.',
}, socket);
return false;
}
input.splice(0, 1);
2019-11-07 15:35:23 +08:00
const actionText = input.join(' ');
this.run(core, server, socket, {
cmd: 'emote',
2019-11-07 15:35:23 +08:00
text: actionText,
});
return false;
}
return payload;
2019-11-07 15:35:23 +08:00
}
2019-11-07 15:35:23 +08:00
export const requiredData = ['text'];
export const info = {
name: 'emote',
description: 'Typical emote / action text',
usage: `
API: { cmd: 'emote', text: '<emote/action text>' }
2019-11-07 15:35:23 +08:00
Text: /me <emote/action text>`,
};