1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
/*
Description: Generates a semi-unique channel name then broadcasts it to each client
*/
// module support functions
const verifyNickname = (nick) => /^[a-zA-Z0-9_]{1,24}$/.test(nick);
// module main
exports.run = async (core, server, socket, data) => {
// check for spam
if (server.police.frisk(socket.remoteAddress, 2)) {
return server.reply({
cmd: 'warn',
text: 'You are sending invites too fast. Wait a moment before trying again.'
}, socket);
}
// verify user input
if (typeof data.nick !== 'string' || !verifyNickname(data.nick)) {
return;
}
// why would you invite yourself?
if (data.nick == socket.nick) {
return;
}
// generate common channel
let channel = Math.random().toString(36).substr(2, 8);
// build and send invite
let payload = {
cmd: 'info',
type: 'invite',
from: socket.nick,
invite: channel,
text: `${socket.nick} invited you to ?${channel}`
};
let inviteSent = server.broadcast( payload, {
channel: socket.channel,
nick: data.nick
});
// server indicates the user was not found
if (!inviteSent) {
return server.reply({
cmd: 'warn',
text: 'Could not find user in channel'
}, socket);
}
// reply with common channel
server.reply({
cmd: 'info',
type: 'invite',
invite: channel,
text: `You invited ${data.nick} to ?${channel}`
}, socket);
// stats are fun
core.stats.increment('invites-sent');
};
// module meta
exports.requiredData = ['nick'];
exports.info = {
name: 'invite',
description: 'Generates a unique (more or less) room name and passes it to two clients',
usage: `
API: { cmd: 'invite', nick: '<target nickname>' }`
};
|