-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathroutes.js
526 lines (322 loc) · 12 KB
/
routes.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
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
/****************************************************************************
* routes.js
* March 2021
*****************************************************************************/
const dbFunctions = require('./js/dbFunctions.js');
module.exports = function (app, dbClient) {
/**
* Render the homepage
*/
app.get('/', (req, res) => {
res.render('index');
});
/**
* Render the upload page
*/
app.get('/upload', (req, res) => {
res.render('upload');
});
/**
* Render the configuration page
*/
app.get('/configure', (req, res) => {
res.render('configure');
});
/**
* Render the search page by default, unless an upload ID is included in the POST request. Then display the data associated with it or an error if no such data exists
*/
app.get('/view', (req, res) => {
const uploadID = req.query.uploadid;
if (!uploadID) {
res.render('search', { displayError: false });
return;
}
dbFunctions.getUploadInformation(dbClient, uploadID, (err, dbRes) => {
if (err || dbRes.rows.length === 0) {
res.render('search', { displayError: true, uploadID: uploadID });
return;
}
res.render('view', { uploadID: uploadID });
});
});
/**
* Signal the start of an upload and create a new upload record in the database
*/
app.post('/startUpload', (req, res) => {
if (!req.body.deviceID) {
res.status(400).send('Unreadable receiver ID.');
return;
}
const deviceID = req.body.deviceID;
const email = req.body.email;
const subscription = req.body.subscription;
const maxVelocity = req.body.maxVelocity;
const nickname = req.body.nickname;
dbFunctions.addUpload(dbClient, deviceID, email, subscription, maxVelocity, nickname, (err, dbRes) => {
if (err) {
console.log(err);
res.status(400).send(err);
return;
}
const uploadID = dbRes.rows[0].upload_id;
res.send(uploadID.toString());
});
});
/**
* Second step of creating a new record, add a reference point from which position calculations can be done. Will be called one or more times
*/
app.post('/addReferencePoint', (req, res) => {
const uploadID = req.body.uploadID;
const dtString = req.body.datetime;
const lat = req.body.lat;
const lng = req.body.lng;
console.log(uploadID, dtString, lat, lng);
if (uploadID === undefined) {
res.status(400).send('Unreadable upload ID.');
return;
}
if (dtString === undefined || lat === undefined || lng === undefined) {
res.status(400).send('Unreadable reference point.');
return;
}
dbFunctions.addReferencePoint(dbClient, uploadID, lat, lng, dtString, (err, refRes) => {
if (err) {
console.log(err);
res.status(400).send(err);
return;
}
res.send('Added reference point to upload with ID: ' + uploadID);
});
});
/**
* Third step in creating an upload. Upload a single snapshot, including a block of bytes which are directly uploaded to the database
*/
app.post('/addSnapshot', (req, res) => {
const uploadID = req.body.uploadID;
const file = req.files.data;
const dateString = req.body.datetime;
const battery = req.body.battery;
const hxfoCount = req.body.hxfoCount;
const lxfoCount = req.body.lxfoCount;
const temperature = req.body.temperature;
console.log(uploadID, dateString, battery, hxfoCount, lxfoCount, temperature);
if (uploadID === undefined) {
res.status(400).send('Unreadable upload ID.');
return;
}
if (file === undefined) {
res.status(400).send('Unreadable file.');
return;
}
if (dateString === undefined || battery === undefined || hxfoCount === undefined || lxfoCount === undefined || temperature === undefined) {
res.status(400).send('Missing/unreadable snapshot information.');
return;
}
const dt = new Date(dateString);
const buff = file.data;
console.log('Pushing file to DB');
dbFunctions.addSnapshot(dbClient, uploadID, dt, battery, hxfoCount, lxfoCount, temperature, buff, (err, dbRes) => {
if (err) {
console.log(err);
res.status(400).send(err);
return;
}
res.send('Added data with ID: ' + uploadID);
});
});
/**
* Once all snapshots have been uploaded, instruct the server to update the processing date and upload status to allow the processing script to process it
*/
app.post('/finishUpload', (req, res) => {
if (!req.body.uploadID) {
res.status(400).send('Unreadable upload ID.');
return;
}
const uploadID = req.body.uploadID;
const earliestProcessingDateString = req.body.earliestProcessingDateString;
// The earliest processing date is calculated whilst each record is being pulled from the device
// For this reason a placeholder value is used when an upload record is created and it is updated now
dbFunctions.updateUploadProcessingDate(dbClient, uploadID, earliestProcessingDateString, (err, dateRes) => {
if (err) {
console.log(err);
res.status(400).send(err);
return;
}
// Change the upload status from 'uploading' to 'waiting'
dbFunctions.updateUploadStatus(dbClient, uploadID, 'waiting', (err, statusRes) => {
if (err) {
console.log(err);
res.status(400).send(err);
return;
}
res.send(uploadID);
});
});
});
/**
* If a step in the upload process failed, cancel the entire process and delete all associated records from the database
*/
app.post('/cancelUpload', (req, res) => {
if (!req.body.uploadID) {
res.status(400).send('Unreadable upload ID.');
return;
}
const uploadID = req.body.uploadID;
dbFunctions.deleteUpload(dbClient, uploadID, (err, dbRes) => {
if (err) {
console.log(err);
res.status(400).send(err);
return;
}
res.send('Deleted record with ID: ' + uploadID);
});
});
/**
* Render the page indicating a successful upload
*/
app.get('/success', (req, res) => {
const uploadID = req.query.uploadid;
if (!uploadID) {
res.render('index');
return;
}
res.render('success', { uploadID: uploadID });
});
/**
* Return all information on a single upload
*/
app.post('/getUploadInformation', (req, res) => {
if (!req.body.uploadID) {
res.status(400).send('Unreadable upload ID.');
return;
}
const uploadID = req.body.uploadID;
// Pull information from uploads table
dbFunctions.getUploadInformation(dbClient, uploadID, (err, uploadRes) => {
if (err) {
console.log(err);
res.status(400).send(err);
return;
}
if (uploadRes.rows.length === 0) {
res.status(400).send('No uploads match that ID.');
return;
}
const uploadDt = uploadRes.rows[0].datetime;
const deviceID = uploadRes.rows[0].device_id;
const maxVelocity = uploadRes.rows[0].max_velocity;
const nickname = uploadRes.rows[0].nickname;
// Pull information from reference_points table
dbFunctions.getReferencePoints(dbClient, uploadID, (err, referenceRes) => {
if (err) {
console.log(err);
res.status(400).send(err);
return;
}
const referencePoints = [];
referenceRes.rows.forEach(row => {
referencePoints.push({ lat: row.lat, lng: row.lng, dt: row.datetime });
});
// Pull information from snapshots table
dbFunctions.getSnapshotCount(dbClient, uploadID, async (err, snapshotRes) => {
if (err) {
console.log(err);
res.status(400).send(err);
return;
}
const snapshotCount = snapshotRes.rows[0].count;
// Bundle requested information into JSON object and return it
const information = {
datetime: uploadDt,
referencePoints: referencePoints,
snapshotCount: snapshotCount,
deviceID: deviceID,
maxVelocity: maxVelocity,
nickname: nickname
};
res.json(information);
});
});
});
});
/**
* Return timestamps of first and last snapshot
*/
app.post('/getFirstLastSnapshotTimestamps', (req, res) => {
if (!req.body.uploadID) {
res.status(400).send('Unreadable upload ID.');
return;
}
const uploadID = req.body.uploadID;
// Get timestmap of first snapshot
dbFunctions.getFirstSnapshotTimestamp(dbClient, uploadID, (err, startRes) => {
if (err) {
console.log(err);
res.status(400).send(err);
return;
}
if (startRes.rows.length === 0) {
res.status(400).send('No uploads match that ID.');
return;
}
const startDt = startRes.rows[0].datetime;
// Get timestamp of last snapshot
dbFunctions.getLastSnapshotTimestamp(dbClient, uploadID, (err, endRes) => {
if (err) {
console.log(err);
res.status(400).send(err);
return;
}
const endDt = endRes.rows[0].datetime;
// Bundle requested information into JSON object and return it
const information = {
startDatetime: startDt,
endDatetime: endDt
};
res.json(information);
});
});
});
/**
* Return all processed positions associated with a given upload ID
*/
app.post('/getPositions', (req, res) => {
if (!req.body.uploadID) {
res.status(400).send('Unreadable upload ID.');
return;
}
const uploadID = req.body.uploadID;
dbFunctions.getPositions(dbClient, uploadID, (err, positions) => {
if (err) {
console.log(err);
res.status(400).send(err);
return;
}
res.json({positions: positions});
});
});
/**
* Render the internal flash page.
*/
app.get('/flash', (req, res) => {
res.render('flash');
});
/**
* Render the privacy policy page.
*/
app.get('/privacy', (req, res) => {
res.render('privacy');
});
/**
* Render the animation page.
*/
app.get('/animate', (req, res) => {
res.render('animate');
});
/**
* Render the accelerometer page.
*/
app.get('/accelerometer', (req, res) => {
res.render('accelerometer');
});
};