2023-12-22 15:14:03 +08:00
|
|
|
/**
|
|
|
|
* @author MinusGix ( https://github.com/MinusGix )
|
|
|
|
* @summary Change target message
|
|
|
|
* @version v1.0.0
|
|
|
|
* @description Will alter a previously sent message using that message's customId
|
|
|
|
* @module updateMessage
|
|
|
|
*/
|
|
|
|
|
|
|
|
import {
|
|
|
|
parseText,
|
|
|
|
} from '../utility/_Text.js';
|
|
|
|
import {
|
|
|
|
isAdmin,
|
|
|
|
isModerator,
|
|
|
|
} from '../utility/_UAC.js';
|
|
|
|
import {
|
|
|
|
ACTIVE_MESSAGES,
|
|
|
|
MAX_MESSAGE_ID_LENGTH,
|
|
|
|
} from './chat.js';
|
2023-06-02 02:16:12 +08:00
|
|
|
|
2023-12-22 15:14:03 +08:00
|
|
|
/**
|
|
|
|
* Executes when invoked by a remote client
|
channel ownership base, part 1
Fleshing out the new channel ownership feature, along with a typo fix and small syntax updates.
A claim can now be staked with /claimchannel, a channel owner may change a trip's level using /setlevel
To do: unclaimchannel, setmotd, makeprivate, makepublic, renewclaim, garbage keeping, update mod commands to accept channelOwner and channelModerator, etc
2024-01-05 16:30:28 +08:00
|
|
|
* @param {Object} env - Environment object with references to core, server, socket & payload
|
2023-12-22 15:14:03 +08:00
|
|
|
* @public
|
|
|
|
* @return {void}
|
|
|
|
*/
|
|
|
|
export async function run({
|
|
|
|
server, socket, payload,
|
|
|
|
}) {
|
2023-11-21 22:35:12 +08:00
|
|
|
// undefined | "overwrite" | "append" | "prepend" | "complete"
|
2023-12-22 15:14:03 +08:00
|
|
|
const { customId } = payload;
|
|
|
|
let { mode, text } = payload;
|
2023-06-02 02:16:12 +08:00
|
|
|
|
|
|
|
if (!mode) {
|
|
|
|
mode = 'overwrite';
|
|
|
|
}
|
|
|
|
|
2023-11-21 22:35:12 +08:00
|
|
|
if (mode !== 'overwrite' && mode !== 'append' && mode !== 'prepend' && mode !== 'complete') {
|
2023-12-27 16:26:49 +08:00
|
|
|
return server.police.frisk(socket, 13);
|
2023-06-02 02:16:12 +08:00
|
|
|
}
|
|
|
|
|
2023-12-22 15:14:03 +08:00
|
|
|
if (!customId || typeof customId !== 'string' || customId.length > MAX_MESSAGE_ID_LENGTH) {
|
2023-12-27 16:26:49 +08:00
|
|
|
return server.police.frisk(socket, 13);
|
2023-06-02 02:16:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof (text) !== 'string') {
|
2023-12-27 16:26:49 +08:00
|
|
|
return server.police.frisk(socket, 13);
|
2023-06-02 02:16:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (mode === 'overwrite') {
|
|
|
|
text = parseText(text);
|
|
|
|
|
|
|
|
if (text === '') {
|
|
|
|
text = '\u0000';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!text) {
|
2023-12-27 16:26:49 +08:00
|
|
|
return server.police.frisk(socket, 13);
|
2023-06-02 02:16:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: What score should we use for this? It isn't as space filling as chat messages.
|
|
|
|
// But we also don't want a massive growing message.
|
|
|
|
// Or flashing between huge and small. Etc.
|
|
|
|
|
|
|
|
let message;
|
2023-12-22 15:14:03 +08:00
|
|
|
for (let i = 0; i < ACTIVE_MESSAGES.length; i += 1) {
|
2023-06-02 02:16:12 +08:00
|
|
|
const msg = ACTIVE_MESSAGES[i];
|
|
|
|
|
|
|
|
if (msg.userid === socket.userid && msg.customId === customId) {
|
|
|
|
message = ACTIVE_MESSAGES[i];
|
2023-11-23 18:07:24 +08:00
|
|
|
if (mode === 'complete') {
|
|
|
|
ACTIVE_MESSAGES[i].toDelete = true;
|
|
|
|
}
|
2023-06-02 02:16:12 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!message) {
|
2023-12-27 16:26:49 +08:00
|
|
|
return server.police.frisk(socket, 6);
|
2023-06-02 02:16:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const outgoingPayload = {
|
|
|
|
cmd: 'updateMessage',
|
|
|
|
userid: socket.userid,
|
|
|
|
channel: socket.channel,
|
|
|
|
level: socket.level,
|
|
|
|
mode,
|
|
|
|
text,
|
|
|
|
customId: message.customId,
|
|
|
|
};
|
|
|
|
|
|
|
|
if (isAdmin(socket.level)) {
|
|
|
|
outgoingPayload.admin = true;
|
|
|
|
} else if (isModerator(socket.level)) {
|
|
|
|
outgoingPayload.mod = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
server.broadcast(outgoingPayload, { channel: socket.channel });
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2023-12-22 15:14:03 +08:00
|
|
|
/**
|
|
|
|
* The following payload properties are required to invoke this module:
|
|
|
|
* "text", "customId"
|
|
|
|
* @public
|
|
|
|
* @typedef {Array} addmod/requiredData
|
|
|
|
*/
|
2023-06-02 02:16:12 +08:00
|
|
|
export const requiredData = ['text', 'customId'];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Module meta information
|
|
|
|
* @public
|
|
|
|
* @typedef {Object} updateMessage/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
|
|
|
|
*/
|
|
|
|
export const info = {
|
|
|
|
name: 'updateMessage',
|
|
|
|
category: 'core',
|
|
|
|
description: 'Update a message you have sent.',
|
|
|
|
usage: `
|
2023-11-21 22:35:12 +08:00
|
|
|
API: { cmd: 'updateMessage', mode: 'overwrite'|'append'|'prepend'|'complete', text: '<text to apply>', customId: '<customId sent with the chat message>' }`,
|
2023-06-02 02:16:12 +08:00
|
|
|
};
|