-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbootstrap.js
831 lines (721 loc) · 20.2 KB
/
bootstrap.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
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
/**
* @file
* Bootstrap the application to allow self-updating.
*/
'use strict';
const debug = require('debug')('bibbox:bootstrap');
const fork = require('child_process').fork;
const spawn = require('child_process').spawn;
const UrlParser = require('url');
const queryString = require('querystring');
const config = require(__dirname + '/config.json');
const Q = require('q');
const fs = require('fs');
const https = require('https');
const rfid_debug = process.env.RFID_DEBUG || false;
let shutdown = false;
const Bootstrap = function Bootstrap() {
let self = this;
this.bibbox = null;
this.rfidApp = null;
this.alive = 0;
const options = {
key: fs.readFileSync(__dirname + '/' + config.bootstrap.ssl.key),
cert: fs.readFileSync(__dirname + '/' + config.bootstrap.ssl.cert)
};
https.createServer(options, function (req, res) {
let ip = self.getRemoteIp(req);
let url = req.url;
if (config.bootstrap.allowed.indexOf(ip) > -1) {
debug('Requested url: "' + url + '" from: "' + ip + '" allowed');
res.setHeader('Content-Type', 'application/json');
res.writeHead(200);
url = UrlParser.parse(url);
// Check if this is a post request, if it is parse the request an wait for
// the data.
if (req.method === 'POST') {
self.parseBody(req).then(function (body) {
self.handleRequest(req, res, url, body);
}, function (err) {
res.write(JSON.stringify({
error: err
}));
res.end();
});
}
else {
self.handleRequest(req, res, url);
}
}
else {
debug('Requested url: "' + url + '" from: "' + ip + '" denied');
res.writeHead(401);
res.write('Unauthorized');
res.end();
}
}).listen(config.bootstrap.port);
debug('Https server started at: ' + config.bootstrap.port);
};
// Extend the object with event emitter.
const eventEmitter = require('events').EventEmitter;
const util = require('util');
util.inherits(Bootstrap, eventEmitter);
/**
* Handler for the request.
*
* This is used after the body have been parsed into JSON, if it was a post
* request.
*
* @param {object} req
* HTTP request object.
* @param {object} res
* HTTP response object.
* @param {string} url
* The URL the request came in on.
* @param {object} body
* The body pay-load as JSON, if post request else undefined.
*/
Bootstrap.prototype.handleRequest = function handleRequest(req, res, url, body) {
let self = this;
let query = null;
body = body || false;
/**
* Restart Node.js application.
*/
switch (url.pathname) {
case '/restart/application':
self.restartApp().then(function () {
res.write(JSON.stringify({
pid: self.bibbox.pid,
status: 'running'
}));
res.end();
}, function (err) {
res.write(JSON.stringify({
pid: 0,
status: 'stopped',
error: err.message
}));
res.end();
});
break;
/**
* Send reload event to the UI.
*/
case '/restart/ui':
self.bibbox.send({
command: 'reloadUi'
});
res.write(JSON.stringify({
status: 'Reload sent'
}));
res.end();
break;
/**
* Send reboot computer.
*/
case '/reboot':
spawn('/sbin/reboot');
res.write(JSON.stringify({
status: 'Reboot started'
}));
res.end();
break;
/**
* Send out of order.
*/
case '/outoforder':
self.bibbox.send({
command: 'outOfOrder'
});
res.write(JSON.stringify({
status: 'Out of order sent.'
}));
res.end();
break;
case '/clearprinter':
spawn('cancel', ['-a', '-x']);
res.write(JSON.stringify({
status: 'Clear printer queue command sent.'
}));
res.end();
break;
/**
* Update based on pull from GitHub.
*
* @query version
* String with the tag to checkout.
*/
case '/update/pull':
query = JSON.parse(JSON.stringify(queryString.parse(url.query)));
if (query.hasOwnProperty('version')) {
self.updateApp(query.version).then(function () {
res.write(JSON.stringify({
status: 'Restating the application'
}));
res.end();
// Restart the application to allow supervisor to reboot the
// application.
process.kill(process.pid, 'SIGTERM');
}, function (err) {
res.write(JSON.stringify({
error: err.message
}));
res.end();
});
}
else {
res.write(JSON.stringify({
error: 'Missing version in query string'
}));
res.end();
}
break;
/**
* Update based on release file.
*
* @query url
* String with URL to release file on github.
*/
case '/update/download':
query = JSON.parse(JSON.stringify(queryString.parse(url.query)));
if (query.hasOwnProperty('url')) {
const urlParser = require('url');
const path = require('path');
const dest = __dirname + '/../' + path.basename(urlParser.parse(query.url).pathname);
self.downloadFile(query.url, dest).then(function (file) {
// Try to detect version from the filename.
const regEx = /v(?:0|[1-9]\d*)\.(?:0|[1-9]\d*)\.(?:0|[1-9]\d*)(?:-[\da-z\-]+)?/;
if (!regEx.test(path.basename(file))) {
let msg = 'Version not found in filename: ' + path.basename(file);
debug('Err: ' + msg);
res.write(JSON.stringify({
error: msg
}));
res.end();
return;
}
let version = regEx.exec(path.basename(file))[0];
let dir = __dirname.substr(0, __dirname.lastIndexOf('/')) + '/' + version;
debug('Version to update to: ' + version);
debug('File downloaded to: ' + file);
debug('Destination: ' + dir);
// Check that new dir exists.
if (!fs.existsSync(dir)) {
fs.mkdirSync(dir);
}
// Unpack file
const tar = spawn('tar', ['-zxf', file, '-C', dir]);
tar.stderr.on('data', function (data) {
debug('Err unpacking file: ' + data.toString());
res.write(JSON.stringify({
error: data.toString()
}));
res.end();
});
tar.on('exit', function (code) {
if (code !== 0) {
// Not clean exit, so handled in standard error function above.
return;
}
// Update symlink.
debug('Update symlink.');
// File unpacked, so clean up.
fs.unlinkSync(file);
let target = __dirname;
target = target.substr(0, target.lastIndexOf('/')) + '/bibbox';
fs.unlinkSync(target);
fs.symlink(dir, target, function (err, data) {
if (err) {
res.write(JSON.stringify({
error: err.message
}));
res.end();
}
else {
// Move files folder with config and translation.
const src = __dirname + '/files';
debug('Copy files from: ' + src + ' to: ' + dir);
let cp = spawn('cp', ['-rfp', src, dir]);
cp.stderr.on('data', function (data) {
debug('Err copying file: ' + data.toString());
res.write(JSON.stringify({
error: data.toString()
}));
res.end();
});
cp.on('exit', function (code) {
if (code === 0) {
res.write(JSON.stringify({
status: 'Restating the application'
}));
res.end();
// Restart the application to allow supervisor to reboot the
// application. The timeout is to allow the "res" transmission
// to be completed before restart.
setTimeout(function () {
// Trigger shutdown process with right signal, so clean up is executed.
process.kill(process.pid, 'SIGTERM');
}, 500);
}
});
}
});
});
},
function (err) {
res.write(JSON.stringify({
status: 'error',
error: err.message
}));
res.end();
});
}
else {
res.write(JSON.stringify({
error: 'Missing url in query string'
}));
res.end();
}
break;
/**
* Send update config to bibbox.
*/
case '/config':
self.bibbox.send({
command: 'config',
config: body
});
res.write(JSON.stringify({
status: 'Config sent'
}));
res.end();
break;
/**
* Send update translations to bibbox.
*/
case '/translations':
self.bibbox.send({
command: 'translations',
translations: body
});
res.write(JSON.stringify({
status: 'Config sent'
}));
res.end();
break;
/**
* Alive (last sean and version).
*/
case '/alive':
if (self.bibbox) {
self.getVersion().then(function (version) {
res.write(JSON.stringify({
status: 'running',
pid: self.bibbox.pid,
version: version,
time: Math.round(self.alive / 1000)
}));
res.end();
}, function (err) {
res.write(JSON.stringify({
status: 'running',
pid: self.bibbox.pid,
version: err,
time: Math.round(self.alive / 1000)
}));
res.end();
});
}
else {
res.write(JSON.stringify({
status: 'stopped',
pid: 0,
time: Math.round(self.alive / 1000)
}));
res.end();
}
break;
/**
* Get list of failed offline jobs.
*/
case '/offlineFailedJobs':
self.bibbox.on('message', function offlineFailedJobs(message) {
if (message.hasOwnProperty('offlineFailedJobs')) {
res.write(JSON.stringify({
status: 'running',
jobs: message.offlineFailedJobs
}));
res.end();
self.bibbox.removeListener('message', offlineFailedJobs);
}
if (message.hasOwnProperty('offlineFailedJobsError')) {
res.write(JSON.stringify({
status: 'error',
message: message.offlineFailedJobsError
}));
res.end();
self.bibbox.removeListener('message', offlineFailedJobs);
}
});
self.bibbox.send({
command: 'offlineFailedJobs'
});
break;
/**
* Get offline job counts.
*/
case '/offlineJobCounts':
self.bibbox.on('message', function offlineJobCounts(message) {
if (message.hasOwnProperty('offlineCounts')) {
res.write(JSON.stringify({
status: 'running',
jobs: message.offlineCounts
}));
res.end();
self.bibbox.removeListener('message', offlineJobCounts);
}
if (message.hasOwnProperty('offlineCountsError')) {
res.write(JSON.stringify({
status: 'error',
message: message.offlineCountsError
}));
res.end();
self.bibbox.removeListener('message', offlineJobCounts);
}
});
self.bibbox.send({
command: 'offlineCounts'
});
break;
default:
res.write('Hello World!');
res.end();
break;
}
};
/**
* Down load file over https.
*
* @param {string} url
* Url to download
* @param {string} destination
* Where to download the file.
*
* @return {*|promise}
* Resolves if file is downloaded correctly.
*/
Bootstrap.prototype.downloadFile = function downloadFile(url, destination) {
const request = require('request');
let deferred = Q.defer();
let file = fs.createWriteStream(destination);
file.on('finish', function () {
file.close();
deferred.resolve(destination);
});
request({
followAllRedirects: true,
method: 'get',
url: url
}).on('error', function (err) {
debug('Download error: ' + err.message);
deferred.reject(err);
}).pipe(file);
return deferred.promise;
};
/**
* Parse POST request body.
*
* @param {object} req
* Request object.
*
* @return {*|promise}
* Resolved if parsed else rejected.
*/
Bootstrap.prototype.parseBody = function parseBody(req) {
let deferred = Q.defer();
let body = '';
req.on('data', function (data) {
body += data;
// Too much POST data, kill the connection!
// 1e6 === 1 * Math.pow(10, 6) === 1 * 1000000 ~~~ 1MB
if (body.length > 1e6) {
req.connection.destroy();
deferred.reject('Killed');
}
});
req.on('end', function () {
if (body === '') {
deferred.resolve();
}
else {
deferred.resolve(JSON.parse(body));
}
});
return deferred.promise;
};
/**
* Get remote IP.
*
* Get the IP of the client.
*
* @param {object} req
* The http request.
*
* @return {*}
* The IP as an string.
*/
Bootstrap.prototype.getRemoteIp = function getRemoteIp(req) {
let ip = req.headers['x-forwarded-for'] || req.connection.remoteAddress || req.socket.remoteAddress || req.connection.socket.remoteAddress;
// Take the first ip if this is a proxy list.
if (ip.indexOf(',') !== -1) {
ip = ip.split(',').unshift();
}
return ip;
};
/**
* Get the current version.
*
* @return {*|promise}
* Resolve with version or reject with git output.
*/
Bootstrap.prototype.getVersion = function getVersion() {
let deferred = Q.defer();
let env = process.env;
let git = spawn('git', ['describe', '--exact-match', '--tags'], {env: env});
git.stdout.on('data', function (data) {
let version = data.toString().replace("\n", '');
debug('Version: ' + version);
deferred.resolve(version);
});
git.stderr.on('data', function (data) {
let err = data.toString().replace("\n", '');
debug('Version error: ' + err);
deferred.reject(err);
});
return deferred.promise;
};
/**
* Restart the application.
*
* @return {*|promise}
* Resolves if app have been re-started.
*/
Bootstrap.prototype.restartApp = function restartApp() {
let self = this;
let deferred = Q.defer();
debug('Restart called.');
Q.all([
self.stopApp(),
self.startApp(),
self.stopRFID(),
self.startRFID()
]).then(function () {
deferred.resolve();
}).catch(function (err) {
deferred.reject(err);
});
return deferred.promise;
};
/**
* Start the application as a child process.
*
* @return {*|promise}
* Resolves if app have been started and the old one closed.
*/
Bootstrap.prototype.startApp = function startApp() {
let deferred = Q.defer();
let self = this;
if (shutdown) {
debug('App not started - in shutdown');
deferred.resolve();
}
else {
let app = fork(__dirname + '/app.js', [], { silent: true });
debug('Started new application with pid: ' + app.pid);
// Event handler for startup errors.
app.once('close', function startupError(code) {
debug('Bibbox not started exit code: ' + app.exitCode);
deferred.reject(app.exitCode);
});
app.stdout.on('data', function (data) {
console.log(data.toString());
});
app.stderr.on('data', function (data) {
console.error(data.toString());
});
// Listen for "ready" events.
app.once('message', function (message) {
if (message.hasOwnProperty('ready')) {
app.removeAllListeners('close');
debug('Bibbox is ready with pid: ' + app.pid);
self.bibbox = app;
self.bibbox.on('message', function (message) {
// React to ping events.
if (message.hasOwnProperty('ping')) {
self.alive = message.ping;
}
});
// Restart node app on error.
self.bibbox.on('close', startApp);
deferred.resolve();
}
});
}
return deferred.promise;
};
/**
* Start the RFID application as a new process.
*
* @return {*|promise}
* Resolves if stated.
*/
Bootstrap.prototype.startRFID = function startRFID() {
let deferred = Q.defer();
if (shutdown) {
debug('RFID not started - in shutdown');
deferred.resolve();
}
else if (!rfid_debug) {
let env = process.env;
env.LD_LIBRARY_PATH = '/opt/feig';
let app = spawn('java', ['-jar', __dirname + '/plugins/rfid/device/rfid.jar'], {env: env});
debug('Started new rfid application with pid: ' + app.pid);
// Store ref. to the application.
this.rfidApp = app;
// Restart rfid app on error.
this.rfidApp.on('close', startRFID);
}
else {
debug('RFID not started in DEBUG mode.');
}
deferred.resolve();
return deferred.promise;
};
/**
* Stop the application.
*
* @return {*|promise}
* Resolves if app have been closed.
*/
Bootstrap.prototype.stopApp = function stopApp() {
let deferred = Q.defer();
let self = this;
debug('Stop BibBox');
if (this.bibbox) {
// Remove auto-start event.
this.bibbox.removeAllListeners('close');
// Listen to new close event.
self.bibbox.on('close', function (code) {
debug('Stopped application with pid: ' + self.bibbox.pid + ' and exit code: ' + self.bibbox.exitCode);
// Free memory.
self.bibbox = null;
deferred.resolve();
});
// Kill the application.
self.bibbox.kill('SIGTERM');
}
else {
debug('App not running');
deferred.resolve('Not running.');
}
return deferred.promise;
};
/**
* Stop the RFID application.
*
* @return {*|promise}
* Resolves if app have been closed.
*/
Bootstrap.prototype.stopRFID = function stopRFID() {
let deferred = Q.defer();
let self = this;
debug('Stop RFID');
if (this.rfidApp) {
if (!rfid_debug) {
// Remove auto-start event.
this.rfidApp.removeAllListeners('close');
self.rfidApp.on('close', function (code) {
debug('Stopped RFID application with pid: ' + self.rfidApp.pid + ' and exit code: ' + self.rfidApp.exitCode);
// Free memory.
self.rfidApp = null;
deferred.resolve();
});
self.rfidApp.kill('SIGTERM');
}
else {
debug('RFID not stopped, as we are in DEBUG mode.');
deferred.resolve();
}
}
else {
debug('RFID was not running');
deferred.resolve('Not running');
}
return deferred.promise;
};
/**
* Pull version form git-hub and restart application.
*
* @param {string} version
* The version to update to.
*
* @return {*|promise}
* Resolves it the app is updated.
*/
Bootstrap.prototype.updateApp = function updateApp(version) {
let self = this;
let deferred = Q.defer();
debug('Update called.');
// Update from github.com.
spawn('git', ['fetch']).on('close', function (code) {
// Checkout version.
spawn('git', ['checkout', version]).on('close', function (code) {
// Copy config file.
spawn('cp', ['example.config.json', 'config.json']).on('close', function (code) {
// Restart the application.
self.restartApp().then(function () {
deferred.resolve();
}, function (err) {
deferred.reject(err);
});
});
});
});
return deferred.promise;
};
// Get the show on the road.
const bootstrap = new Bootstrap();
bootstrap.startApp();
bootstrap.startRFID();
/**
* Handle bootstrap process exit and errors.
*
* @param {object} options
* Options to the exits handler.
* @param {error} err
* Error object is error is detected.
*/
function exitHandler(options, err) {
if (!shutdown) {
shutdown = true;
Q.all([
bootstrap.stopApp(),
bootstrap.stopRFID()
]).then(function () {
debug('All process was closed');
process.exit();
}).catch(function (err) {
debug('Not all process was closed');
process.exit();
});
}
}
// Bootstrap app is closing.
process.once('exit', exitHandler);
// Craches supervisor stop.
process.on('SIGTERM', exitHandler);
// Catches ctrl+c event.
process.on('SIGINT', exitHandler);
// Catches uncaught exceptions.
process.on('uncaughtException', exitHandler);