blob: d00f78b8aa695cb16b63842a9afd9241a7e20248 [file] [log] [blame]
Issam E. Maghni0ef4a362022-10-05 23:20:16 +00001/*
2 * Copyright (C) 2022 Savoir-faire Linux Inc.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU Affero General Public License as
6 * published by the Free Software Foundation; either version 3 of the
7 * License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU Affero General Public License for more details.
13 *
14 * You should have received a copy of the GNU Affero General Public
15 * License along with this program. If not, see
16 * <https://www.gnu.org/licenses/>.
17 */
18import 'reflect-metadata';
19
simon7d4386c2022-10-26 17:47:59 -040020import * as dotenv from 'dotenv';
21dotenv.config();
22
Issam E. Maghni0ef4a362022-10-05 23:20:16 +000023import { createServer } from 'node:http';
24
25import log from 'loglevel';
26import { Container } from 'typedi';
27
Misha Krieger-Raynauld708a9632022-10-14 22:55:59 -040028import { App } from './app.js';
Issam E. Maghnif796a092022-10-09 20:25:26 +000029import { Creds } from './creds.js';
Misha Krieger-Raynauld62a0da92022-10-22 13:46:59 -040030import { Jamid } from './jamid/jamid.js';
Misha Krieger-Raynauld242560f2022-10-16 19:59:58 -040031import { Vault } from './vault.js';
Issam E. Maghni0ef4a362022-10-05 23:20:16 +000032import { Ws } from './ws.js';
33
34log.setLevel(process.env.NODE_ENV === 'production' ? 'error' : 'trace');
35
Misha Krieger-Raynauld708a9632022-10-14 22:55:59 -040036const port: string | number = 5000;
37
Issam E. Maghnif796a092022-10-09 20:25:26 +000038await Container.get(Creds).build();
Misha Krieger-Raynauld242560f2022-10-16 19:59:58 -040039await Container.get(Vault).build();
Misha Krieger-Raynauld62a0da92022-10-22 13:46:59 -040040const jamid = Container.get(Jamid);
Misha Krieger-Raynauld708a9632022-10-14 22:55:59 -040041const app = await Container.get(App).build();
Issam E. Maghni0ef4a362022-10-05 23:20:16 +000042const wss = await Container.get(Ws).build();
43
Misha Krieger-Raynauld708a9632022-10-14 22:55:59 -040044const server = createServer();
45
Issam E. Maghni0ef4a362022-10-05 23:20:16 +000046server.on('request', app);
47server.on('upgrade', wss);
Issam E. Maghni0ef4a362022-10-05 23:20:16 +000048
Misha Krieger-Raynauld708a9632022-10-14 22:55:59 -040049server.listen(port);
50server.on('error', onError);
51server.on('listening', onListening);
Issam E. Maghni0ef4a362022-10-05 23:20:16 +000052
Misha Krieger-Raynauld62a0da92022-10-22 13:46:59 -040053process.once('SIGTERM', shutdown);
54process.once('SIGINT', shutdown);
55process.once('SIGUSR2', shutdown);
56
Misha Krieger-Raynauld708a9632022-10-14 22:55:59 -040057function onError(error: NodeJS.ErrnoException) {
58 if (error.syscall !== 'listen') {
59 throw error;
60 }
61
62 const bind = typeof port === 'string' ? `Pipe ${port}` : `Port ${port}`;
63
64 switch (error.code) {
65 case 'EACCESS':
66 log.error(bind + ' requires elevated privileges');
67 process.exit(1);
68 break;
69 case 'EADDRINUSE':
70 log.error(bind + ' is already in use');
71 process.exit(1);
72 break;
73 default:
74 throw error;
75 }
76}
77
78function onListening() {
79 const address = server.address();
80 const bind = typeof address === 'string' ? `pipe ${address}` : `port ${address?.port}`;
81 log.debug('Listening on ' + bind);
82}
Misha Krieger-Raynauld62a0da92022-10-22 13:46:59 -040083
84function shutdown(signal: NodeJS.Signals) {
85 log.debug(`${signal} received: shutting down server`);
86 jamid.stop();
87 server.close(() => {
88 log.debug('Server shut down');
89 // Needed in order to actually exit the process as its shutdown is blocked by something else
90 process.exit();
91 });
92}