forked from elliottshane/sme-sartopo-mapsrv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
368 lines (336 loc) · 10.8 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
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
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
const http = require('http');
var got = require('got');
const express = require('express');
const bodyParser = require('body-parser');
const axios = require('axios');
var crypto = require('crypto');
var app = express();
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: true }))
var stdin = process.openStdin();
const config = require('./config.js');
var clientUrl = "http://localhost:8080";
var sartopoOl = "http://localhost:8080";
//CORS Stuff change the url to the url of your app that is calling the api
app.use(function (req, res, next) {
res.header("Access-Control-Allow-Origin", clientUrl);
res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept");
res.header('Access-Control-Allow-Methods', 'GET, POST, PUT, DELETE, PATCH, OPTIONS')
res.header('Access-Control-Allow-Credentials', 'true');
next();
});
app.post('/sartopo/resource/', (request, response) => {
/*
* accepts:
* {"resourceId":"","mapId":"","name":"","agency":""}
* do not include resourceId for new resouces, only for edit.
*/
let newResource = {
"properties":
{
"title": request.body.name,
"assignmentId": "",
"type": "PERSON",
"agency": request.body.agency
},
"id": request.body.resourceId
}
var formData = {
json: JSON.stringify(newResource)
}
if (request.body.resourceId) {
//console.log(request.body.resourceId)
var mapUrl = sartopoOl + '/api/v1/map/' + request.body.mapId + '/Resource/' + request.body.resourceId
}
else {
console.log(request.body)
var mapUrl = sartopoOl + '/api/v1/map/' + request.body.mapId + '/Resource'
}
got(mapUrl, {
form: true,
body: formData,
})
.then(function (data) {
response.send(data.body)
}).catch(function (error) {
console.log(error)
})
})
app.delete('/sartopo/point', (request, response) => {
console.log('delete....');
if (request.body.markerId) {
console.log(request.body.markerId)
var mapUrl = sartopoOl + '/api/v1/map/' + request.body.mapId + '/Marker/' + request.body.markerId;
got.delete(mapUrl)
.then(function (data) {
response.send(data.body)
}).catch(function (error) {
console.log(error);
});
}
else {
console.log('no ID')
}
});
app.post('/sartopo/point', (request, response) => {
//console.log(request.body)
//the colors are used to change the team colors
var color = [
'#0000FF',//BLUE
'#008000',//GREEN
'#800080',//PURPLE
'#FF0000',//RED
'#000000',//BLACK
'#800000',//MAROON
'#FFFF00',//YELLOW
'#808000',//OLIVE
'#00FF00',//LIME
'#00FFFF',//AQUA
'#008080',//TEAL
'#808080',//GRAY
'#000080',//NAVY
'#FF00FF',//FUCHSIA
'#C0C0C0',//SILVER
];
if (Number(request.body.team) && Number(request.body.team) < 15) {
var markerColor = color[Number(request.body.team)];
}
else {
var markerColor = color[4]
}
if (request.body.TimeStamp == undefined) {
// console.log('here')
var TimeStamp = new Date().toLocaleString().split(' ')[1]
}
else {
var TimeStamp = request.body.TimeStamp.split(' ')[1]
}
// console.log(request.body)
if (request.body.team === null) {
request.body.team = request.body.eventID + "@" + TimeStamp;
}
else {
request.body.team = request.body.team + "@" + TimeStamp.substring(0, 5);
}
let newPoint = {
"id": request.body.markerId ? request.body.markerId : null,
"properties":
{
"marker-symbol": "point",
"marker-color": markerColor,
"title": request.body.team,
"description": '',
"folderId": null,
"marker-rotation": null
},
"geometry":
{
"type": "Point",
"coordinates": [request.body.lng, request.body.lat]
}
};
var formData = {
json: JSON.stringify(newPoint)
};
//console.log(formData);
if (request.body.markerId) {
console.log(request.body.markerId)
var mapUrl = sartopoOl + '/api/v1/map/' + request.body.mapId + '/Marker/' + request.body.markerId
}
else {
console.log(request.body)
var mapUrl = sartopoOl + '/api/v1/map/' + request.body.mapId + '/Marker'
}
got(mapUrl, {
form: true,
body: formData,
})
.then(function (data) {
response.send(data.body)
}).catch(function (error) {
console.log(error)
});
})
stdin.addListener("data", function (d) {
const { mapId, host, expires, key64, id, loc } = config;
var url= host + "/api/v1/map/" + mapId + "/Marker";
var uri = "/api/v1/map/" + mapId + "/Marker";
if (d.toString().trim() === 'm') {
console.log("--NO Hash---");
let newPoint = {
"id": null,
"properties":
{
"marker-symbol": "point",
"marker-color": '#FF00FF',
"title": "Test of API",
"description": '',
"folderId": null,
"marker-rotation": null
},
"geometry":
{
"type": "Point",
"coordinates": loc
}
}
console.log("sending....")
var formData = {
json: JSON.stringify(newPoint),
};
console.log(newPoint)
console.log(formData);
got(sartopoOl + "/api/v1/map/" + mapId + "/Marker", {
form: true,
body: formData,
})
.then(function (data) {
console.log(data.body);
}).catch(function (error) {
console.log(error);
});
}
if (d.toString().trim() === 'u') {
console.log("--NO Hash---");
let newPoint = {
"id": "eee19fad-cd69-4d8c-8466-ec777f473762",
"type": "Feature",
"properties":
{
"marker-symbol": "point",
"updated": 0,
"marker-color": '#FF00FF',
"title": "Test of API-new-x",
"description": '',
"folderId": null,
"marker-rotation": null
},
"geometry":
{
"type": "Point",
"coordinates": [-107.0164,39.2180]
}
}
console.log("sending....")
var formData = {
json: JSON.stringify(newPoint),
};
console.log(newPoint)
//console.log(formData);
//formData = { json:"NULLPOST"};
console.log(formData)
//maual ID, jest chedking to try and reproduce Toms error
got(sartopoOl + "/api/v1/map/" + mapId + "/Marker/eee19fad-cd69-4d8c-8466-ec777f473762", {
form: true,
body: formData,
})
.then(function (data) {
console.log(data.body);
}).catch(function (error) {
console.log(error);
});
}
//t test signature hash with post
if (d.toString().trim() === 't') {
console.log("--POST With HASH---")
let point = {
"id": null,
"properties":
{
"marker-symbol": "point",
"marker-color": '#FF00FF',
"title": "Test of API",
"description": '',
"folderId": null,
"marker-rotation": null
},
"geometry":
{
"type": "Point",
"coordinates": loc
}
};
let payload = JSON.stringify(point)
//let payload = "test";
let data = "POST" + " " + uri + "\n" + expires + "\n" + (payload == null ? "" : payload);
let key = new Buffer(key64, 'base64');
var hash = crypto.createHmac('SHA256', key).update(data).digest('base64');
//post the stuff
let formData = {
json: JSON.stringify(point),
id: id,
expires: expires,
signature: hash
};
console.log(formData);
console.log(url)
got(url, {
form: true,
body: formData,
})
.then(function (data) {
console.log(data.body)
}).catch(function (error) {
console.log(error)
});
}
if (d.toString().trim() === 'x') {
console.log("--HASH---")
let point = {
"id": null,
"properties":
{
"marker-symbol": "point",
"marker-color": '#FF00FF',
"title": "Test of API",
"description": '',
"folderId": null,
"marker-rotation": null
},
"geometry":
{
"type": "Point",
"coordinates": loc
}
};
let payload = JSON.stringify(point)
let data = "POST" + " " + uri + "\n" + expires + "\n" + (payload == null ? "" : payload);
//let data = 'test';
let key = new Buffer(key64, 'base64');
var hash = crypto.createHmac('SHA256', key).update(data).digest('base64');
var hashHex = crypto.createHmac('SHA256', key).update(data).digest('hex');
//post the stuff
let formData = {
json: JSON.stringify(point),
id: id,
expires: expires,
signature: hash
};
console.log("post Data", formData);
console.log('-------------');
console.log("hash:", hash);
console.log('-------------');
console.log("hashHex",hashHex);
console.log('-------------');
console.log("data",data);
console.log("--------------");
console.log(key);
console.log("--------------")
}
});
app.get('/sartopo/version', (request, response) => {
response.send("version 1.0")
})
app.post('/api/v1/map/KT1J/Marker', (request, response) => {
console.log(request.body);
var result = {
id:23
}
response.send(result)
})
var server = http.createServer(app);
var port = process.env.PORT || 4567;
console.log(port)
server.listen(port, () => {
console.log('Sartopo-offline map server running on *:' + port);
});