blob: 835bf66497de0351e3dbb291a969ed4999636b61 [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';
19import { Container } from 'typedi';
20
21import { Jamid } from '../jamid/jamid.js';
22import { authenticateToken } from '../middleware/auth.js';
23
24const jamid = Container.get(Jamid);
25
26export const callRouter = Router();
27
28callRouter.use(authenticateToken);
29
30callRouter.get('/', (_req, res) => {
31 const callIds = jamid.getCallIds(res.locals.accountId);
32 res.send(callIds);
33});
34
35callRouter.get('/:callId', (req, res) => {
36 const callDetails = jamid.getCallDetails(res.locals.accountId, req.params.callId);
37 res.send(callDetails);
38});