2019-02-21 16:43:25 +08:00
|
|
|
/*
|
|
|
|
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;
|
|
|
|
|
2019-02-21 16:43:25 +08:00
|
|
|
// strip newlines from beginning and end
|
2019-11-07 15:35:23 +08:00
|
|
|
sanitizedText = sanitizedText.replace(/^\s*\n|^\s+$|\n\s*$/g, '');
|
2019-02-21 16:43:25 +08:00
|
|
|
// replace 3+ newlines with just 2 newlines
|
2019-11-07 15:35:23 +08:00
|
|
|
sanitizedText = sanitizedText.replace(/\n{3,}/g, '\n\n');
|
2019-02-21 16:43:25 +08:00
|
|
|
|
2019-11-07 15:35:23 +08:00
|
|
|
return sanitizedText;
|
2019-02-21 16:43:25 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
// module main
|
2020-09-17 13:44:32 +08:00
|
|
|
export async function run({ server, socket, payload }) {
|
2019-02-21 16:43:25 +08:00
|
|
|
// check user input
|
2020-03-13 02:28:20 +08:00
|
|
|
let text = parseText(payload.text);
|
2019-02-21 16:43:25 +08:00
|
|
|
|
|
|
|
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);
|
2019-02-21 16:43:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// check for spam
|
2019-11-07 15:35:23 +08:00
|
|
|
const score = text.length / 83 / 4;
|
|
|
|
if (server.police.frisk(socket.address, score)) {
|
2019-02-21 16:43:25 +08:00
|
|
|
return server.reply({
|
2020-09-22 13:34:30 +08:00
|
|
|
cmd: 'warn', // @todo Add numeric error code as `id`
|
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.',
|
2019-02-21 16:43:25 +08:00
|
|
|
}, socket);
|
|
|
|
}
|
|
|
|
|
2020-03-13 02:28:20 +08:00
|
|
|
if (!text.startsWith("'")) {
|
|
|
|
text = ` ${text}`;
|
|
|
|
}
|
|
|
|
|
2019-11-07 15:35:23 +08:00
|
|
|
const newPayload = {
|
2020-09-28 13:52:49 +08:00
|
|
|
cmd: 'emote',
|
2019-02-21 16:43:25 +08:00
|
|
|
nick: socket.nick,
|
2020-09-28 13:52:49 +08:00
|
|
|
userid: socket.userid,
|
2020-03-13 02:28:20 +08:00
|
|
|
text: `@${socket.nick}${text}`,
|
2019-02-21 16:43:25 +08:00
|
|
|
};
|
2020-09-28 13:52:49 +08:00
|
|
|
|
2019-10-12 07:11:13 +08:00
|
|
|
if (socket.trip) {
|
|
|
|
newPayload.trip = socket.trip;
|
|
|
|
}
|
2019-02-21 16:43:25 +08:00
|
|
|
|
|
|
|
// broadcast to channel peers
|
2019-11-07 15:35:23 +08:00
|
|
|
server.broadcast(newPayload, { channel: socket.channel });
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2019-02-21 16:43:25 +08:00
|
|
|
|
|
|
|
// 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
|
|
|
}
|
2019-02-21 16:43:25 +08:00
|
|
|
|
|
|
|
// hooks chat commands checking for /me
|
2020-09-17 13:44:32 +08:00
|
|
|
export function emoteCheck({
|
|
|
|
core, server, socket, payload,
|
|
|
|
}) {
|
2019-02-21 16:43:25 +08:00
|
|
|
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(' ');
|
2019-02-21 16:43:25 +08:00
|
|
|
|
|
|
|
// If there is no emote target parameter
|
|
|
|
if (input[1] === undefined) {
|
|
|
|
server.reply({
|
2020-09-22 13:34:30 +08:00
|
|
|
cmd: 'warn', // @todo Add numeric error code as `id`
|
2019-11-07 15:35:23 +08:00
|
|
|
text: 'Refer to `/help emote` for instructions on how to use this command.',
|
2019-02-21 16:43:25 +08:00
|
|
|
}, socket);
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
input.splice(0, 1);
|
2019-11-07 15:35:23 +08:00
|
|
|
const actionText = input.join(' ');
|
2019-02-21 16:43:25 +08:00
|
|
|
|
2020-09-17 13:44:32 +08:00
|
|
|
this.run({
|
|
|
|
core,
|
|
|
|
server,
|
|
|
|
socket,
|
|
|
|
payload: {
|
|
|
|
cmd: 'emote',
|
|
|
|
text: actionText,
|
|
|
|
},
|
2019-02-21 16:43:25 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return payload;
|
2019-11-07 15:35:23 +08:00
|
|
|
}
|
2019-02-21 16:43:25 +08:00
|
|
|
|
2019-11-07 15:35:23 +08:00
|
|
|
export const requiredData = ['text'];
|
|
|
|
export const info = {
|
2019-02-21 16:43:25 +08:00
|
|
|
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>`,
|
2019-02-21 16:43:25 +08:00
|
|
|
};
|