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

169 lines
4.1 KiB
JavaScript
Raw Normal View History

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
*/
2024-01-09 03:09:59 +08:00
import {
Errors,
} from '../utility/_Constants.js';
2022-06-23 00:32:51 +08:00
/**
* Check and trim string provided by remote client
* @param {string} text - Subject string
* @private
* @todo Move into utility module
* @return {string|boolean}
*/
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;
};
2022-06-23 00:32:51 +08:00
/**
* Executes when invoked by a remote client
* @param {Object} env - Environment object with references to core, server, socket & payload
2022-06-23 00:32:51 +08:00
* @public
* @return {void}
*/
2020-09-17 13:44:32 +08:00
export async function run({ server, socket, payload }) {
// check user input
2020-03-13 02:28:20 +08:00
let text = parseText(payload.text);
if (!text) {
// lets not send objects or empty text, yea?
2023-12-27 16:26:49 +08:00
return server.police.frisk(socket, 8);
}
// 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)) {
return server.reply({
2024-01-09 03:09:59 +08:00
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.',
2024-01-09 03:09:59 +08:00
id: Errors.Global.RATELIMIT,
2020-10-10 13:34:59 +08:00
channel: socket.channel, // @todo Multichannel
}, 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',
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
};
2020-09-28 13:52:49 +08:00
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;
}
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 environment object
2022-06-23 00:32:51 +08:00
* @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
}
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 - Environment object with references to core, server, socket & payload
2022-06-23 00:32:51 +08:00
* @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,
}) {
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({
2024-01-09 03:09:59 +08:00
cmd: 'warn',
2019-11-07 15:35:23 +08:00
text: 'Refer to `/help emote` for instructions on how to use this command.',
2024-01-09 03:09:59 +08:00
id: Errors.Emote.MISSING_TEXT,
2020-10-10 13:34:59 +08:00
channel: socket.channel, // @todo Multichannel
}, socket);
return false;
}
input.splice(0, 1);
2019-11-07 15:35:23 +08:00
const actionText = input.join(' ');
2020-09-17 13:44:32 +08:00
this.run({
core,
server,
socket,
payload: {
cmd: 'emote',
text: actionText,
},
});
return false;
}
return payload;
2019-11-07 15:35:23 +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 = {
name: 'emote',
2022-06-23 00:32:51 +08:00
category: 'core',
description: 'Broadcasts an emote to the current channel',
usage: `
API: { cmd: 'emote', text: '<emote/action text>' }
2019-11-07 15:35:23 +08:00
Text: /me <emote/action text>`,
};