blob: d757d529d8295d1270a127ed3258c2be1ea4494a [file] [log] [blame]
Misha Krieger-Raynauldbfed1732022-11-01 20:49:35 -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 { HttpStatusCode } from 'jami-web-common';
20import { 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 contactsRouter = Router();
28
29contactsRouter.use(authenticateToken);
30
31contactsRouter.get('/', (_req, res) => {
32 const contacts = jamid.getContacts(res.locals.accountId);
33 res.send(contacts);
34});
35
36contactsRouter.get('/:contactId', (req, res) => {
37 const contactDetails = jamid.getContactDetails(res.locals.accountId, req.params.contactId);
Misha Krieger-Raynauldcb11bba2022-11-11 18:08:33 -050038
39 if (Object.keys(contactDetails).length === 0) {
40 res.status(HttpStatusCode.NotFound).send('No such contact found');
41 return;
42 }
43
Misha Krieger-Raynauldbfed1732022-11-01 20:49:35 -040044 res.send(contactDetails);
45});
46
Misha Krieger-Raynauld105b85b2022-11-05 12:27:53 -040047contactsRouter.put('/:contactId', (req, res) => {
simon94fe53e2022-11-10 12:51:58 -050048 const accountId = res.locals.accountId;
49 const contactId = req.params.contactId;
50
51 jamid.addContact(accountId, contactId);
52
53 const contactDetails = jamid.getContactDetails(accountId, contactId);
Misha Krieger-Raynauldcb11bba2022-11-11 18:08:33 -050054 if (Object.keys(contactDetails).length === 0) {
55 res.status(HttpStatusCode.NotFound).send('No such contact found');
56 return;
57 }
58
simon94fe53e2022-11-10 12:51:58 -050059 res.send(contactDetails);
Misha Krieger-Raynauld105b85b2022-11-05 12:27:53 -040060});
61
Misha Krieger-Raynauldbfed1732022-11-01 20:49:35 -040062contactsRouter.delete('/:contactId', (req, res) => {
63 jamid.removeContact(res.locals.accountId, req.params.contactId);
64 res.sendStatus(HttpStatusCode.NoContent);
65});
66
67contactsRouter.post('/:contactId/block', (req, res) => {
simon5da8ca62022-11-09 15:21:25 -050068 jamid.blockContact(res.locals.accountId, req.params.contactId);
Misha Krieger-Raynauldbfed1732022-11-01 20:49:35 -040069 res.sendStatus(HttpStatusCode.NoContent);
70});