blob: 7bccea7595c468d10bf7aab5337449bfa5309001 [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';
Charlie2bc0d672022-11-04 11:53:44 -040021import { AccountDetails, AccountTextMessage, 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
27const jamid = Container.get(Jamid);
28
29export const accountRouter = Router();
30
Misha Krieger-Raynauldb6f1c322022-10-23 20:42:57 -040031accountRouter.use(authenticateToken);
32
33// TODO: If tokens can be generated on one daemon and used on another (transferrable between daemons),
34// then add middleware to check that the currently logged-in accountId is stored in this daemon instance
35
Misha Krieger-Raynauld153a1482022-11-05 12:00:41 -040036// TODO: Do we really need this route to return the default moderators?
37// It would be cleaner just to GET /default-moderators for this
38accountRouter.get(
39 '/',
40 asyncHandler(async (_req, res) => {
41 const accountId = res.locals.accountId;
Misha Krieger-Raynauldb6f1c322022-10-23 20:42:57 -040042
Misha Krieger-Raynauld153a1482022-11-05 12:00:41 -040043 // Add usernames for default moderators
44 const defaultModeratorUris = jamid.getDefaultModeratorUris(accountId);
45 const namedDefaultModerators = [];
46 for (const defaultModeratorUri of defaultModeratorUris) {
47 const { username } = await jamid.lookupAddress(defaultModeratorUri, accountId);
48 namedDefaultModerators.push({
49 uri: defaultModeratorUri,
50 registeredName: username,
51 });
52 }
53
54 res.json({
55 id: accountId,
56 details: jamid.getAccountDetails(accountId),
57 volatileDetails: jamid.getVolatileAccountDetails(accountId),
58 defaultModerators: namedDefaultModerators,
59 devices: jamid.getDevices(accountId),
60 });
61 })
62);
Misha Krieger-Raynauld242560f2022-10-16 19:59:58 -040063
Misha Krieger-Raynauldbfed1732022-11-01 20:49:35 -040064accountRouter.patch('/', (req, res) => {
Misha Krieger-Raynauldb6f1c322022-10-23 20:42:57 -040065 const accountId = res.locals.accountId;
66 const currentAccountDetails = jamid.getAccountDetails(accountId);
67 const newAccountDetails: AccountDetails = { ...currentAccountDetails, ...req.body };
simon5da8ca62022-11-09 15:21:25 -050068 jamid.setAccountDetails(accountId, newAccountDetails);
Misha Krieger-Raynauldbfed1732022-11-01 20:49:35 -040069 res.sendStatus(HttpStatusCode.NoContent);
Misha Krieger-Raynauld242560f2022-10-16 19:59:58 -040070});
Charlieb62c6782022-10-30 15:14:56 -040071
Charlie2bc0d672022-11-04 11:53:44 -040072accountRouter.post('/send-account-message', (req: Request<ParamsDictionary, any, AccountTextMessage>, res) => {
73 const { from, to, message } = req.body;
74 if (!from || !to || !message) {
75 res.status(HttpStatusCode.BadRequest).send('Missing arguments in request');
76 return;
Charlieb62c6782022-10-30 15:14:56 -040077 }
Charlie2bc0d672022-11-04 11:53:44 -040078 jamid.sendAccountTextMessage(from, to, JSON.stringify(message));
79 res.end();
80});