2016-01-06 23:26:29 -05:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2015-01-23 13:54:51 -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.
|
|
|
|
|
|
|
|
"""This module contains base REST classes for constructing client v1 servlets.
|
|
|
|
"""
|
2017-12-04 10:47:27 -05:00
|
|
|
import logging
|
2015-01-23 13:54:51 -05:00
|
|
|
import re
|
2021-09-03 09:22:22 -04:00
|
|
|
from typing import Any, Awaitable, Callable, Iterable, Pattern, Tuple, TypeVar, cast
|
2015-01-23 13:54:51 -05:00
|
|
|
|
2017-12-04 10:47:27 -05:00
|
|
|
from synapse.api.errors import InteractiveAuthIncompleteError
|
2019-05-15 12:37:46 -04:00
|
|
|
from synapse.api.urls import CLIENT_API_PREFIX
|
2020-07-17 07:59:23 -04:00
|
|
|
from synapse.types import JsonDict
|
2015-01-23 13:54:51 -05:00
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2020-07-24 09:43:49 -04:00
|
|
|
def client_patterns(
|
|
|
|
path_regex: str,
|
2021-11-16 08:47:58 -05:00
|
|
|
releases: Iterable[str] = ("r0", "v3"),
|
2020-07-24 09:43:49 -04:00
|
|
|
unstable: bool = True,
|
|
|
|
v1: bool = False,
|
|
|
|
) -> Iterable[Pattern]:
|
2015-01-23 13:54:51 -05:00
|
|
|
"""Creates a regex compiled client path with the correct client path
|
|
|
|
prefix.
|
|
|
|
|
|
|
|
Args:
|
2020-07-24 09:43:49 -04:00
|
|
|
path_regex: The regex string to match. This should NOT have a ^
|
2020-01-22 08:36:43 -05:00
|
|
|
as this will be prefixed.
|
2020-07-24 09:43:49 -04:00
|
|
|
releases: An iterable of releases to include this endpoint under.
|
|
|
|
unstable: If true, include this endpoint under the "unstable" prefix.
|
|
|
|
v1: If true, include this endpoint under the "api/v1" prefix.
|
2015-01-23 13:54:51 -05:00
|
|
|
Returns:
|
2020-07-24 09:43:49 -04:00
|
|
|
An iterable of patterns.
|
2015-01-23 13:54:51 -05:00
|
|
|
"""
|
2023-03-23 08:11:14 -04:00
|
|
|
versions = []
|
2019-09-06 06:35:28 -04:00
|
|
|
|
2019-06-03 07:28:59 -04:00
|
|
|
if v1:
|
2023-03-23 08:11:14 -04:00
|
|
|
versions.append("api/v1")
|
|
|
|
versions.extend(releases)
|
|
|
|
if unstable:
|
|
|
|
versions.append("unstable")
|
|
|
|
|
|
|
|
if len(versions) == 1:
|
|
|
|
versions_str = versions[0]
|
|
|
|
elif len(versions) > 1:
|
|
|
|
versions_str = "(" + "|".join(versions) + ")"
|
|
|
|
else:
|
|
|
|
raise RuntimeError("Must have at least one version for a URL")
|
2019-09-06 06:35:28 -04:00
|
|
|
|
2023-03-23 08:11:14 -04:00
|
|
|
return [re.compile("^" + CLIENT_API_PREFIX + "/" + versions_str + path_regex)]
|
2017-05-13 12:17:54 -04:00
|
|
|
|
|
|
|
|
2020-07-17 07:59:23 -04:00
|
|
|
def set_timeline_upper_limit(filter_json: JsonDict, filter_timeline_limit: int) -> None:
|
|
|
|
"""
|
|
|
|
Enforces a maximum limit of a timeline query.
|
|
|
|
|
|
|
|
Params:
|
|
|
|
filter_json: The timeline query to modify.
|
|
|
|
filter_timeline_limit: The maximum limit to allow, passing -1 will
|
|
|
|
disable enforcing a maximum limit.
|
|
|
|
"""
|
2017-05-13 12:17:54 -04:00
|
|
|
if filter_timeline_limit < 0:
|
|
|
|
return # no upper limits
|
2019-06-20 05:32:02 -04:00
|
|
|
timeline = filter_json.get("room", {}).get("timeline", {})
|
|
|
|
if "limit" in timeline:
|
|
|
|
filter_json["room"]["timeline"]["limit"] = min(
|
|
|
|
filter_json["room"]["timeline"]["limit"], filter_timeline_limit
|
|
|
|
)
|
2017-12-04 10:47:27 -05:00
|
|
|
|
|
|
|
|
2021-09-03 09:22:22 -04:00
|
|
|
C = TypeVar("C", bound=Callable[..., Awaitable[Tuple[int, JsonDict]]])
|
|
|
|
|
|
|
|
|
|
|
|
def interactive_auth_handler(orig: C) -> C:
|
2017-12-04 10:47:27 -05:00
|
|
|
"""Wraps an on_POST method to handle InteractiveAuthIncompleteErrors
|
|
|
|
|
2020-07-24 09:43:49 -04:00
|
|
|
Takes a on_POST method which returns an Awaitable (errcode, body) response
|
2017-12-04 10:47:27 -05:00
|
|
|
and adds exception handling to turn a InteractiveAuthIncompleteError into
|
|
|
|
a 401 response.
|
|
|
|
|
|
|
|
Normal usage is:
|
|
|
|
|
|
|
|
@interactive_auth_handler
|
2020-07-24 09:43:49 -04:00
|
|
|
async def on_POST(self, request):
|
2017-12-04 10:47:27 -05:00
|
|
|
# ...
|
2020-07-24 09:43:49 -04:00
|
|
|
await self.auth_handler.check_auth
|
|
|
|
"""
|
2019-06-20 05:32:02 -04:00
|
|
|
|
2021-09-03 09:22:22 -04:00
|
|
|
async def wrapped(*args: Any, **kwargs: Any) -> Tuple[int, JsonDict]:
|
2020-07-24 09:43:49 -04:00
|
|
|
try:
|
|
|
|
return await orig(*args, **kwargs)
|
|
|
|
except InteractiveAuthIncompleteError as e:
|
|
|
|
return 401, e.result
|
2019-06-20 05:32:02 -04:00
|
|
|
|
2021-09-03 09:22:22 -04:00
|
|
|
return cast(C, wrapped)
|