-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserverbase.js
85 lines (76 loc) · 2.03 KB
/
serverbase.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
var express = require('express');
const WebSocket = require('ws');
const http = require('http');
const url = require('url');
var app = express()
var onlist = {};
var parmlist = {};
var wssobj;
var _options = {
doc: '/index.html',
dir: __dirname,
port: 80,
url: null
}
// todo! must be implemented in class
function checkArgs(req, res) {
for (rid in req.query) {
for (id in parmlist) {
if (id == rid) parmlist[id](req.params[0], req.query[rid]);
}
}
}
app.get(/^(.+)$/, function (req, res) {
if (req.params[0] == '/') req.params[0] = _options.doc;
checkArgs(req, res);
res.sendFile(_options.dir + req.params[0]);
});
function handleStream(ar) {
for (id in ar) {
for (on in onlist) {
if (id == on) onlist[on](ar[id])
}
}
}
class serverbase {
constructor(options) {
if (options != undefined) {
console.log()
for (var opt in options) {
_options[opt] = options[opt];
}
}
const server = http.createServer(app);
var wss;
if (!_options.url) wss = new WebSocket.Server({ server });
else {
var ar = _options.url.split(':');
console.log(ar);
wss = new WebSocket.Server({ server: ar[0], port: ar[1]});
}
wssobj = wss;
wss.on('connection', function connection(ws, req) {
handleStream({ 'connect': ws })
ws.on('message', function incoming(data) {
handleStream(JSON.parse(data));
});
});
server.listen(_options.port, function () {
handleStream({"listen": _options.port})
})
}
on (id, func) {
onlist[id] = func;
}
onparm(id, func) {
parmlist[id] = func;
}
broadcast (data) {
wssobj.clients.forEach(function each(client) {
if (client.readyState === WebSocket.OPEN) {
client.send(data);
}
});
};
}
module.exports = serverbase;