2014-08-14 06:52:56 -04:00
|
|
|
#
|
2023-11-21 15:29:58 -05:00
|
|
|
# This file is licensed under the Affero General Public License (AGPL) version 3.
|
|
|
|
#
|
|
|
|
# Copyright (C) 2023 New Vector, Ltd
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Affero General Public License as
|
|
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
|
|
# License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# See the GNU Affero General Public License for more details:
|
|
|
|
# <https://www.gnu.org/licenses/agpl-3.0.html>.
|
|
|
|
#
|
|
|
|
# Originally licensed under the Apache License, Version 2.0:
|
|
|
|
# <http://www.apache.org/licenses/LICENSE-2.0>.
|
|
|
|
#
|
|
|
|
# [This file includes modifications made by New Vector Limited]
|
2014-08-14 06:52:56 -04:00
|
|
|
#
|
|
|
|
#
|
|
|
|
|
|
|
|
"""Contains the URL paths to prefix various aspects of the server with. """
|
2018-05-22 03:56:52 -04:00
|
|
|
import hmac
|
2018-07-09 02:09:20 -04:00
|
|
|
from hashlib import sha256
|
2020-06-16 08:51:47 -04:00
|
|
|
from urllib.parse import urlencode
|
2018-05-22 03:56:52 -04:00
|
|
|
|
|
|
|
from synapse.config import ConfigError
|
2021-10-18 15:01:10 -04:00
|
|
|
from synapse.config.homeserver import HomeServerConfig
|
2014-08-14 06:52:56 -04:00
|
|
|
|
2020-09-10 06:45:12 -04:00
|
|
|
SYNAPSE_CLIENT_API_PREFIX = "/_synapse/client"
|
2019-05-15 12:37:46 -04:00
|
|
|
CLIENT_API_PREFIX = "/_matrix/client"
|
2019-01-15 06:14:34 -05:00
|
|
|
FEDERATION_PREFIX = "/_matrix/federation"
|
|
|
|
FEDERATION_V1_PREFIX = FEDERATION_PREFIX + "/v1"
|
2019-01-15 08:22:44 -05:00
|
|
|
FEDERATION_V2_PREFIX = FEDERATION_PREFIX + "/v2"
|
2019-05-29 11:47:16 -04:00
|
|
|
FEDERATION_UNSTABLE_PREFIX = FEDERATION_PREFIX + "/unstable"
|
2015-02-23 10:14:56 -05:00
|
|
|
STATIC_PREFIX = "/_matrix/static"
|
2022-10-20 11:32:47 -04:00
|
|
|
SERVER_KEY_PREFIX = "/_matrix/key"
|
2021-11-17 10:30:24 -05:00
|
|
|
MEDIA_R0_PREFIX = "/_matrix/media/r0"
|
|
|
|
MEDIA_V3_PREFIX = "/_matrix/media/v3"
|
2016-02-05 05:47:46 -05:00
|
|
|
LEGACY_MEDIA_PREFIX = "/_matrix/media/v1"
|
2018-05-22 03:56:52 -04:00
|
|
|
|
|
|
|
|
2020-09-04 06:54:56 -04:00
|
|
|
class ConsentURIBuilder:
|
2021-10-18 15:01:10 -04:00
|
|
|
def __init__(self, hs_config: HomeServerConfig):
|
2021-09-23 12:03:01 -04:00
|
|
|
if hs_config.key.form_secret is None:
|
2018-05-22 03:56:52 -04:00
|
|
|
raise ConfigError("form_secret not set in config")
|
2021-09-23 12:03:01 -04:00
|
|
|
self._hmac_secret = hs_config.key.form_secret.encode("utf-8")
|
2021-09-13 13:07:12 -04:00
|
|
|
self._public_baseurl = hs_config.server.public_baseurl
|
2018-05-22 03:56:52 -04:00
|
|
|
|
2021-10-18 15:01:10 -04:00
|
|
|
def build_user_consent_uri(self, user_id: str) -> str:
|
2018-05-22 03:56:52 -04:00
|
|
|
"""Build a URI which we can give to the user to do their privacy
|
|
|
|
policy consent
|
|
|
|
|
|
|
|
Args:
|
2021-10-18 15:01:10 -04:00
|
|
|
user_id: mxid or username of user
|
2018-05-22 03:56:52 -04:00
|
|
|
|
|
|
|
Returns
|
2021-10-18 15:01:10 -04:00
|
|
|
The URI where the user can do consent
|
2018-05-22 03:56:52 -04:00
|
|
|
"""
|
|
|
|
mac = hmac.new(
|
2018-10-01 10:11:58 -04:00
|
|
|
key=self._hmac_secret, msg=user_id.encode("ascii"), digestmod=sha256
|
2018-05-22 03:56:52 -04:00
|
|
|
).hexdigest()
|
|
|
|
consent_uri = "%s_matrix/consent?%s" % (
|
|
|
|
self._public_baseurl,
|
|
|
|
urlencode({"u": user_id, "h": mac}),
|
|
|
|
)
|
|
|
|
return consent_uri
|