-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathusers-utils.js
170 lines (144 loc) · 4.25 KB
/
users-utils.js
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
'use strict';
const EventEmitter = require('events').EventEmitter;
class Worker extends EventEmitter {
constructor(id) {
super();
this.id = id;
this.process = {connected: true};
this.sockets = new Set();
this.channels = new Map();
this.subchannels = new Map();
Sockets.workers.set(this.id, this);
}
kill() {}
send(msg) {
let cmd = msg.charAt(0);
let params = msg.substr(1).split('\n');
switch (cmd) {
case '!':
return this.removeSocket(...params);
case '>':
return this.sendToSocket(...params);
case '#':
return this.sendToChannel(...params);
case '+':
return this.addToChannel(...params);
case '-':
return this.removeFromChannel(...params);
case '.':
return this.moveToSubchannel(...params);
case ':':
return this.broadcastToSubchannels(params[0]);
}
}
addSocket(socketid) {
this.sockets.add(+socketid);
}
removeSocket(socketid) {
socketid = +socketid;
if (!this.sockets.has(socketid)) {
throw new Error(`Attempted to disconnect nonexistent socket ${socketid}`);
}
this.sockets.delete(socketid);
this.channels.forEach((channel, channelid) => {
channel.delete(socketid);
});
}
sendToSocket(socketid, msg) {
socketid = +socketid;
if (!this.sockets.has(socketid)) {
throw new Error(`Attempted to send ${msg} to nonexistent socket ${socketid}`);
}
}
sendToChannel(channelid, msg) {
if (!this.channels.has(channelid)) {
throw new Error(`Attempted to send ${msg} to nonexistent channel ${channelid}`);
}
}
addToChannel(channelid, socketid) {
socketid = +socketid;
if (!this.channels.has(channelid)) {
this.channels.set(channelid, new Set([socketid]));
return;
}
let channel = this.channels.get(channelid);
if (channel.has(socketid)) {
throw new Error(`Attempted to redundantly add socket ${socketid} to channel ${channelid}`);
}
channel.add(socketid);
}
removeFromChannel(channelid, socketid) {
socketid = +socketid;
if (!this.channels.has(channelid)) {
throw new Error(`Attempted to remove socket ${socketid} from nonexistent channel ${channelid}`);
}
let channel = this.channels.get(channelid);
if (!channel.has(socketid)) {
throw new Error(`Attempted to remove nonexistent socket ${socketid} from channel ${channelid}`);
}
channel.delete(socketid);
if (!channel.size) {
this.channels.delete(channelid);
this.subchannels.delete(channelid);
}
}
moveToSubchannel(channelid, subchannelid, socketid) {
socketid = +socketid;
if (!this.channels.has(channelid)) {
throw new Error(`Attempted to move socket ${socketid} to subchannel ${subchannelid} of nonexistent channel ${channelid}`);
}
if (!this.subchannels.has(channelid)) {
if (subchannelid === '0') return;
this.subchannels.set(channelid, new Map([[socketid, subchannelid]]));
return;
}
let subchannel = this.subchannels.get(channelid);
if (!subchannel.has(socketid)) {
if (subchannelid !== '0') subchannel.set(socketid, subchannelid);
return;
}
if (subchannelid === '0') {
subchannel.delete(socketid);
} else {
subchannel.set(socketid, subchannelid);
}
}
broadcastToSubchannels(channelid) {
if (!this.channels.has(channelid)) {
throw new Error(`Attempted to broadcast to subchannels of nonexistent channel ${channelid}`);
}
if (!this.subchannels.has(channelid)) {
throw new Error(`Attempted to broadcast to nonexistent subchannels of channel ${channelid}`);
}
}
}
function createConnection(ip, workerid, socketid) {
let worker;
if (workerid) {
workerid = +workerid;
worker = Sockets.workers.get(workerid) || new Worker(workerid);
} else {
worker = Sockets.workers.get(1) || new Worker(1);
workerid = worker.id;
}
if (!socketid) {
socketid = 1;
while (Users.connections.has(`${workerid}-${socketid}`)) {
socketid++;
}
}
worker.addSocket(socketid);
let connectionid = `${workerid}-${socketid}`;
let connection = new Users.Connection(connectionid, worker, socketid, null, ip || '127.0.0.1');
Users.connections.set(connectionid, connection);
return connection;
}
function createUser(connection) {
if (!connection) connection = createConnection();
let user = new Users.User(connection);
user.joinRoom('global', connection);
connection.user = user;
return user;
}
exports.Connection = createConnection;
exports.User = createUser;