blob: 661693ff81108bb5fef6f6d4d0593402dd43530d [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. Maghni0ef4a362022-10-05 23:20:16 +000026import { Ws } from './ws.js';
27
28log.setLevel(process.env.NODE_ENV === 'production' ? 'error' : 'trace');
29
Misha Krieger-Raynauld708a9632022-10-14 22:55:59 -040030const port: string | number = 5000;
31
32const app = await Container.get(App).build();
Issam E. Maghni0ef4a362022-10-05 23:20:16 +000033const wss = await Container.get(Ws).build();
34
Misha Krieger-Raynauld708a9632022-10-14 22:55:59 -040035const server = createServer();
36
Issam E. Maghni0ef4a362022-10-05 23:20:16 +000037server.on('request', app);
38server.on('upgrade', wss);
Issam E. Maghni0ef4a362022-10-05 23:20:16 +000039
Misha Krieger-Raynauld708a9632022-10-14 22:55:59 -040040server.listen(port);
41server.on('error', onError);
42server.on('listening', onListening);
Issam E. Maghni0ef4a362022-10-05 23:20:16 +000043
Misha Krieger-Raynauld708a9632022-10-14 22:55:59 -040044function onError(error: NodeJS.ErrnoException) {
45 if (error.syscall !== 'listen') {
46 throw error;
47 }
48
49 const bind = typeof port === 'string' ? `Pipe ${port}` : `Port ${port}`;
50
51 switch (error.code) {
52 case 'EACCESS':
53 log.error(bind + ' requires elevated privileges');
54 process.exit(1);
55 break;
56 case 'EADDRINUSE':
57 log.error(bind + ' is already in use');
58 process.exit(1);
59 break;
60 default:
61 throw error;
62 }
63}
64
65function onListening() {
66 const address = server.address();
67 const bind = typeof address === 'string' ? `pipe ${address}` : `port ${address?.port}`;
68 log.debug('Listening on ' + bind);
69}