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

374 lines
10 KiB
JavaScript
Raw Normal View History

2020-09-17 13:44:32 +08:00
/* eslint no-param-reassign: 0 */
/* eslint no-multi-assign: 0 */
2022-06-23 00:32:51 +08:00
/**
* @author OpSimple ( https://github.com/OpSimple )
* @summary Muzzle a user
* @version 1.0.0
* @description Globally shadow mute a connection. Optional allies array will see muted messages.
* @module dumb
*/
2020-11-07 05:16:43 +08:00
import {
isModerator,
2022-06-23 00:32:51 +08:00
} from '../utility/_UAC.js';
2020-11-10 03:55:54 +08:00
import {
findUser,
2022-06-23 00:32:51 +08:00
} from '../utility/_Channels.js';
import {
Errors,
2022-06-23 00:32:51 +08:00
} from '../utility/_Constants.js';
import {
2020-11-10 03:55:54 +08:00
legacyInviteReply,
legacyWhisperReply,
2022-06-23 00:32:51 +08:00
} from '../utility/_LegacyFunctions.js';
2020-11-10 03:55:54 +08:00
/**
* Returns the channel that should be invited to.
* @param {any} channel
2022-06-23 00:32:51 +08:00
* @private
2020-11-10 03:55:54 +08:00
* @return {string}
*/
export function getChannel(channel = undefined) {
if (typeof channel === 'string') {
return channel;
}
return Math.random().toString(36).substr(2, 8);
}
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}
*/
2020-11-10 03:55:54 +08:00
const parseText = (text) => {
// verifies user input is text
if (typeof text !== 'string') {
return false;
}
let sanitizedText = text;
// strip newlines from beginning and end
sanitizedText = sanitizedText.replace(/^\s*\n|^\s+$|\n\s*$/g, '');
// replace 3+ newlines with just 2 newlines
sanitizedText = sanitizedText.replace(/\n{3,}/g, '\n\n');
return sanitizedText;
};
2022-06-23 00:32:51 +08:00
/**
* Automatically executes once after server is ready
* @param {Object} core - Reference to core enviroment object
* @public
* @return {void}
*/
2019-11-07 15:35:23 +08:00
export function init(core) {
if (typeof core.muzzledHashes === 'undefined') {
core.muzzledHashes = {};
}
2019-11-07 15:35:23 +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({
core, server, socket, payload,
}) {
2018-06-04 15:07:24 +08:00
// increase rate limit chance and ignore if not admin or mod
2020-11-07 05:16:43 +08:00
if (!isModerator(socket.level)) {
2019-11-07 15:35:23 +08:00
return server.police.frisk(socket.address, 10);
}
2018-06-04 15:07:24 +08:00
// check user input
if (socket.hcProtocol === 1) {
if (typeof payload.nick !== 'string') {
return true;
}
payload.channel = socket.channel;
} else if (typeof payload.userid !== 'number') {
2019-11-07 15:35:23 +08:00
return true;
}
2018-06-04 02:08:35 +08:00
2018-06-04 15:07:24 +08:00
// find target user
const targetUser = findUser(server, payload);
2022-06-23 00:32:51 +08:00
if (!targetUser) {
return server.reply({
cmd: 'warn',
text: 'Could not find user in that channel',
id: Errors.Global.UNKNOWN_USER,
2020-10-10 13:34:59 +08:00
channel: socket.channel, // @todo Multichannel
}, socket);
}
2018-06-04 15:07:24 +08:00
// likely dont need this, muting mods and admins is fine
if (targetUser.level >= socket.level) {
return server.reply({
cmd: 'warn',
text: 'This trick wont work on users of the same level',
id: Errors.Global.PERMISSION,
2020-10-10 13:34:59 +08:00
channel: socket.channel, // @todo Multichannel
}, socket);
}
2018-06-04 02:08:35 +08:00
2018-06-04 15:07:24 +08:00
// store hash in mute list
const record = core.muzzledHashes[targetUser.hash] = {
2019-11-07 15:35:23 +08:00
dumb: true,
};
2018-06-04 02:08:35 +08:00
2018-06-04 15:07:24 +08:00
// store allies if needed
2020-09-17 13:44:32 +08:00
if (payload.allies && Array.isArray(payload.allies)) {
record.allies = payload.allies;
}
2018-06-04 02:08:35 +08:00
2018-06-04 15:07:24 +08:00
// notify mods
server.broadcast({
cmd: 'info',
text: `${socket.nick}#${socket.trip} muzzled ${targetUser.nick} in ${payload.channel}, userhash: ${targetUser.hash}`,
2020-10-10 13:34:59 +08:00
channel: false, // @todo Multichannel, false for global
2020-11-07 05:16:43 +08:00
}, { level: isModerator });
2019-11-07 15:35:23 +08:00
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 enviroment object
* @public
* @return {void}
*/
2019-11-07 15:35:23 +08:00
export function initHooks(server) {
2020-03-13 02:28:20 +08:00
server.registerHook('in', 'chat', this.chatCheck.bind(this), 10);
server.registerHook('in', 'invite', this.inviteCheck.bind(this), 10);
server.registerHook('in', 'whisper', this.whisperCheck.bind(this), 10);
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;
* hook incoming chat commands, shadow-prevent chat if they are muzzled
* @param {Object} env - Enviroment object with references to core, server, socket & payload
* @public
* @return {{Object|boolean|string}} Object = same/altered payload,
* false = suppress action,
* string = error
*/
2020-09-17 13:44:32 +08:00
export function chatCheck({
core, server, socket, payload,
}) {
if (typeof payload.text !== 'string') {
return false;
}
2019-11-07 15:35:23 +08:00
if (core.muzzledHashes[socket.hash]) {
// build fake chat payload
2020-11-10 03:55:54 +08:00
const outgoingPayload = {
cmd: 'chat',
2020-11-10 03:55:54 +08:00
nick: socket.nick, /* @legacy */
uType: socket.uType, /* @legacy */
userid: socket.userid,
channel: socket.channel,
2019-11-07 15:35:23 +08:00
text: payload.text,
2020-11-10 03:55:54 +08:00
level: socket.level,
};
if (socket.trip) {
2020-11-10 03:55:54 +08:00
outgoingPayload.trip = socket.trip;
}
if (socket.color) {
outgoingPayload.color = socket.color;
}
// broadcast to any duplicate connections in channel
2020-11-10 03:55:54 +08:00
server.broadcast(outgoingPayload, { channel: socket.channel, hash: socket.hash });
// broadcast to allies, if any
2019-11-07 15:35:23 +08:00
if (core.muzzledHashes[socket.hash].allies) {
server.broadcast(
2020-11-10 03:55:54 +08:00
outgoingPayload,
2019-11-07 15:35:23 +08:00
{
channel: socket.channel,
nick: core.muzzledHashes[socket.hash].allies,
},
);
}
2019-11-07 15:35:23 +08:00
/**
* Blanket "spam" protection.
* May expose the ratelimiting lines from `chat` and use that
* @todo one day #lazydev
*/
server.police.frisk(socket.address, 9);
return false;
}
return payload;
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;
* shadow-prevent all invites from muzzled users
* @param {Object} env - Enviroment object with references to core, server, socket & payload
* @public
* @return {{Object|boolean|string}} Object = same/altered payload,
* false = suppress action,
* string = error
*/
2020-11-10 03:55:54 +08:00
export function inviteCheck({
core, server, socket, payload,
}) {
2019-11-07 15:35:23 +08:00
if (core.muzzledHashes[socket.hash]) {
2020-11-10 03:55:54 +08:00
// check for spam
if (server.police.frisk(socket.address, 2)) {
return server.reply({
cmd: 'warn',
text: 'You are sending invites too fast. Wait a moment before trying again.',
id: Errors.Invite.RATELIMIT,
channel: socket.channel, // @todo Multichannel
}, socket);
}
// verify user input
// if this is a legacy client add missing params to payload
if (socket.hcProtocol === 1) {
if (typeof socket.channel === 'undefined' || typeof payload.nick !== 'string') {
return true;
}
payload.channel = socket.channel; // eslint-disable-line no-param-reassign
} else if (typeof payload.userid !== 'number' || typeof payload.channel !== 'string') {
return true;
}
// @todo Verify this socket is part of payload.channel - multichannel patch
// find target user
const targetUser = findUser(server, payload);
if (!targetUser) {
return server.reply({
cmd: 'warn',
text: 'Could not find user in that channel',
id: Errors.Global.UNKNOWN_USER,
2020-10-10 13:34:59 +08:00
channel: socket.channel, // @todo Multichannel
}, socket);
}
// generate common channel
2020-11-10 03:55:54 +08:00
const channel = getChannel(payload.to);
2020-11-10 03:55:54 +08:00
// build invite
const outgoingPayload = {
cmd: 'invite',
channel: socket.channel, // @todo Multichannel
from: socket.userid,
to: targetUser.userid,
inviteChannel: channel,
};
// send invite notice to this client
if (socket.hcProtocol === 1) {
server.reply(legacyInviteReply(outgoingPayload, targetUser.nick), socket);
} else {
server.reply(outgoingPayload, socket);
}
return false;
}
return payload;
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;
* shadow-prevent all whispers from muzzled users
* @param {Object} env - Enviroment object with references to core, server, socket & payload
* @public
* @return {{Object|boolean|string}} Object = same/altered payload,
* false = suppress action,
* string = error
*/
2020-09-17 13:44:32 +08:00
export function whisperCheck({
core, server, socket, payload,
}) {
2020-11-10 03:55:54 +08:00
if (core.muzzledHashes[socket.hash]) {
// if this is a legacy client add missing params to payload
if (socket.hcProtocol === 1) {
payload.channel = socket.channel; // eslint-disable-line no-param-reassign
}
2020-03-13 02:28:20 +08:00
2020-11-10 03:55:54 +08:00
// verify user input
const text = parseText(payload.text);
2020-03-13 02:28:20 +08:00
2020-11-10 03:55:54 +08:00
if (!text) {
// lets not send objects or empty text, yea?
return server.police.frisk(socket.address, 13);
}
2020-03-13 02:28:20 +08:00
2020-11-10 03:55:54 +08:00
// check for spam
const score = text.length / 83 / 4;
if (server.police.frisk(socket.address, score)) {
return server.reply({
cmd: 'warn', // @todo Add numeric error code as `id`
text: 'You are sending too much text. Wait a moment and try again.\nPress the up arrow key to restore your last message.',
channel: socket.channel, // @todo Multichannel
}, socket);
}
const targetUser = findUser(server, payload);
if (!targetUser) {
return server.reply({
cmd: 'warn',
text: 'Could not find user in that channel',
id: Errors.Global.UNKNOWN_USER,
channel: socket.channel, // @todo Multichannel
}, socket);
}
const outgoingPayload = {
cmd: 'whisper',
2020-10-10 13:34:59 +08:00
channel: socket.channel, // @todo Multichannel
2020-11-10 03:55:54 +08:00
from: socket.userid,
to: targetUser.userid,
text,
};
2020-03-13 02:28:20 +08:00
2020-11-10 03:55:54 +08:00
// send invite notice to this client
if (socket.hcProtocol === 1) {
server.reply(legacyWhisperReply(outgoingPayload, targetUser.nick), socket);
} else {
server.reply(outgoingPayload, socket);
}
targetUser.whisperReply = socket.nick;
2020-03-13 02:28:20 +08:00
return false;
}
return payload;
}
2022-06-23 00:32:51 +08:00
/**
* Module meta information
* @public
* @typedef {Object} dumb/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: 'dumb',
2022-06-23 00:32:51 +08:00
category: 'moderators',
description: 'Globally shadow mute a connection. Optional allies array will see muted messages.',
2022-06-23 00:32:51 +08:00
aliases: ['muzzle', 'mute'],
usage: `
2019-11-07 15:35:23 +08:00
API: { cmd: 'dumb', nick: '<target nick>', allies: ['<optional nick array>', ...] }`,
};