2022-06-23 00:32:51 +08:00
|
|
|
/**
|
|
|
|
* @author Marzavec ( https://github.com/marzavec )
|
|
|
|
* @summary Emote / action text
|
|
|
|
* @version 1.0.0
|
|
|
|
* @description Broadcasts an emote to the current channel
|
|
|
|
* @module emote
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check and trim string provided by remote client
|
|
|
|
* @param {string} text - Subject string
|
|
|
|
* @private
|
|
|
|
* @todo Move into utility module
|
|
|
|
* @return {string|boolean}
|
|
|
|
*/
|
2019-02-21 16:43:25 +08:00
|
|
|
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
|
|
|
};
|
|
|
|
|
2022-06-23 00:32:51 +08:00
|
|
|
/**
|
|
|
|
* Executes when invoked by a remote client
|
|
|
|
* @param {Object} env - Enviroment object with references to core, server, socket & payload
|
|
|
|
* @public
|
|
|
|
* @return {void}
|
|
|
|
*/
|
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?
|
2023-12-27 16:26:49 +08:00
|
|
|
return server.police.frisk(socket, 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;
|
2023-12-27 16:26:49 +08:00
|
|
|
if (server.police.frisk(socket, 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.',
|
2020-10-10 13:34:59 +08:00
|
|
|
channel: socket.channel, // @todo Multichannel
|
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}`,
|
2020-10-10 13:34:59 +08:00
|
|
|
channel: socket.channel, // @todo Multichannel
|
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
|
|
|
|
2022-06-23 00:32:51 +08:00
|
|
|
/**
|
|
|
|
* Automatically executes once after server is ready to register this modules hooks
|
|
|
|
* @param {Object} server - Reference to server enviroment object
|
|
|
|
* @public
|
|
|
|
* @return {void}
|
|
|
|
*/
|
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
|
|
|
|
2022-06-23 00:32:51 +08:00
|
|
|
/**
|
|
|
|
* Executes every time an incoming chat command is invoked;
|
|
|
|
* hooks chat commands checking for /me
|
|
|
|
* @param {Object} env - Enviroment object with references to core, server, socket & payload
|
|
|
|
* @public
|
2023-12-30 15:24:12 +08:00
|
|
|
* @return {(Object|boolean|string)} Object = same/altered payload,
|
2022-06-23 00:32:51 +08:00
|
|
|
* false = suppress action,
|
|
|
|
* string = error
|
|
|
|
*/
|
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.',
|
2020-10-10 13:34:59 +08:00
|
|
|
channel: socket.channel, // @todo Multichannel
|
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
|
|
|
|
2022-06-23 00:32:51 +08:00
|
|
|
/**
|
|
|
|
* The following payload properties are required to invoke this module:
|
|
|
|
* "text"
|
|
|
|
* @public
|
|
|
|
* @typedef {Array} emote/requiredData
|
|
|
|
*/
|
2019-11-07 15:35:23 +08:00
|
|
|
export const requiredData = ['text'];
|
2022-06-23 00:32:51 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Module meta information
|
|
|
|
* @public
|
|
|
|
* @typedef {Object} emote/info
|
|
|
|
* @property {string} name - Module command name
|
|
|
|
* @property {string} category - Module category name
|
|
|
|
* @property {string} description - Information about module
|
|
|
|
* @property {string} usage - Information about module usage
|
|
|
|
*/
|
2019-11-07 15:35:23 +08:00
|
|
|
export const info = {
|
2019-02-21 16:43:25 +08:00
|
|
|
name: 'emote',
|
2022-06-23 00:32:51 +08:00
|
|
|
category: 'core',
|
|
|
|
description: 'Broadcasts an emote to the current channel',
|
2019-02-21 16:43:25 +08:00
|
|
|
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
|
|
|
};
|