blob: 85e6b10b0ddbe92785b21f829273e80b531a6a0b [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-Raynauld2f5d1ce2022-10-23 21:13:33 -040019import { HttpStatusCode } from 'jami-web-common';
Misha Krieger-Raynauld708a9632022-10-14 22:55:59 -040020import log from 'loglevel';
21import { Service } from 'typedi';
22
Misha Krieger-Raynauld242560f2022-10-16 19:59:58 -040023import { accountRouter } from './routers/account-router.js';
24import { authRouter } from './routers/auth-router.js';
Misha Krieger-Raynauld708a9632022-10-14 22:55:59 -040025
26@Service()
Issam E. Maghnif796a092022-10-09 20:25:26 +000027export class App {
Misha Krieger-Raynauld708a9632022-10-14 22:55:59 -040028 async build() {
29 const app = express();
30
Misha Krieger-Raynauld242560f2022-10-16 19:59:58 -040031 app.use(json());
32
Misha Krieger-Raynauld708a9632022-10-14 22:55:59 -040033 // Setup routing
Misha Krieger-Raynauld708a9632022-10-14 22:55:59 -040034 app.use('/auth', authRouter);
Misha Krieger-Raynauld242560f2022-10-16 19:59:58 -040035 app.use('/account', accountRouter);
Misha Krieger-Raynauld708a9632022-10-14 22:55:59 -040036
37 // Setup 404 error handling
38 app.use((_req, res) => {
Misha Krieger-Raynauld2f5d1ce2022-10-23 21:13:33 -040039 res.sendStatus(HttpStatusCode.NotFound);
Misha Krieger-Raynauld708a9632022-10-14 22:55:59 -040040 });
41
42 // Setup internal error handling
43 app.use((err: Error, _req: Request, res: Response, _next: NextFunction) => {
44 log.error(err);
Misha Krieger-Raynauld2f5d1ce2022-10-23 21:13:33 -040045 res.status(HttpStatusCode.InternalServerError).send(err.message);
Misha Krieger-Raynauld708a9632022-10-14 22:55:59 -040046 });
47
48 return app;
49 }
50}