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

154 lines
3.9 KiB
JavaScript
Raw Normal View History

2020-09-17 13:44:32 +08:00
/* eslint eqeqeq: 0 */
2018-04-29 13:29:38 +08:00
/*
Description: Allows calling client to change their current nickname
2018-04-29 13:29:38 +08:00
*/
2020-03-07 05:12:48 +08:00
import * as UAC from '../utility/UAC/_info';
2018-04-29 13:29:38 +08:00
// module main
2020-09-17 13:44:32 +08:00
export async function run({
core, server, socket, payload,
}) {
2019-11-07 15:35:23 +08:00
if (server.police.frisk(socket.address, 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.',
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();
if (!UAC.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',
2018-04-29 13:29:38 +08:00
}, socket);
}
2018-06-04 15:07:24 +08:00
// prevent admin impersonation
2020-09-17 13:44:32 +08:00
// @todo prevent mod impersonation
2019-11-07 15:35:23 +08:00
if (newNick.toLowerCase() === core.config.adminName.toLowerCase()) {
server.police.frisk(socket.address, 4);
2018-04-29 13:29:38 +08:00
return server.reply({
cmd: 'warn', // @todo Add numeric error code as `id`
2019-11-07 15:35:23 +08:00
text: 'You are not the admin, liar!',
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',
}, 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({
channel: socket.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',
2018-04-29 13:29:38 +08:00
}, socket);
}
2018-06-04 15:07:24 +08:00
// build join and leave notices
2020-09-17 13:44:32 +08:00
// @todo this is a legacy client holdover, name changes in the future will
// have thieir own event
2019-11-07 15:35:23 +08:00
const leaveNotice = {
2018-04-29 13:29:38 +08:00
cmd: 'onlineRemove',
2019-11-07 15:35:23 +08:00
nick: socket.nick,
2018-04-29 13:29:38 +08:00
};
2019-11-07 15:35:23 +08:00
const joinNotice = {
2018-04-29 13:29:38 +08:00
cmd: 'onlineAdd',
nick: newNick,
trip: socket.trip || 'null',
2019-11-07 15:35:23 +08:00
hash: socket.hash,
2018-04-29 13:29:38 +08:00
};
2018-06-04 15:07:24 +08:00
// broadcast remove event and join event with new name, this is to support legacy clients and bots
2019-11-07 15:35:23 +08:00
server.broadcast(leaveNotice, { channel: socket.channel });
server.broadcast(joinNotice, { channel: socket.channel });
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}`,
2018-04-29 13:29:38 +08:00
}, { channel: socket.channel });
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
// module hook functions
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
}
// hooks chat commands checking for /nick
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
if (input[1] === undefined) {
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.',
}, 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
}
2019-11-07 15:35:23 +08:00
export const requiredData = ['nick'];
export const info = {
2018-05-13 18:33:22 +08:00
name: 'changenick',
description: 'This will change your current connections 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
};