blob: 3c40b28200cdad1192727071fff26c820aa55de4 [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
20import { createServer } from 'node:http';
21
22import log from 'loglevel';
23import { Container } from 'typedi';
24
Misha Krieger-Raynauld708a9632022-10-14 22:55:59 -040025import { App } from './app.js';
Issam E. Maghnif796a092022-10-09 20:25:26 +000026import { Creds } from './creds.js';
Issam E. Maghni0ef4a362022-10-05 23:20:16 +000027import { Ws } from './ws.js';
28
29log.setLevel(process.env.NODE_ENV === 'production' ? 'error' : 'trace');
30
Misha Krieger-Raynauld708a9632022-10-14 22:55:59 -040031const port: string | number = 5000;
32
Issam E. Maghnif796a092022-10-09 20:25:26 +000033await Container.get(Creds).build();
Misha Krieger-Raynauld708a9632022-10-14 22:55:59 -040034const app = await Container.get(App).build();
Issam E. Maghni0ef4a362022-10-05 23:20:16 +000035const wss = await Container.get(Ws).build();
36
Misha Krieger-Raynauld708a9632022-10-14 22:55:59 -040037const server = createServer();
38
Issam E. Maghni0ef4a362022-10-05 23:20:16 +000039server.on('request', app);
40server.on('upgrade', wss);
Issam E. Maghni0ef4a362022-10-05 23:20:16 +000041
Misha Krieger-Raynauld708a9632022-10-14 22:55:59 -040042server.listen(port);
43server.on('error', onError);
44server.on('listening', onListening);
Issam E. Maghni0ef4a362022-10-05 23:20:16 +000045
Misha Krieger-Raynauld708a9632022-10-14 22:55:59 -040046function onError(error: NodeJS.ErrnoException) {
47 if (error.syscall !== 'listen') {
48 throw error;
49 }
50
51 const bind = typeof port === 'string' ? `Pipe ${port}` : `Port ${port}`;
52
53 switch (error.code) {
54 case 'EACCESS':
55 log.error(bind + ' requires elevated privileges');
56 process.exit(1);
57 break;
58 case 'EADDRINUSE':
59 log.error(bind + ' is already in use');
60 process.exit(1);
61 break;
62 default:
63 throw error;
64 }
65}
66
67function onListening() {
68 const address = server.address();
69 const bind = typeof address === 'string' ? `pipe ${address}` : `port ${address?.port}`;
70 log.debug('Listening on ' + bind);
71}