forked from mars1211/rust-socketio
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsocket-io-restart-url-auth.js
40 lines (36 loc) · 1.07 KB
/
socket-io-restart-url-auth.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
let createServer = require("http").createServer;
let server = createServer();
const io = require("socket.io")(server);
const port = 4206;
const timeout = 200;
const TIMESTAMP_SLACK_ALLOWED = 1000;
function isValidTimestamp(timestampStr) {
if (timestampStr === undefined) return false;
const timestamp = parseInt(timestampStr);
if (isNaN(timestamp)) return false;
const diff = Date.now() - timestamp;
return Math.abs(diff) <= TIMESTAMP_SLACK_ALLOWED;
}
console.log("Started");
var callback = (client) => {
const timestamp = client.request._query.timestamp;
console.log("Connected, timestamp:", timestamp);
if (!isValidTimestamp(timestamp)) {
console.log("Invalid timestamp!");
client.disconnect();
return;
}
client.emit("message", "test");
client.on("restart_server", () => {
console.log("will restart in ", timeout, "ms");
io.close();
setTimeout(() => {
server = createServer();
server.listen(port);
io.attach(server);
console.log("do restart");
}, timeout);
});
};
io.on("connection", callback);
server.listen(port);