blob: c870f831b86a7b4d137a270a050aa982bed5bf6c [file] [log] [blame]
Misha Krieger-Raynauld242560f2022-10-16 19:59:58 -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 */
Charlieb62c6782022-10-30 15:14:56 -040018import { Request, Router } from 'express';
Misha Krieger-Raynauld153a1482022-11-05 12:00:41 -040019import asyncHandler from 'express-async-handler';
Charlieb62c6782022-10-30 15:14:56 -040020import { ParamsDictionary } from 'express-serve-static-core';
21import { AccountDetails, HttpStatusCode } from 'jami-web-common';
Misha Krieger-Raynauld242560f2022-10-16 19:59:58 -040022import { Container } from 'typedi';
23
Misha Krieger-Raynauldaddd6fe2022-10-22 12:46:04 -040024import { Jamid } from '../jamid/jamid.js';
Misha Krieger-Raynauld242560f2022-10-16 19:59:58 -040025import { authenticateToken } from '../middleware/auth.js';
26
Charlieb62c6782022-10-30 15:14:56 -040027interface SendAccountTextMessageApi {
28 from?: string;
29 to?: string;
30 type?: string;
31 data?: string;
32}
33
Misha Krieger-Raynauld242560f2022-10-16 19:59:58 -040034const jamid = Container.get(Jamid);
35
36export const accountRouter = Router();
37
Misha Krieger-Raynauldb6f1c322022-10-23 20:42:57 -040038accountRouter.use(authenticateToken);
39
40// TODO: If tokens can be generated on one daemon and used on another (transferrable between daemons),
41// then add middleware to check that the currently logged-in accountId is stored in this daemon instance
42
Misha Krieger-Raynauld153a1482022-11-05 12:00:41 -040043// TODO: Do we really need this route to return the default moderators?
44// It would be cleaner just to GET /default-moderators for this
45accountRouter.get(
46 '/',
47 asyncHandler(async (_req, res) => {
48 const accountId = res.locals.accountId;
Misha Krieger-Raynauldb6f1c322022-10-23 20:42:57 -040049
Misha Krieger-Raynauld153a1482022-11-05 12:00:41 -040050 // Add usernames for default moderators
51 const defaultModeratorUris = jamid.getDefaultModeratorUris(accountId);
52 const namedDefaultModerators = [];
53 for (const defaultModeratorUri of defaultModeratorUris) {
54 const { username } = await jamid.lookupAddress(defaultModeratorUri, accountId);
55 namedDefaultModerators.push({
56 uri: defaultModeratorUri,
57 registeredName: username,
58 });
59 }
60
61 res.json({
62 id: accountId,
63 details: jamid.getAccountDetails(accountId),
64 volatileDetails: jamid.getVolatileAccountDetails(accountId),
65 defaultModerators: namedDefaultModerators,
66 devices: jamid.getDevices(accountId),
67 });
68 })
69);
Misha Krieger-Raynauld242560f2022-10-16 19:59:58 -040070
Misha Krieger-Raynauldbfed1732022-11-01 20:49:35 -040071accountRouter.patch('/', (req, res) => {
Misha Krieger-Raynauldb6f1c322022-10-23 20:42:57 -040072 const accountId = res.locals.accountId;
73 const currentAccountDetails = jamid.getAccountDetails(accountId);
74 const newAccountDetails: AccountDetails = { ...currentAccountDetails, ...req.body };
75 jamid.setAccountDetails(res.locals.accountId, newAccountDetails);
Misha Krieger-Raynauldbfed1732022-11-01 20:49:35 -040076 res.sendStatus(HttpStatusCode.NoContent);
Misha Krieger-Raynauld242560f2022-10-16 19:59:58 -040077});
Charlieb62c6782022-10-30 15:14:56 -040078
Misha Krieger-Raynauld8a381da2022-11-03 17:37:51 -040079accountRouter.post(
80 '/send-account-message',
81 (req: Request<ParamsDictionary, string, SendAccountTextMessageApi>, res) => {
82 const { from, to, type, data } = req.body;
83 if (!from || !to || !type || !data) {
84 res.status(HttpStatusCode.BadRequest).send('Missing arguments in request');
85 return;
86 }
87
88 jamid.sendAccountTextMessage(from, to, type, data);
89 res.end();
Charlieb62c6782022-10-30 15:14:56 -040090 }
Misha Krieger-Raynauld8a381da2022-11-03 17:37:51 -040091);