blob: 8d51d2b56a8975706ab238011f7c7216c2a1b868 [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);
38 res.send(contactDetails);
39});
40
Misha Krieger-Raynauld105b85b2022-11-05 12:27:53 -040041contactsRouter.put('/:contactId', (req, res) => {
simon94fe53e2022-11-10 12:51:58 -050042 const accountId = res.locals.accountId;
43 const contactId = req.params.contactId;
44
45 jamid.addContact(accountId, contactId);
46
47 const contactDetails = jamid.getContactDetails(accountId, contactId);
48 res.send(contactDetails);
Misha Krieger-Raynauld105b85b2022-11-05 12:27:53 -040049});
50
Misha Krieger-Raynauldbfed1732022-11-01 20:49:35 -040051contactsRouter.delete('/:contactId', (req, res) => {
52 jamid.removeContact(res.locals.accountId, req.params.contactId);
53 res.sendStatus(HttpStatusCode.NoContent);
54});
55
56contactsRouter.post('/:contactId/block', (req, res) => {
simon5da8ca62022-11-09 15:21:25 -050057 jamid.blockContact(res.locals.accountId, req.params.contactId);
Misha Krieger-Raynauldbfed1732022-11-01 20:49:35 -040058 res.sendStatus(HttpStatusCode.NoContent);
59});