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

133 lines
3.3 KiB
JavaScript
Raw Normal View History

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
*/
// module support functions
2018-06-04 15:07:24 +08:00
const verifyNickname = (nick) => /^[a-zA-Z0-9_]{1,24}$/.test(nick);
2018-04-29 13:29:38 +08:00
// module main
2019-11-07 15:35:23 +08:00
export async function run(core, server, socket, data) {
if (server.police.frisk(socket.address, 6)) {
return server.reply({
2018-04-29 13:29:38 +08:00
cmd: 'warn',
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
2018-04-29 13:29:38 +08:00
if (typeof data.nick !== 'string') {
2019-11-07 15:35:23 +08:00
return true;
2018-04-29 13:29:38 +08:00
}
2018-06-04 15:07:24 +08:00
// make sure requested nickname meets standards
2019-11-07 15:35:23 +08:00
const newNick = data.nick.trim();
2018-04-29 13:29:38 +08:00
if (!verifyNickname(newNick)) {
return server.reply({
2018-04-29 13:29:38 +08:00
cmd: 'warn',
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
// 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({
2018-04-29 13:29:38 +08:00
cmd: 'warn',
2019-11-07 15:35:23 +08:00
text: 'You are not the admin, liar!',
2018-04-29 13:29:38 +08:00
}, 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,
2019-11-07 15:35:23 +08:00
nick: (targetNick) => targetNick.toLowerCase() === newNick.toLowerCase(),
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({
2018-04-29 13:29:38 +08:00
cmd: 'warn',
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
// 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
2018-04-29 13:29:38 +08:00
socket.nick = newNick;
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) {
server.registerHook('in', 'chat', this.nickCheck, 29);
2019-11-07 15:35:23 +08:00
}
// hooks chat commands checking for /nick
2019-11-07 15:35:23 +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',
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, '');
this.run(core, server, socket, {
cmd: 'changenick',
2019-11-07 15:35:23 +08:00
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
};