forked from OpenDroneMap/ClusterODM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
76 lines (65 loc) · 3.01 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
/**
* nodeodm-proxy - A reverse proxy, load balancer and task tracker for NodeODM
* Copyright (C) 2018-present MasseranoLabs LLC
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
const config = require('./config');
const admincli = require('./admincli');
const adminweb = require('./adminweb');
const logger = require('./libs/logger');
const package_info = require('./package_info');
const nodes = require('./libs/nodes');
const proxy = require('./libs/proxy');
const floodMonitor = require('./libs/floodMonitor');
const routetable = require('./libs/routetable');
(async function(){
if (config.debug) logger.warn("Running in debug mode");
logger.info(package_info.name + " " + package_info.version + " started with PID " + process.pid);
logger.debug("Debug messages are ON");
if (config.admin_cli_port !== 0) admincli.create({port: config.admin_cli_port, password: config.admin_pass});
if (config.admin_web_port !== 0) adminweb.create({port: config.admin_web_port, password: config.admin_pass});
const cloudProvider = (require('./libs/cloudProvider')).initialize(config.cloud_provider);
await (require('./libs/asrProvider')).initialize(config.asr);
await nodes.initialize();
floodMonitor.initialize();
const proxies = await proxy.initialize(cloudProvider);
const gracefulShutdown = async() => {
await nodes.cleanup();
await routetable.cleanup();
logger.info("Bye!");
process.exit(0);
};
// listen for TERM signal .e.g. kill
process.on('SIGTERM', gracefulShutdown);
// listen for INT signal e.g. Ctrl-C
process.on('SIGINT', gracefulShutdown);
process.on('uncaughtException', err => {
logger.error(`Uncaught Exception: ${err.stack}`);
});
// Start
proxies.forEach(proxy => {
// Do not start insecure server if SSL is enabled and a secure port parameter
// is not specified (that implies we want both secure and non secure)
if (config.use_ssl && !config.secure_port && !proxy.secure) return;
let port = config.port;
// If we specified a secure port, it means we need to bind the secure service
// to this port
if (config.use_ssl && config.secure_port && proxy.secure){
port = config.secure_port;
}
logger.info(`Starting ${proxy.secure ? 'https' : 'http'} proxy on ${port}`);
proxy.server.listen(port);
});
})();