2014-08-12 10:10:52 -04:00
|
|
|
#
|
2023-11-21 15:29:58 -05:00
|
|
|
# This file is licensed under the Affero General Public License (AGPL) version 3.
|
|
|
|
#
|
2024-01-23 06:26:48 -05:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2023-11-21 15:29:58 -05:00
|
|
|
# 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-12 10:10:52 -04:00
|
|
|
#
|
|
|
|
#
|
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
|
|
|
|
2023-01-27 07:27:55 -05:00
|
|
|
from synapse.api.constants import Direction
|
2018-07-09 02:09:20 -04:00
|
|
|
from synapse.api.errors import SynapseError
|
2023-02-01 16:35:24 -05:00
|
|
|
from synapse.http.servlet import parse_enum, 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
|
|
|
|
|
|
|
|
|
2022-01-13 08:49:28 -05:00
|
|
|
@attr.s(slots=True, auto_attribs=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."""
|
|
|
|
|
2022-01-13 08:49:28 -05:00
|
|
|
from_token: Optional[StreamToken]
|
|
|
|
to_token: Optional[StreamToken]
|
2023-01-27 07:27:55 -05:00
|
|
|
direction: Direction
|
2022-10-14 08:30:05 -04:00
|
|
|
limit: 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,
|
2022-10-14 08:30:05 -04:00
|
|
|
default_limit: int,
|
2023-02-01 16:35:24 -05:00
|
|
|
default_dir: Direction = Direction.FORWARDS,
|
2020-09-08 10:00:17 -04:00
|
|
|
) -> "PaginationConfig":
|
2023-02-01 16:35:24 -05:00
|
|
|
direction = parse_enum(request, "dir", Direction, default=default_dir)
|
2018-07-13 15:40:14 -04:00
|
|
|
|
2021-07-21 09:47:56 -04:00
|
|
|
from_tok_str = parse_string(request, "from")
|
|
|
|
to_tok_str = parse_string(request, "to")
|
2014-08-27 10:25:21 -04:00
|
|
|
|
|
|
|
try:
|
2021-07-21 09:47:56 -04:00
|
|
|
from_tok = None
|
|
|
|
if from_tok_str == "END":
|
2014-08-27 10:25:21 -04:00
|
|
|
from_tok = None # For backwards compat.
|
2021-07-21 09:47:56 -04:00
|
|
|
elif from_tok_str:
|
|
|
|
from_tok = await StreamToken.from_string(store, from_tok_str)
|
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:
|
2021-07-21 09:47:56 -04:00
|
|
|
to_tok = None
|
|
|
|
if to_tok_str:
|
|
|
|
to_tok = await StreamToken.from_string(store, to_tok_str)
|
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)
|
2022-10-14 08:30:05 -04:00
|
|
|
if limit < 0:
|
|
|
|
raise SynapseError(400, "Limit must be 0 or above")
|
2014-12-02 13:00:51 -05:00
|
|
|
|
2022-10-14 08:30:05 -04:00
|
|
|
limit = min(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:
|
2021-09-23 06:59:07 -04:00
|
|
|
return "PaginationConfig(from_tok=%r, to_tok=%r, direction=%r, limit=%r)" % (
|
2019-11-21 07:00:14 -05:00
|
|
|
self.from_token,
|
|
|
|
self.to_token,
|
|
|
|
self.direction,
|
|
|
|
self.limit,
|
|
|
|
)
|