blob: 634256ac24653c025229c9c29272815f4baff8c3 [file] [log] [blame]
Misha Krieger-Raynauld708a9632022-10-14 22:55:59 -04001/*
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 */
Misha Krieger-Raynauld242560f2022-10-16 19:59:58 -040018import express, { json, NextFunction, Request, Response } from 'express';
Misha Krieger-Raynauld8ef48402022-10-23 21:41:51 -040019import helmet from 'helmet';
Misha Krieger-Raynauld2f5d1ce2022-10-23 21:13:33 -040020import { HttpStatusCode } from 'jami-web-common';
Misha Krieger-Raynauld708a9632022-10-14 22:55:59 -040021import log from 'loglevel';
22import { Service } from 'typedi';
23
Misha Krieger-Raynauld242560f2022-10-16 19:59:58 -040024import { accountRouter } from './routers/account-router.js';
25import { authRouter } from './routers/auth-router.js';
Misha Krieger-Raynauldbfed1732022-11-01 20:49:35 -040026import { contactsRouter } from './routers/contacts-router.js';
Misha Krieger-Raynauld6f9c7ae2022-10-28 11:41:45 -040027import { nameserverRouter } from './routers/nameserver-router.js';
Misha Krieger-Raynauld708a9632022-10-14 22:55:59 -040028
29@Service()
Issam E. Maghnif796a092022-10-09 20:25:26 +000030export class App {
Misha Krieger-Raynauld708a9632022-10-14 22:55:59 -040031 async build() {
32 const app = express();
33
Misha Krieger-Raynauld8ef48402022-10-23 21:41:51 -040034 // Setup middleware
35 app.use(helmet());
Misha Krieger-Raynauld242560f2022-10-16 19:59:58 -040036 app.use(json());
37
Misha Krieger-Raynauld708a9632022-10-14 22:55:59 -040038 // Setup routing
Misha Krieger-Raynauld708a9632022-10-14 22:55:59 -040039 app.use('/auth', authRouter);
Misha Krieger-Raynauld242560f2022-10-16 19:59:58 -040040 app.use('/account', accountRouter);
Misha Krieger-Raynauldbfed1732022-11-01 20:49:35 -040041 app.use('/contacts', contactsRouter);
Misha Krieger-Raynauld6f9c7ae2022-10-28 11:41:45 -040042 app.use('/ns', nameserverRouter);
Misha Krieger-Raynauld708a9632022-10-14 22:55:59 -040043
44 // Setup 404 error handling
45 app.use((_req, res) => {
Misha Krieger-Raynauld2f5d1ce2022-10-23 21:13:33 -040046 res.sendStatus(HttpStatusCode.NotFound);
Misha Krieger-Raynauld708a9632022-10-14 22:55:59 -040047 });
48
49 // Setup internal error handling
50 app.use((err: Error, _req: Request, res: Response, _next: NextFunction) => {
51 log.error(err);
Misha Krieger-Raynauld2f5d1ce2022-10-23 21:13:33 -040052 res.status(HttpStatusCode.InternalServerError).send(err.message);
Misha Krieger-Raynauld708a9632022-10-14 22:55:59 -040053 });
54
55 return app;
56 }
57}