This repository was archived by the owner on May 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
182 lines (159 loc) · 6.95 KB
/
index.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
const express = require("express");
const app = express();
const http = require('http').Server(app);
const io = require('socket.io')(http);
const path = require("path");
const bodyParser = require("body-parser");
const exphbs = require('express-handlebars');
require('body-parser-xml')(bodyParser);
let xmlparser = require('express-xml-bodyparser');
let port = process.env.PORT || 80;
//app.use(bodyParser.urlencoded({ extended: true }));
//app.use(bodyParser.json());
//app.use(bodyParser.xml());
//app.use(xmlparser());
let SSinfo = [];
let cmd = "";
app.use(express.static("./public/"));
//app.use(bodyParser.urlencoded({ extended: true }));
app.set('view engine', '.hbs');
app.engine('.hbs', exphbs({
extname: '.hbs',
defaultLayout: 'main',
layoutsDir: __dirname + '/views/layouts/',
partialsDir: __dirname + '/views/partials/',
helpers: {
navLink: function(url, options){
str = url.substring(0, url.length - 1);
let www = new RegExp('^' + str + '.*$');
if(url == '/') {
www = new RegExp('^' + url + '$');
}
//console.log("Route " + app.locals.activeRoute);
//console.log("URL " + www);
//console.log("Test = " + www.test(app.locals.activeRoute))
return '<li' +
((www.test(app.locals.activeRoute)) ? ' class="active" ' : '') +
'><a href="' + url + '">' + options.fn(this) + '</a></li>';
},
equal: function (lvalue, rvalue, options) {
if (arguments.length < 3)
throw new Error("Handlebars Helper equal needs 2 parameters");
if (lvalue != rvalue) {
return options.inverse(this);
} else {
return options.fn(this);
}
}
}
}));
function xmlBody2Obj(req, res, next) {
console.log("Escape!")
let data = '';
req.setEncoding('utf8');
req.on('data', function(chunk) {
data += chunk;
});
req.on('end', function() {
req.xmlBodyObj = xml2Obj(data.toString());
next();
});
};
function xml2Obj(xmlData) {
console.log('xml2Obj XML:\n' + xmlData);
xmlData = xmlData.replace(/\<httplog\>/g, "{");
xmlData = xmlData.replace(/<\/httplog\>/g, "}");
xmlData = xmlData.replace(/\>(.*)=(.*)\</g, ">{$1=$2}<");
xmlData = xmlData.replace(/\<(.*)\>(.*)\<\/(.*)\>/g, "\"$1\" : \"$2\",");
xmlData = xmlData.replace(/\}\"/g, "\"}");
xmlData = xmlData.replace(/\"\{/g, "{\"");
xmlData = xmlData.replace(/\=/g, "\" : \"");
xmlData = xmlData.replace(/\&/g, "\" , \"");
xmlData = xmlData.replace(/\r?\n|\r/g, " ");
xmlData = xmlData.replace(/\}, \}/g, "}]}");
xmlData =xmlData.replace(/}, "log" : {/g, '} , {');
xmlData =xmlData.replace(/, "log" : {/g, ', "log" : [{');
xmlData =xmlData.replace(/}, "miss" : {/g, '} , {');
xmlData =xmlData.replace(/, "miss" : {/g, ', "miss" : [{');
console.log('xml2Obj JSON:\n' + xmlData);
return JSON.parse(xmlData);
};
app.get('/', function(req, res){
res.render("index");
//res.sendFile(__dirname + '/index.html');
});
app.get('/status', function(req, res){
res.sendFile(__dirname + '/status.html');
});
app.get('/sitesurvey/:value', function(req, res){
res.render("sitesurvey", {id: req.params.value});
});
io.on('connection', function(socket){
socket.on('chat message', function(msg){
io.emit('chat message', msg);
//console.log(msg);
try{
msg = JSON.parse(msg);
} catch(err){
console.log("Error: " + err);
console.log("Msg not able to be parsed: " + msg);
}
if(msg instanceof Object && 'dxmId' in msg){
SSinfo.push(msg);
//console.log("yes, I have dxmId property");
}
});
});
// setup a GET 'route' to listen on /push
app.get("/push", function(req,res){
console.log(req.headers);
console.log(req.originalUrl);
console.log(req.query);
let filter = JSON.stringify(req.query);
//let filter = {"departmentName": req.params.value };
console.log(filter);
if(SSinfo.length > 0){
for(let i = 0; i < SSinfo.length; i++){
if(SSinfo[i].dxmId == req.query.id){
cmd = "®5=" + SSinfo[i].siteSurvey + "®6=" + SSinfo[i].nodeNum
SSinfo.splice(i,1);
}
}
}
let now = new Date();
let month = now.getMonth() < 9 ? "0"+ (now.getMonth()+1) : (now.getMonth()+1);
let day = now.getDate() < 10 ? "0"+ now.getDate() : now.getDate() ;
let hours = now.getHours() < 10 ? "0"+ now.getHours() : now.getHours() ;
let minutes = now.getMinutes() < 10 ? "0"+ now.getMinutes() : now.getMinutes() ;
let seconds = now.getSeconds() < 10 ? "0"+ now.getSeconds() : now.getSeconds() ;
let currentDate = month + "-" + day + "-" + now.getFullYear() + "-" + hours + ":" + minutes + ":" + seconds;
cmd = "&tod=" + currentDate;
let response = "<html><head><title>HTTP Push Ack</title></head><body>id=" + req.query.id + cmd + "</body></html>";
cmd = "";
res.send(response);
io.emit('chat message', filter);
});
// setup a GET 'route' to listen on /push
app.get("/test", function(req,res){
// let xmlDataStr = '<httplog>\n<id>TestID</id>\n<st>20190829160543</st>\n<log>pkt=20190829160048&flags=0®19=0®22=3115</log>\n<log>pkt=20190829160148&flags=0®19=0®22=3175</log>\n<log>pkt=20190829160247&flags=0®19=0®22=3235</log>\n<log>pkt=20190829160347&flags=0®19=0®22=3295</log>\n<log>pkt=20190829160447&flags=0®19=0®22=3355</log>\n</httplog>'
let xmlDataStr = '<httplog>\n<id>TestID</id>\n<st>20190829160543</st>\n<log>pkt=20190829160048&flags=0®19=0®22=3115</log>\n<log>pkt=20190829160148&flags=0®19=0®22=3175</log>\n<miss>pkt=20190829160247&flags=0®19=0®22=3235</miss>\n<miss>pkt=20190829160347&flags=0®19=0®22=3295</miss>\n<miss>pkt=20190829160447&flags=0®19=0®22=3355</miss>\n</httplog>'
let xmlData = xml2Obj(xmlDataStr);
// console.log(JSON.stringify(xml2Obj(xmlData)));
// let xmlStr = '{ "id" : "TestID", "st" : "20190829160543", "log" : [{"pkt" : "20190829160048" , "flags" : "0" , "reg19" : "0" , "reg22" : "3115"} , {"pkt" : "20190829160148" , "flags" : "0" , "reg19" : "0" , "reg22" : "3175"} , {"pkt" : "20190829160247" , "flags" : "0" , "reg19" : "0" , "reg22" : "3235"} , {"pkt" : "20190829160347" , "flags" : "0" , "reg19" : "0" , "reg22" : "3295"} , {"pkt" : "20190829160447" , "flags" : "0" , "reg19" : "0" , "reg22" : "3355"}]}';
// xmlData = JSON.parse(xmlStr);
console.log("log[1] = " + xmlData.log[2].reg22);
console.log(JSON.stringify(xmlData));
res.send("<html><head><title>HTTP Push Ack</title></head><body>id=" + "</body></html>");
});
// setup a POST 'route' to listen on /banner
app.post("/push", xmlBody2Obj, function(req,res){
console.log("POST body");
console.log(JSON.stringify(req.xmlBodyObj));
let id = req.xmlBodyObj.id;
console.log("POST ID: parsed " + id);
io.emit('chat message', "Post id: " + id);
res.send("<html><head><title>HTTP Push Ack</title></head><body>id=" + id + "</body></html>");
});
http.listen(port, function(){
console.log('listening on *:' + port);
});