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

68 lines
1.4 KiB
JavaScript
Raw Normal View History

2018-03-10 15:47:00 +08:00
/*
Description: Generates a semi-unique channel name then broadcasts it to each client
2018-03-10 15:47:00 +08:00
*/
'use strict';
const verifyNickname = (nick) => {
2018-03-10 15:47:00 +08:00
return /^[a-zA-Z0-9_]{1,24}$/.test(nick);
};
2018-03-10 15:47:00 +08:00
exports.run = async (core, server, socket, data) => {
if (typeof data.nick !== 'string') {
return;
}
2018-03-10 15:47:00 +08:00
if (!verifyNickname(data.nick)) {
2018-03-10 15:47:00 +08:00
// Not a valid nickname? Chances are we won't find them
return;
}
if (data.nick == socket.nick) {
// They invited themself
2018-03-10 15:47:00 +08:00
return;
}
if (server._police.frisk(socket.remoteAddress, 2)) {
server.reply({
cmd: 'warn',
text: 'You are sending invites too fast. Wait a moment before trying again.'
}, socket);
return;
}
let channel = Math.random().toString(36).substr(2, 8);
let payload = {
cmd: 'info',
invite: channel,
2018-03-10 15:47:00 +08:00
text: `${socket.nick} invited you to ?${channel}`
};
let inviteSent = server.broadcast( payload, { channel: socket.channel, nick: data.nick });
2018-03-10 15:47:00 +08:00
if (!inviteSent) {
server.reply({
cmd: 'warn',
text: 'Could not find user in channel'
}, socket);
return;
}
server.reply({
cmd: 'info',
text: `You invited ${data.nick} to ?${channel}`
2018-03-10 15:47:00 +08:00
}, socket);
core.managers.stats.increment('invites-sent');
};
exports.requiredData = ['nick'];
exports.info = {
name: 'invite',
usage: 'invite {nick}',
description: 'Generates a unique (more or less) room name and passes it to two clients'
};