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

188 lines
4.7 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-11-07 05:16:43 +08:00
import {
verifyNickname,
getUserDetails,
} from '../utility/_UAC';
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,
}) {
2020-11-07 05:16:43 +08:00
const channel = socket.channel;
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.',
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);
}
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!',
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
}
};
// 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
// @todo this should be sent to every channel the client is in
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
// 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.',
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
}
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
};