blob: 96cd7ce2cc769bbebe11867096e3a20737492210 [file] [log] [blame]
Misha Krieger-Raynauld7f959332022-11-04 15:12:53 -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 */
18import { Router } from 'express';
Misha Krieger-Raynauldcb11bba2022-11-11 18:08:33 -050019import { HttpStatusCode } from 'jami-web-common';
Misha Krieger-Raynauld7f959332022-11-04 15:12:53 -040020import { Container } from 'typedi';
21
22import { Jamid } from '../jamid/jamid.js';
23import { authenticateToken } from '../middleware/auth.js';
24
25const jamid = Container.get(Jamid);
26
27export const callRouter = Router();
28
29callRouter.use(authenticateToken);
30
31callRouter.get('/', (_req, res) => {
32 const callIds = jamid.getCallIds(res.locals.accountId);
33 res.send(callIds);
34});
35
36callRouter.get('/:callId', (req, res) => {
37 const callDetails = jamid.getCallDetails(res.locals.accountId, req.params.callId);
Misha Krieger-Raynauldcb11bba2022-11-11 18:08:33 -050038
39 if (Object.keys(callDetails).length === 0) {
40 res.status(HttpStatusCode.NotFound).send('No such call found');
41 return;
42 }
43
Misha Krieger-Raynauld7f959332022-11-04 15:12:53 -040044 res.send(callDetails);
45});