2014-08-14 06:52:56 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-01-06 23:26:29 -05:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2018-05-22 03:56:52 -04:00
|
|
|
# Copyright 2018 New Vector Ltd.
|
2014-08-14 06:52:56 -04:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
"""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
|
2018-05-22 03:56:52 -04:00
|
|
|
|
|
|
|
from six.moves.urllib.parse import urlencode
|
|
|
|
|
|
|
|
from synapse.config import ConfigError
|
2014-08-14 06:52:56 -04:00
|
|
|
|
2014-08-31 09:51:37 -04:00
|
|
|
CLIENT_PREFIX = "/_matrix/client/api/v1"
|
2015-01-23 13:54:51 -05:00
|
|
|
CLIENT_V2_ALPHA_PREFIX = "/_matrix/client/v2_alpha"
|
2014-08-31 09:51:37 -04:00
|
|
|
FEDERATION_PREFIX = "/_matrix/federation/v1"
|
2015-02-23 10:14:56 -05:00
|
|
|
STATIC_PREFIX = "/_matrix/static"
|
2014-08-31 09:51:37 -04:00
|
|
|
WEB_CLIENT_PREFIX = "/_matrix/client"
|
2014-09-23 13:40:59 -04:00
|
|
|
CONTENT_REPO_PREFIX = "/_matrix/content"
|
2015-04-14 11:04:52 -04:00
|
|
|
SERVER_KEY_V2_PREFIX = "/_matrix/key/v2"
|
2016-02-05 05:47:46 -05:00
|
|
|
MEDIA_PREFIX = "/_matrix/media/r0"
|
|
|
|
LEGACY_MEDIA_PREFIX = "/_matrix/media/v1"
|
2018-05-22 03:56:52 -04:00
|
|
|
|
|
|
|
|
|
|
|
class ConsentURIBuilder(object):
|
|
|
|
def __init__(self, hs_config):
|
|
|
|
"""
|
|
|
|
Args:
|
|
|
|
hs_config (synapse.config.homeserver.HomeServerConfig):
|
|
|
|
"""
|
|
|
|
if hs_config.form_secret is None:
|
|
|
|
raise ConfigError(
|
|
|
|
"form_secret not set in config",
|
|
|
|
)
|
|
|
|
if hs_config.public_baseurl is None:
|
|
|
|
raise ConfigError(
|
|
|
|
"public_baseurl not set in config",
|
|
|
|
)
|
|
|
|
|
|
|
|
self._hmac_secret = hs_config.form_secret.encode("utf-8")
|
|
|
|
self._public_baseurl = hs_config.public_baseurl
|
|
|
|
|
|
|
|
def build_user_consent_uri(self, user_id):
|
|
|
|
"""Build a URI which we can give to the user to do their privacy
|
|
|
|
policy consent
|
|
|
|
|
|
|
|
Args:
|
|
|
|
user_id (str): mxid or username of user
|
|
|
|
|
|
|
|
Returns
|
|
|
|
(str) the URI where the user can do consent
|
|
|
|
"""
|
|
|
|
mac = hmac.new(
|
|
|
|
key=self._hmac_secret,
|
2018-10-01 10:11:58 -04:00
|
|
|
msg=user_id.encode('ascii'),
|
2018-05-22 03:56:52 -04:00
|
|
|
digestmod=sha256,
|
|
|
|
).hexdigest()
|
|
|
|
consent_uri = "%s_matrix/consent?%s" % (
|
|
|
|
self._public_baseurl,
|
|
|
|
urlencode({
|
|
|
|
"u": user_id,
|
|
|
|
"h": mac
|
|
|
|
}),
|
|
|
|
)
|
|
|
|
return consent_uri
|