2018-10-12 06:26:18 -04:00
|
|
|
# Copyright 2017, 2018 New Vector Ltd
|
2017-12-04 20:29:25 -05: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.
|
|
|
|
|
|
|
|
import logging
|
2021-09-01 11:59:32 -04:00
|
|
|
from typing import TYPE_CHECKING, Optional, Tuple
|
2017-12-04 20:29:25 -05:00
|
|
|
|
2018-11-05 17:59:29 -05:00
|
|
|
from synapse.api.errors import Codes, NotFoundError, SynapseError
|
2021-09-01 11:59:32 -04:00
|
|
|
from synapse.http.server import HttpServer
|
2017-12-04 20:29:25 -05:00
|
|
|
from synapse.http.servlet import (
|
2018-09-06 11:23:16 -04:00
|
|
|
RestServlet,
|
|
|
|
parse_json_object_from_request,
|
|
|
|
parse_string,
|
2017-12-04 20:29:25 -05:00
|
|
|
)
|
2021-09-01 11:59:32 -04:00
|
|
|
from synapse.http.site import SynapseRequest
|
|
|
|
from synapse.types import JsonDict
|
2018-09-06 11:23:16 -04:00
|
|
|
|
2019-06-03 07:28:59 -04:00
|
|
|
from ._base import client_patterns
|
2017-12-04 20:29:25 -05:00
|
|
|
|
2021-09-01 11:59:32 -04:00
|
|
|
if TYPE_CHECKING:
|
|
|
|
from synapse.server import HomeServer
|
|
|
|
|
2017-12-04 20:29:25 -05:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2017-12-05 12:54:48 -05:00
|
|
|
class RoomKeysServlet(RestServlet):
|
2019-06-03 07:28:59 -04:00
|
|
|
PATTERNS = client_patterns(
|
2017-12-05 16:44:25 -05:00
|
|
|
"/room_keys/keys(/(?P<room_id>[^/]+))?(/(?P<session_id>[^/]+))?$"
|
|
|
|
)
|
2017-12-04 20:29:25 -05:00
|
|
|
|
2021-09-01 11:59:32 -04:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2020-09-18 09:56:44 -04:00
|
|
|
super().__init__()
|
2017-12-04 20:29:25 -05:00
|
|
|
self.auth = hs.get_auth()
|
|
|
|
self.e2e_room_keys_handler = hs.get_e2e_room_keys_handler()
|
|
|
|
|
2021-09-01 11:59:32 -04:00
|
|
|
async def on_PUT(
|
|
|
|
self, request: SynapseRequest, room_id: Optional[str], session_id: Optional[str]
|
|
|
|
) -> Tuple[int, JsonDict]:
|
2017-12-05 18:06:43 -05:00
|
|
|
"""
|
|
|
|
Uploads one or more encrypted E2E room keys for backup purposes.
|
|
|
|
room_id: the ID of the room the keys are for (optional)
|
|
|
|
session_id: the ID for the E2E room keys for the room (optional)
|
|
|
|
version: the version of the user's backup which this data is for.
|
2017-12-27 18:37:44 -05:00
|
|
|
the version must already have been created via the /room_keys/version API.
|
2017-12-05 18:06:43 -05:00
|
|
|
|
|
|
|
Each session has:
|
|
|
|
* first_message_index: a numeric index indicating the oldest message
|
|
|
|
encrypted by this session.
|
|
|
|
* forwarded_count: how many times the uploading client claims this key
|
|
|
|
has been shared (forwarded)
|
|
|
|
* is_verified: whether the client that uploaded the keys claims they
|
|
|
|
were sent by a device which they've verified
|
|
|
|
* session_data: base64-encrypted data describing the session.
|
|
|
|
|
|
|
|
Returns 200 OK on success with body {}
|
2017-12-27 18:37:44 -05:00
|
|
|
Returns 403 Forbidden if the version in question is not the most recently
|
|
|
|
created version (i.e. if this is an old client trying to write to a stale backup)
|
|
|
|
Returns 404 Not Found if the version in question doesn't exist
|
2017-12-05 18:06:43 -05:00
|
|
|
|
|
|
|
The API is designed to be otherwise agnostic to the room_key encryption
|
|
|
|
algorithm being used. Sessions are merged with existing ones in the
|
|
|
|
backup using the heuristics:
|
|
|
|
* is_verified sessions always win over unverified sessions
|
|
|
|
* older first_message_index always win over newer sessions
|
|
|
|
* lower forwarded_count always wins over higher forwarded_count
|
|
|
|
|
|
|
|
We trust the clients not to lie and corrupt their own backups.
|
2017-12-17 20:52:46 -05:00
|
|
|
It also means that if your access_token is stolen, the attacker could
|
|
|
|
delete your backup.
|
2017-12-05 18:06:43 -05:00
|
|
|
|
|
|
|
POST /room_keys/keys/!abc:matrix.org/c0ff33?version=1 HTTP/1.1
|
|
|
|
Content-Type: application/json
|
|
|
|
|
|
|
|
{
|
|
|
|
"first_message_index": 1,
|
|
|
|
"forwarded_count": 1,
|
|
|
|
"is_verified": false,
|
|
|
|
"session_data": "SSBBTSBBIEZJU0gK"
|
|
|
|
}
|
|
|
|
|
|
|
|
Or...
|
|
|
|
|
|
|
|
POST /room_keys/keys/!abc:matrix.org?version=1 HTTP/1.1
|
|
|
|
Content-Type: application/json
|
|
|
|
|
|
|
|
{
|
|
|
|
"sessions": {
|
|
|
|
"c0ff33": {
|
|
|
|
"first_message_index": 1,
|
|
|
|
"forwarded_count": 1,
|
|
|
|
"is_verified": false,
|
|
|
|
"session_data": "SSBBTSBBIEZJU0gK"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Or...
|
|
|
|
|
|
|
|
POST /room_keys/keys?version=1 HTTP/1.1
|
|
|
|
Content-Type: application/json
|
|
|
|
|
|
|
|
{
|
|
|
|
"rooms": {
|
|
|
|
"!abc:matrix.org": {
|
|
|
|
"sessions": {
|
|
|
|
"c0ff33": {
|
|
|
|
"first_message_index": 1,
|
|
|
|
"forwarded_count": 1,
|
|
|
|
"is_verified": false,
|
|
|
|
"session_data": "SSBBTSBBIEZJU0gK"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"""
|
2019-12-05 11:46:37 -05:00
|
|
|
requester = await self.auth.get_user_by_req(request, allow_guest=False)
|
2017-12-04 20:29:25 -05:00
|
|
|
user_id = requester.user.to_string()
|
|
|
|
body = parse_json_object_from_request(request)
|
2018-01-07 18:48:22 -05:00
|
|
|
version = parse_string(request, "version")
|
2017-12-05 12:54:48 -05:00
|
|
|
|
|
|
|
if session_id:
|
2017-12-05 16:44:25 -05:00
|
|
|
body = {"sessions": {session_id: body}}
|
2017-12-05 12:54:48 -05:00
|
|
|
|
|
|
|
if room_id:
|
2017-12-05 16:44:25 -05:00
|
|
|
body = {"rooms": {room_id: body}}
|
2017-12-04 20:29:25 -05:00
|
|
|
|
2019-12-05 11:46:37 -05:00
|
|
|
ret = await self.e2e_room_keys_handler.upload_room_keys(user_id, version, body)
|
2019-11-27 16:14:44 -05:00
|
|
|
return 200, ret
|
2017-12-04 20:29:25 -05:00
|
|
|
|
2021-09-01 11:59:32 -04:00
|
|
|
async def on_GET(
|
|
|
|
self, request: SynapseRequest, room_id: Optional[str], session_id: Optional[str]
|
|
|
|
) -> Tuple[int, JsonDict]:
|
2017-12-05 18:06:43 -05:00
|
|
|
"""
|
|
|
|
Retrieves one or more encrypted E2E room keys for backup purposes.
|
|
|
|
Symmetric with the PUT version of the API.
|
|
|
|
|
|
|
|
room_id: the ID of the room to retrieve the keys for (optional)
|
|
|
|
session_id: the ID for the E2E room keys to retrieve the keys for (optional)
|
|
|
|
version: the version of the user's backup which this data is for.
|
|
|
|
the version must already have been created via the /change_secret API.
|
|
|
|
|
|
|
|
Returns as follows:
|
|
|
|
|
|
|
|
GET /room_keys/keys/!abc:matrix.org/c0ff33?version=1 HTTP/1.1
|
|
|
|
{
|
|
|
|
"first_message_index": 1,
|
|
|
|
"forwarded_count": 1,
|
|
|
|
"is_verified": false,
|
|
|
|
"session_data": "SSBBTSBBIEZJU0gK"
|
|
|
|
}
|
|
|
|
|
|
|
|
Or...
|
|
|
|
|
|
|
|
GET /room_keys/keys/!abc:matrix.org?version=1 HTTP/1.1
|
|
|
|
{
|
|
|
|
"sessions": {
|
|
|
|
"c0ff33": {
|
|
|
|
"first_message_index": 1,
|
|
|
|
"forwarded_count": 1,
|
|
|
|
"is_verified": false,
|
|
|
|
"session_data": "SSBBTSBBIEZJU0gK"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Or...
|
|
|
|
|
|
|
|
GET /room_keys/keys?version=1 HTTP/1.1
|
|
|
|
{
|
|
|
|
"rooms": {
|
|
|
|
"!abc:matrix.org": {
|
|
|
|
"sessions": {
|
|
|
|
"c0ff33": {
|
|
|
|
"first_message_index": 1,
|
|
|
|
"forwarded_count": 1,
|
|
|
|
"is_verified": false,
|
|
|
|
"session_data": "SSBBTSBBIEZJU0gK"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"""
|
2019-12-05 11:46:37 -05:00
|
|
|
requester = await self.auth.get_user_by_req(request, allow_guest=False)
|
2017-12-05 12:54:48 -05:00
|
|
|
user_id = requester.user.to_string()
|
2020-03-27 09:30:22 -04:00
|
|
|
version = parse_string(request, "version", required=True)
|
2017-12-05 12:54:48 -05:00
|
|
|
|
2019-12-05 11:46:37 -05:00
|
|
|
room_keys = await self.e2e_room_keys_handler.get_room_keys(
|
2017-12-05 12:54:48 -05:00
|
|
|
user_id, version, room_id, session_id
|
|
|
|
)
|
2017-12-31 12:47:11 -05:00
|
|
|
|
2018-11-05 17:59:29 -05:00
|
|
|
# Convert room_keys to the right format to return.
|
2017-12-31 12:47:11 -05:00
|
|
|
if session_id:
|
2018-11-05 17:59:29 -05:00
|
|
|
# If the client requests a specific session, but that session was
|
|
|
|
# not backed up, then return an M_NOT_FOUND.
|
|
|
|
if room_keys["rooms"] == {}:
|
|
|
|
raise NotFoundError("No room_keys found")
|
|
|
|
else:
|
|
|
|
room_keys = room_keys["rooms"][room_id]["sessions"][session_id]
|
2017-12-31 12:47:11 -05:00
|
|
|
elif room_id:
|
2018-11-05 17:59:29 -05:00
|
|
|
# If the client requests all sessions from a room, but no sessions
|
|
|
|
# are found, then return an empty result rather than an error, so
|
|
|
|
# that clients don't have to handle an error condition, and an
|
|
|
|
# empty result is valid. (Similarly if the client requests all
|
|
|
|
# sessions from the backup, but in that case, room_keys is already
|
|
|
|
# in the right format, so we don't need to do anything about it.)
|
|
|
|
if room_keys["rooms"] == {}:
|
|
|
|
room_keys = {"sessions": {}}
|
|
|
|
else:
|
|
|
|
room_keys = room_keys["rooms"][room_id]
|
2017-12-31 12:47:11 -05:00
|
|
|
|
2019-08-30 11:28:26 -04:00
|
|
|
return 200, room_keys
|
2017-12-05 12:54:48 -05:00
|
|
|
|
2021-09-01 11:59:32 -04:00
|
|
|
async def on_DELETE(
|
|
|
|
self, request: SynapseRequest, room_id: Optional[str], session_id: Optional[str]
|
|
|
|
) -> Tuple[int, JsonDict]:
|
2017-12-05 18:06:43 -05:00
|
|
|
"""
|
|
|
|
Deletes one or more encrypted E2E room keys for a user for backup purposes.
|
|
|
|
|
2017-12-24 12:42:17 -05:00
|
|
|
DELETE /room_keys/keys/!abc:matrix.org/c0ff33?version=1
|
|
|
|
HTTP/1.1 200 OK
|
|
|
|
{}
|
|
|
|
|
2017-12-05 18:06:43 -05:00
|
|
|
room_id: the ID of the room whose keys to delete (optional)
|
|
|
|
session_id: the ID for the E2E session to delete (optional)
|
|
|
|
version: the version of the user's backup which this data is for.
|
|
|
|
the version must already have been created via the /change_secret API.
|
|
|
|
"""
|
|
|
|
|
2019-12-05 11:46:37 -05:00
|
|
|
requester = await self.auth.get_user_by_req(request, allow_guest=False)
|
2017-12-05 12:54:48 -05:00
|
|
|
user_id = requester.user.to_string()
|
2018-01-07 18:48:22 -05:00
|
|
|
version = parse_string(request, "version")
|
2017-12-05 12:54:48 -05:00
|
|
|
|
2019-12-05 11:46:37 -05:00
|
|
|
ret = await self.e2e_room_keys_handler.delete_room_keys(
|
2017-12-05 12:54:48 -05:00
|
|
|
user_id, version, room_id, session_id
|
|
|
|
)
|
2019-11-27 16:14:44 -05:00
|
|
|
return 200, ret
|
2017-12-05 12:54:48 -05:00
|
|
|
|
2017-12-04 20:29:25 -05:00
|
|
|
|
2018-10-12 06:35:08 -04:00
|
|
|
class RoomKeysNewVersionServlet(RestServlet):
|
2019-06-03 07:28:59 -04:00
|
|
|
PATTERNS = client_patterns("/room_keys/version$")
|
2017-12-05 20:02:57 -05:00
|
|
|
|
2021-09-01 11:59:32 -04:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2020-09-18 09:56:44 -04:00
|
|
|
super().__init__()
|
2017-12-05 20:02:57 -05:00
|
|
|
self.auth = hs.get_auth()
|
|
|
|
self.e2e_room_keys_handler = hs.get_e2e_room_keys_handler()
|
|
|
|
|
2021-09-01 11:59:32 -04:00
|
|
|
async def on_POST(self, request: SynapseRequest) -> Tuple[int, JsonDict]:
|
2017-12-24 12:42:17 -05:00
|
|
|
"""
|
|
|
|
Create a new backup version for this user's room_keys with the given
|
|
|
|
info. The version is allocated by the server and returned to the user
|
|
|
|
in the response. This API is intended to be used whenever the user
|
|
|
|
changes the encryption key for their backups, ensuring that backups
|
|
|
|
encrypted with different keys don't collide.
|
|
|
|
|
2017-12-27 18:37:44 -05:00
|
|
|
It takes out an exclusive lock on this user's room_key backups, to ensure
|
|
|
|
clients only upload to the current backup.
|
|
|
|
|
2017-12-24 12:42:17 -05:00
|
|
|
The algorithm passed in the version info is a reverse-DNS namespaced
|
|
|
|
identifier to describe the format of the encrypted backupped keys.
|
|
|
|
|
|
|
|
The auth_data is { user_id: "user_id", nonce: <random string> }
|
|
|
|
encrypted using the algorithm and current encryption key described above.
|
|
|
|
|
|
|
|
POST /room_keys/version
|
|
|
|
Content-Type: application/json
|
|
|
|
{
|
|
|
|
"algorithm": "m.megolm_backup.v1",
|
|
|
|
"auth_data": "dGhpcyBzaG91bGQgYWN0dWFsbHkgYmUgZW5jcnlwdGVkIGpzb24K"
|
|
|
|
}
|
|
|
|
|
|
|
|
HTTP/1.1 200 OK
|
|
|
|
Content-Type: application/json
|
|
|
|
{
|
|
|
|
"version": 12345
|
|
|
|
}
|
|
|
|
"""
|
2019-12-05 11:46:37 -05:00
|
|
|
requester = await self.auth.get_user_by_req(request, allow_guest=False)
|
2017-12-05 20:02:57 -05:00
|
|
|
user_id = requester.user.to_string()
|
|
|
|
info = parse_json_object_from_request(request)
|
|
|
|
|
2019-12-05 11:46:37 -05:00
|
|
|
new_version = await self.e2e_room_keys_handler.create_version(user_id, info)
|
2019-08-30 11:28:26 -04:00
|
|
|
return 200, {"version": new_version}
|
2017-12-05 20:02:57 -05:00
|
|
|
|
2017-12-06 04:02:49 -05:00
|
|
|
# we deliberately don't have a PUT /version, as these things really should
|
|
|
|
# be immutable to avoid people footgunning
|
|
|
|
|
2018-10-12 09:33:55 -04:00
|
|
|
|
2018-10-12 06:35:08 -04:00
|
|
|
class RoomKeysVersionServlet(RestServlet):
|
|
|
|
PATTERNS = client_patterns("/room_keys/version(/(?P<version>[^/]+))?$")
|
|
|
|
|
2021-09-01 11:59:32 -04:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2020-09-18 09:56:44 -04:00
|
|
|
super().__init__()
|
2018-10-12 06:35:08 -04:00
|
|
|
self.auth = hs.get_auth()
|
|
|
|
self.e2e_room_keys_handler = hs.get_e2e_room_keys_handler()
|
|
|
|
|
2021-09-01 11:59:32 -04:00
|
|
|
async def on_GET(
|
|
|
|
self, request: SynapseRequest, version: Optional[str]
|
|
|
|
) -> Tuple[int, JsonDict]:
|
2017-12-24 12:42:17 -05:00
|
|
|
"""
|
|
|
|
Retrieve the version information about a given version of the user's
|
2017-12-31 09:10:49 -05:00
|
|
|
room_keys backup. If the version part is missing, returns info about the
|
|
|
|
most current backup version (if any)
|
2017-12-24 12:42:17 -05:00
|
|
|
|
2017-12-27 18:37:44 -05:00
|
|
|
It takes out an exclusive lock on this user's room_key backups, to ensure
|
|
|
|
clients only upload to the current backup.
|
|
|
|
|
2018-01-07 18:45:26 -05:00
|
|
|
Returns 404 if the given version does not exist.
|
2017-12-31 09:10:49 -05:00
|
|
|
|
2017-12-24 12:42:17 -05:00
|
|
|
GET /room_keys/version/12345 HTTP/1.1
|
|
|
|
{
|
2017-12-31 09:10:49 -05:00
|
|
|
"version": "12345",
|
2017-12-24 12:42:17 -05:00
|
|
|
"algorithm": "m.megolm_backup.v1",
|
|
|
|
"auth_data": "dGhpcyBzaG91bGQgYWN0dWFsbHkgYmUgZW5jcnlwdGVkIGpzb24K"
|
|
|
|
}
|
|
|
|
"""
|
2019-12-05 11:46:37 -05:00
|
|
|
requester = await self.auth.get_user_by_req(request, allow_guest=False)
|
2017-12-05 20:02:57 -05:00
|
|
|
user_id = requester.user.to_string()
|
|
|
|
|
2018-09-13 12:02:59 -04:00
|
|
|
try:
|
2019-12-05 11:46:37 -05:00
|
|
|
info = await self.e2e_room_keys_handler.get_version_info(user_id, version)
|
2018-09-13 12:02:59 -04:00
|
|
|
except SynapseError as e:
|
|
|
|
if e.code == 404:
|
2018-10-12 06:48:02 -04:00
|
|
|
raise SynapseError(404, "No backup found", Codes.NOT_FOUND)
|
2019-08-30 11:28:26 -04:00
|
|
|
return 200, info
|
2017-12-05 20:02:57 -05:00
|
|
|
|
2021-09-01 11:59:32 -04:00
|
|
|
async def on_DELETE(
|
|
|
|
self, request: SynapseRequest, version: Optional[str]
|
|
|
|
) -> Tuple[int, JsonDict]:
|
2017-12-24 12:42:17 -05:00
|
|
|
"""
|
|
|
|
Delete the information about a given version of the user's
|
2018-01-07 18:45:26 -05:00
|
|
|
room_keys backup. If the version part is missing, deletes the most
|
|
|
|
current backup version (if any). Doesn't delete the actual room data.
|
2017-12-24 12:42:17 -05:00
|
|
|
|
|
|
|
DELETE /room_keys/version/12345 HTTP/1.1
|
|
|
|
HTTP/1.1 200 OK
|
|
|
|
{}
|
|
|
|
"""
|
2018-10-12 06:35:08 -04:00
|
|
|
if version is None:
|
2018-10-12 06:48:02 -04:00
|
|
|
raise SynapseError(400, "No version specified to delete", Codes.NOT_FOUND)
|
2017-12-24 12:42:17 -05:00
|
|
|
|
2019-12-05 11:46:37 -05:00
|
|
|
requester = await self.auth.get_user_by_req(request, allow_guest=False)
|
2017-12-05 20:02:57 -05:00
|
|
|
user_id = requester.user.to_string()
|
|
|
|
|
2019-12-05 11:46:37 -05:00
|
|
|
await self.e2e_room_keys_handler.delete_version(user_id, version)
|
2019-08-30 11:28:26 -04:00
|
|
|
return 200, {}
|
2017-12-05 20:02:57 -05:00
|
|
|
|
2021-09-01 11:59:32 -04:00
|
|
|
async def on_PUT(
|
|
|
|
self, request: SynapseRequest, version: Optional[str]
|
|
|
|
) -> Tuple[int, JsonDict]:
|
2019-02-06 17:57:10 -05:00
|
|
|
"""
|
|
|
|
Update the information about a given version of the user's room_keys backup.
|
|
|
|
|
|
|
|
POST /room_keys/version/12345 HTTP/1.1
|
|
|
|
Content-Type: application/json
|
|
|
|
{
|
|
|
|
"algorithm": "m.megolm_backup.v1",
|
|
|
|
"auth_data": {
|
|
|
|
"public_key": "abcdefg",
|
|
|
|
"signatures": {
|
|
|
|
"ed25519:something": "hijklmnop"
|
|
|
|
}
|
2019-02-08 01:32:45 -05:00
|
|
|
},
|
2019-10-09 17:54:03 -04:00
|
|
|
"version": "12345"
|
2019-02-06 17:57:10 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
HTTP/1.1 200 OK
|
|
|
|
Content-Type: application/json
|
|
|
|
{}
|
|
|
|
"""
|
2019-12-05 11:46:37 -05:00
|
|
|
requester = await self.auth.get_user_by_req(request, allow_guest=False)
|
2019-02-06 17:57:10 -05:00
|
|
|
user_id = requester.user.to_string()
|
|
|
|
info = parse_json_object_from_request(request)
|
|
|
|
|
|
|
|
if version is None:
|
|
|
|
raise SynapseError(
|
|
|
|
400, "No version specified to update", Codes.MISSING_PARAM
|
|
|
|
)
|
|
|
|
|
2019-12-05 11:46:37 -05:00
|
|
|
await self.e2e_room_keys_handler.update_version(user_id, version, info)
|
2019-08-30 11:28:26 -04:00
|
|
|
return 200, {}
|
2019-02-06 17:57:10 -05:00
|
|
|
|
2017-12-05 20:02:57 -05:00
|
|
|
|
2021-09-01 11:59:32 -04:00
|
|
|
def register_servlets(hs: "HomeServer", http_server: HttpServer) -> None:
|
2017-12-05 12:54:48 -05:00
|
|
|
RoomKeysServlet(hs).register(http_server)
|
2017-12-05 20:02:57 -05:00
|
|
|
RoomKeysVersionServlet(hs).register(http_server)
|
2018-10-12 06:35:08 -04:00
|
|
|
RoomKeysNewVersionServlet(hs).register(http_server)
|