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/changenick.js

214 lines
5.5 KiB
JavaScript
Raw Normal View History

2020-09-17 13:44:32 +08:00
/* eslint eqeqeq: 0 */
2022-06-23 00:32:51 +08:00
/**
* @author Marzavec ( https://github.com/marzavec )
* @summary Update nickname
* @version 1.0.0
* @description Allows calling client to change their current nickname
* @module changenick
*/
2018-04-29 13:29:38 +08:00
2020-11-07 05:16:43 +08:00
import {
verifyNickname,
getUserDetails,
2022-06-23 00:32:51 +08:00
} from '../utility/_UAC.js';
/**
* 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({
2022-06-23 00:32:51 +08:00
server, socket, payload,
2020-09-17 13:44:32 +08:00
}) {
2022-06-23 00:32:51 +08:00
const { channel } = socket;
2020-11-07 05:16:43 +08:00
2023-12-27 16:26:49 +08:00
if (server.police.frisk(socket, 6)) {
return server.reply({
cmd: 'warn', // @todo Add numeric error code as `id`
2019-11-07 15:35:23 +08:00
text: 'You are changing nicknames too fast. Wait a moment before trying again.',
2020-11-07 05:16:43 +08:00
channel, // @todo Multichannel
2018-04-29 13:29:38 +08:00
}, socket);
}
2018-06-04 15:07:24 +08:00
// verify user data is string
2020-09-17 13:44:32 +08:00
if (typeof payload.nick !== 'string') {
2019-11-07 15:35:23 +08:00
return true;
2018-04-29 13:29:38 +08:00
}
const previousNick = socket.nick;
2018-06-04 15:07:24 +08:00
// make sure requested nickname meets standards
2020-09-17 13:44:32 +08:00
const newNick = payload.nick.trim();
2020-11-07 05:16:43 +08:00
if (!verifyNickname(newNick)) {
return server.reply({
cmd: 'warn', // @todo Add numeric error code as `id`
2019-11-07 15:35:23 +08:00
text: 'Nickname must consist of up to 24 letters, numbers, and underscores',
2020-11-07 05:16:43 +08:00
channel, // @todo Multichannel
2018-04-29 13:29:38 +08:00
}, socket);
}
if (newNick == previousNick) {
return server.reply({
cmd: 'warn', // @todo Add numeric error code as `id`
text: 'You already have that name',
2020-11-07 05:16:43 +08:00
channel, // @todo Multichannel
}, socket);
}
2018-06-04 15:07:24 +08:00
// find any sockets that have the same nickname
2019-11-07 15:35:23 +08:00
const userExists = server.findSockets({
2020-11-07 05:16:43 +08:00
channel,
2020-09-17 13:44:32 +08:00
nick: (targetNick) => targetNick.toLowerCase() === newNick.toLowerCase()
// Allow them to rename themselves to a different case
2020-09-17 13:44:32 +08:00
&& targetNick != previousNick,
2018-04-29 13:29:38 +08:00
});
2018-06-04 15:07:24 +08:00
// return error if found
2018-04-29 13:29:38 +08:00
if (userExists.length > 0) {
// That nickname is already in that channel
return server.reply({
cmd: 'warn', // @todo Add numeric error code as `id`
2019-11-07 15:35:23 +08:00
text: 'Nickname taken',
2020-11-07 05:16:43 +08:00
channel, // @todo Multichannel
2018-04-29 13:29:38 +08:00
}, socket);
}
2020-11-07 05:16:43 +08:00
// build update notice with new nickname
const updateNotice = {
...getUserDetails(socket),
...{
cmd: 'updateUser',
nick: newNick,
channel, // @todo Multichannel
2020-11-10 03:55:54 +08:00
},
2020-11-07 05:16:43 +08:00
};
// build join and leave notices for legacy clients
2019-11-07 15:35:23 +08:00
const leaveNotice = {
2018-04-29 13:29:38 +08:00
cmd: 'onlineRemove',
2020-11-07 05:16:43 +08:00
userid: socket.userid,
2019-11-07 15:35:23 +08:00
nick: socket.nick,
2020-11-07 05:16:43 +08:00
channel, // @todo Multichannel
2018-04-29 13:29:38 +08:00
};
2019-11-07 15:35:23 +08:00
const joinNotice = {
2020-11-07 05:16:43 +08:00
...getUserDetails(socket),
...{
cmd: 'onlineAdd',
nick: newNick,
channel, // @todo Multichannel
},
2018-04-29 13:29:38 +08:00
};
2020-11-07 05:16:43 +08:00
// gather channel peers
const peerList = server.findSockets({ channel });
for (let i = 0, l = peerList.length; i < l; i += 1) {
if (peerList[i].hcProtocol === 1) {
// send join/leave to legacy clients
server.send(leaveNotice, peerList[i]);
server.send(joinNotice, peerList[i]);
} else {
// send update info
2020-11-10 03:55:54 +08:00
// @todo this should be sent to every channel the client is in (multichannel)
2020-11-07 05:16:43 +08:00
server.send(updateNotice, peerList[i]);
}
}
2018-06-04 15:07:24 +08:00
// notify channel that the user has changed their name
2019-11-07 15:35:23 +08:00
server.broadcast({
2018-04-29 13:29:38 +08:00
cmd: 'info',
2019-11-07 15:35:23 +08:00
text: `${socket.nick} is now ${newNick}`,
2020-11-07 05:16:43 +08:00
channel, // @todo Multichannel
}, { channel });
2018-04-29 13:29:38 +08:00
2018-06-04 15:07:24 +08:00
// commit change to nickname
2020-09-17 13:44:32 +08:00
socket.nick = newNick; // eslint-disable-line no-param-reassign
2019-11-07 15:35:23 +08:00
return true;
}
2018-04-29 13:29:38 +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 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.nickCheck.bind(this), 29);
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
* @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 nickCheck({
core, server, socket, payload,
}) {
if (typeof payload.text !== 'string') {
return false;
}
if (payload.text.startsWith('/nick')) {
2019-11-07 15:35:23 +08:00
const input = payload.text.split(' ');
// If there is no nickname target parameter
2022-06-23 00:32:51 +08:00
if (!input[1]) {
server.reply({
cmd: 'warn', // @todo Add numeric error code as `id`
2019-11-07 15:35:23 +08:00
text: 'Refer to `/help nick` for instructions on how to use this command.',
2020-10-10 13:34:59 +08:00
channel: socket.channel, // @todo Multichannel
}, socket);
return false;
}
2019-11-07 15:35:23 +08:00
const newNick = input[1].replace(/@/g, '');
2020-09-17 13:44:32 +08:00
this.run({
core,
server,
socket,
payload: {
cmd: 'changenick',
nick: newNick,
},
});
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:
* "nick"
* @public
* @typedef {Array} changenick/requiredData
*/
2019-11-07 15:35:23 +08:00
export const requiredData = ['nick'];
2022-06-23 00:32:51 +08:00
/**
* Module meta information
* @public
* @typedef {Object} changenick/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 = {
2018-05-13 18:33:22 +08:00
name: 'changenick',
2022-06-23 00:32:51 +08:00
category: 'core',
description: 'Allows calling client to change their current nickname',
usage: `
API: { cmd: 'changenick', nick: '<new nickname>' }
2019-11-07 15:35:23 +08:00
Text: /nick <new nickname>`,
2018-05-13 18:33:22 +08:00
};