2020-01-13 17:17:41 +01:00
|
|
|
const WebSocket = require('ws');
|
2020-03-08 19:07:00 +01:00
|
|
|
var https = require('https');
|
2020-03-08 22:26:42 +01:00
|
|
|
|
|
|
|
var websocket_port = 8888;
|
|
|
|
const wss = new WebSocket.Server({port: websocket_port});
|
|
|
|
console.log("Websocket server running on port " + websocket_port);
|
2020-01-13 17:17:41 +01:00
|
|
|
|
|
|
|
var lookup = [];
|
|
|
|
|
|
|
|
wss.on('connection', function connection(ws) {
|
2020-03-08 22:26:42 +01:00
|
|
|
console.log(ws);
|
2020-01-18 18:15:35 +01:00
|
|
|
lookup[ws.protocol] = ws;
|
2020-01-13 17:17:41 +01:00
|
|
|
});
|
|
|
|
|
2020-03-08 19:07:00 +01:00
|
|
|
var server = https.createServer({
|
2020-03-08 19:11:17 +01:00
|
|
|
cert: fs.readFileSync('/etc/letsencrypt/live/atcheck.projektstudencki.pl/cert.pem'),
|
|
|
|
key: fs.readFileSync('/etc/letsencrypt/live/atcheck.projektstudencki.pl/privkey.pem')
|
2020-03-08 19:07:00 +01:00
|
|
|
}, function (request, response) {
|
2020-01-18 18:15:35 +01:00
|
|
|
response.writeHead(200, {"Content-Type": "text\plain"});
|
|
|
|
request.setEncoding('utf8');
|
2020-01-13 17:17:41 +01:00
|
|
|
|
2020-01-18 18:15:35 +01:00
|
|
|
if (request.method === "POST") {
|
|
|
|
var body = '';
|
2020-03-08 17:10:03 +01:00
|
|
|
|
2020-01-18 18:15:35 +01:00
|
|
|
request.on('data', function (chunk) {
|
|
|
|
body += chunk;
|
|
|
|
});
|
2020-03-08 17:10:03 +01:00
|
|
|
|
2020-01-18 18:15:35 +01:00
|
|
|
request.on('end', function () {
|
|
|
|
body = JSON.parse(body);
|
|
|
|
console.log(body);
|
|
|
|
console.log(lookup);
|
|
|
|
var send_array = {
|
|
|
|
"type": "data",
|
|
|
|
"id": body.student_index,
|
|
|
|
"name": body.student_name,
|
|
|
|
"surname": body.student_surname,
|
|
|
|
"classes_code": body.classes_code
|
|
|
|
};
|
|
|
|
lookup[body.classes_code].send(JSON.stringify(send_array));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
response.end("Undefined request .");
|
|
|
|
}
|
2020-01-13 17:17:41 +01:00
|
|
|
});
|
|
|
|
|
2020-03-08 22:26:42 +01:00
|
|
|
var https_port = 8889;
|
|
|
|
server.listen(https_port);
|
|
|
|
console.log("HTTP server running on port " + https_port);
|