-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.js
306 lines (238 loc) · 7.77 KB
/
app.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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
var express = require('express');
var path = require('path');
var favicon = require('serve-favicon');
var logger = require('morgan');
var cookieParser = require('cookie-parser');
var bodyParser = require('body-parser');
var sassMiddleware = require('node-sass-middleware');
var app = express();
var expressWs = require('express-ws')(app);
var index = require('./routes/index');
var echo = require('./routes/echo')(express);
function findIndexInArray(item, arr) {
return arr.findIndex(function (a) {
return a === item;
});
}
Array.prototype.contains = function (obj) {
return this.find(function (a) {
return a === obj;
}) !== undefined;
};
var clients = [];
var channels = [];
function Channel(id) {
this.id = id;
this.clients = [];
this.openClient = function (client) {
this.clients.push(client);
console.log(client.id + " opened " + this.id);
client.channels.push(this.id);
};
this.closeClient = function (client) {
var close = this.clients.splice(findIndexInArray(client, this.clients), 1);
if (close[0] !== undefined) {
console.log(client.id + " closed " + this.id);
}
client.channels.splice(findIndexInArray(this.id, client.channels), 1);
};
this.contains = function (client) {
return this.clients.contains(client);
};
this.transmit = function (from, reply, msg, msg_type) {
var self = this;
this.clients.forEach(function (v, i) {
if (v.id !== from.id && v.readyState === v.OPEN) {
v.send(JSON.stringify({
type: "receive",
channel: self.id,
reply_channel: reply,
id: from.id,
message: msg
}));
} else if (v.readyState !== v.OPEN) {
self.clients.splice(i, 1);
}
});
};
}
function getChannel(id) {
return channels[id - 1];
}
function isValidCCRange(i) {
return i > 0 && i < 65536;
}
function isCCType(s) {
return (s == "number" || s == "string" || s == "table");
}
function addClient(v) {
var index = findIndexInArray(undefined, clients);
v.id = index + 1;
v.client_index = index;
v.channels = [];
clients[index] = v;
return index + 1;
}
function removeClient(v) {
console.log("ID " + v.id + " disconnected");
v.channels.forEach(function (i) {
getChannel(i).closeClient(v);
});
clients[v.client_index] = undefined;
}
for (var i = 0; i < 65535; i++) {
channels.push(new Channel(i + 1));
clients[i] = undefined;
}
clients[65535] = null;
setInterval(function() {
clients.forEach(function(c, i) {
if(c !== undefined && c !== null) {
if (c.readyState === c.OPEN) {
try {
c.send(JSON.stringify({
type: "keepalive"
}));
} catch (e) {
removeClient(c);
}
} else if (c.readyState === c.CLOSED) {
removeClient(c);
}
}
});
}, 10000);
// view engine setup
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'hbs');
// uncomment after placing your favicon in /public
//app.use(favicon(path.join(__dirname, 'public', 'favicon.ico')));
app.use(logger('dev'));
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({extended: false}));
app.use(cookieParser());
app.use(sassMiddleware({
src: path.join(__dirname, 'public'),
dest: path.join(__dirname, 'public'),
indentedSyntax: true, // true = .sass and false = .scss
sourceMap: true
}));
app.use(express.static(path.join(__dirname, 'public')));
app.use('/', index);
app.use('/echo', echo);
app.ws('/', function (ws, req) {
addClient(ws);
setTimeout(function () {
ws.send(JSON.stringify({
type: "id",
value: ws.id
}));
}, 100);
console.log("ID " + ws.id + " connected");
ws.on('message', function (message) {
//console.log(message);
if (message.length > 65535) {
return ws.send(JSON.stringify({
type: "error",
message: "message_too_long"
}), function () {
setTimeout(function(){
ws.close();
}, 100);
});
}
var msg;
try {
msg = JSON.parse(message);
} catch (e) {
return ws.send(JSON.stringify({
type: "error",
message: "syntax_error"
}), function () {
ws.close();
});
}
if (!msg.type) {
return ws.send(JSON.stringify({
type: "error",
message: "invalid_type"
}));
}
if (msg.type == "open") {
if (!msg.channel || typeof(msg.channel) !== "number") {
return ws.send(JSON.stringify({
type: "error",
message: "invalid_arguments"
}));
} else if (!isValidCCRange(msg.channel)) {
return ws.send(JSON.stringify({
type: "error",
message: "invalid_id"
}));
} else if (getChannel(msg.channel).contains(ws)) {
return ws.send(JSON.stringify({
type: "error",
message: "already_opened"
}));
} else {
return getChannel(msg.channel).openClient(ws);
}
} else if (msg.type == "close") {
if (!msg.channel || typeof(msg.channel) !== "number") {
return ws.send(JSON.stringify({
type: "error",
message: "invalid_arguments"
}));
} else if (!isValidCCRange(msg.channel)) {
return ws.send(JSON.stringify({
type: "error",
message: "invalid_id"
}));
} else if (!getChannel(msg.channel).contains(ws)) {
return ws.send(JSON.stringify({
type: "error",
message: "already_closed"
}));
} else {
return getChannel(msg.channel).closeClient(ws);
}
} else if (msg.type == "close_all") {
return ws.channels.forEach(function (i) {
getChannel(i).closeClient(ws);
});
} else if (msg.type == "transmit") {
if (!msg.channel || !msg.reply_channel || !msg.message || typeof(msg.channel) !== "number" || typeof(msg.reply_channel) !== "number") {
return ws.send(JSON.stringify({
type: "error",
message: "invalid_arguments"
}));
} else if (!isValidCCRange(msg.channel) || !isValidCCRange(msg.reply_channel)) {
return ws.send(JSON.stringify({
type: "error",
message: "invalid_id"
}));
} else {
return getChannel(msg.channel).transmit(ws, msg.reply_channel, msg.message);
}
}
});
ws.on('close', function () {
removeClient(ws);
});
});
// catch 404 and forward to error handler
app.use(function (req, res, next) {
var err = new Error('Not Found');
err.status = 404;
next(err);
});
// error handler
app.use(function (err, req, res, next) {
// set locals, only providing error in development
res.locals.message = err.message;
res.locals.error = req.app.get('env') === 'development' ? err : {};
// render the error page
res.status(err.status || 500);
res.render('error');
});
module.exports = app;