blob: 8e0e2bcd47475be1d2e20e106d13709b5587fbbc [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) => {
42 jamid.addContact(res.locals.accountId, req.params.contactId);
43 res.sendStatus(HttpStatusCode.NoContent);
44});
45
Misha Krieger-Raynauldbfed1732022-11-01 20:49:35 -040046contactsRouter.delete('/:contactId', (req, res) => {
47 jamid.removeContact(res.locals.accountId, req.params.contactId);
48 res.sendStatus(HttpStatusCode.NoContent);
49});
50
51contactsRouter.post('/:contactId/block', (req, res) => {
52 jamid.removeContact(res.locals.accountId, req.params.contactId);
53 res.sendStatus(HttpStatusCode.NoContent);
54});