2014-08-12 10:10:52 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-01-06 23:26:29 -05:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2014-08-12 10:10:52 -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.
|
2014-08-26 13:57:46 -04:00
|
|
|
import logging
|
2020-09-08 10:00:17 -04:00
|
|
|
from typing import Optional
|
|
|
|
|
|
|
|
import attr
|
2014-08-26 13:57:46 -04:00
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
from synapse.api.errors import SynapseError
|
2018-07-13 15:40:14 -04:00
|
|
|
from synapse.http.servlet import parse_integer, parse_string
|
2020-09-08 10:00:17 -04:00
|
|
|
from synapse.http.site import SynapseRequest
|
2020-09-30 15:29:19 -04:00
|
|
|
from synapse.storage.databases.main import DataStore
|
2018-07-09 02:09:20 -04:00
|
|
|
from synapse.types import StreamToken
|
2014-08-26 13:57:46 -04:00
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2016-01-14 05:22:02 -05:00
|
|
|
MAX_LIMIT = 1000
|
|
|
|
|
|
|
|
|
2020-09-08 10:00:17 -04:00
|
|
|
@attr.s(slots=True)
|
2020-09-04 06:54:56 -04:00
|
|
|
class PaginationConfig:
|
2014-08-12 10:10:52 -04:00
|
|
|
"""A configuration object which stores pagination parameters."""
|
|
|
|
|
2020-09-08 10:00:17 -04:00
|
|
|
from_token = attr.ib(type=Optional[StreamToken])
|
|
|
|
to_token = attr.ib(type=Optional[StreamToken])
|
|
|
|
direction = attr.ib(type=str)
|
|
|
|
limit = attr.ib(type=Optional[int])
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
@classmethod
|
2020-09-30 15:29:19 -04:00
|
|
|
async def from_request(
|
2020-09-08 10:00:17 -04:00
|
|
|
cls,
|
2020-09-30 15:29:19 -04:00
|
|
|
store: "DataStore",
|
2020-09-08 10:00:17 -04:00
|
|
|
request: SynapseRequest,
|
|
|
|
raise_invalid_params: bool = True,
|
|
|
|
default_limit: Optional[int] = None,
|
|
|
|
) -> "PaginationConfig":
|
2018-07-13 15:40:14 -04:00
|
|
|
direction = parse_string(request, "dir", default="f", allowed_values=["f", "b"])
|
|
|
|
|
|
|
|
from_tok = parse_string(request, "from")
|
|
|
|
to_tok = parse_string(request, "to")
|
2014-08-27 10:25:21 -04:00
|
|
|
|
|
|
|
try:
|
|
|
|
if from_tok == "END":
|
|
|
|
from_tok = None # For backwards compat.
|
|
|
|
elif from_tok:
|
2020-09-30 15:29:19 -04:00
|
|
|
from_tok = await StreamToken.from_string(store, from_tok)
|
2017-10-23 10:52:32 -04:00
|
|
|
except Exception:
|
2020-07-09 09:52:58 -04:00
|
|
|
raise SynapseError(400, "'from' parameter is invalid")
|
2014-08-27 10:25:21 -04:00
|
|
|
|
|
|
|
try:
|
|
|
|
if to_tok:
|
2020-09-30 15:29:19 -04:00
|
|
|
to_tok = await StreamToken.from_string(store, to_tok)
|
2017-10-23 10:52:32 -04:00
|
|
|
except Exception:
|
2020-07-09 09:52:58 -04:00
|
|
|
raise SynapseError(400, "'to' parameter is invalid")
|
2014-08-27 10:25:21 -04:00
|
|
|
|
2018-07-13 15:40:14 -04:00
|
|
|
limit = parse_integer(request, "limit", default=default_limit)
|
2014-12-02 13:00:51 -05:00
|
|
|
|
2020-09-08 10:00:17 -04:00
|
|
|
if limit:
|
|
|
|
if limit < 0:
|
|
|
|
raise SynapseError(400, "Limit must be 0 or above")
|
|
|
|
|
|
|
|
limit = min(int(limit), MAX_LIMIT)
|
2018-07-13 19:51:00 -04:00
|
|
|
|
2014-08-21 05:56:31 -04:00
|
|
|
try:
|
2014-08-27 10:25:21 -04:00
|
|
|
return PaginationConfig(from_tok, to_tok, direction, limit)
|
2017-10-23 10:52:32 -04:00
|
|
|
except Exception:
|
2014-08-26 13:57:46 -04:00
|
|
|
logger.exception("Failed to create pagination config")
|
2014-08-21 05:56:31 -04:00
|
|
|
raise SynapseError(400, "Invalid request.")
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2020-09-08 10:00:17 -04:00
|
|
|
def __repr__(self) -> str:
|
2019-11-21 07:00:14 -05:00
|
|
|
return ("PaginationConfig(from_tok=%r, to_tok=%r, direction=%r, limit=%r)") % (
|
|
|
|
self.from_token,
|
|
|
|
self.to_token,
|
|
|
|
self.direction,
|
|
|
|
self.limit,
|
|
|
|
)
|