2014-08-12 10:10:52 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright 2014 matrix.org
|
|
|
|
#
|
|
|
|
# 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-12 22:14:34 -04:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
from synapse.api.errors import SynapseError
|
2014-08-21 05:56:31 -04:00
|
|
|
from synapse.types import StreamToken
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-08-26 13:57:46 -04:00
|
|
|
import logging
|
|
|
|
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
class PaginationConfig(object):
|
|
|
|
|
|
|
|
"""A configuration object which stores pagination parameters."""
|
|
|
|
|
2014-08-19 09:19:48 -04:00
|
|
|
def __init__(self, from_tok=None, to_tok=None, direction='f', limit=0):
|
2014-08-26 13:57:46 -04:00
|
|
|
self.from_token = StreamToken.from_string(from_tok) if from_tok else None
|
|
|
|
self.to_token = StreamToken.from_string(to_tok) if to_tok else None
|
2014-08-21 05:56:31 -04:00
|
|
|
self.direction = 'f' if direction == 'f' else 'b'
|
|
|
|
self.limit = int(limit)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def from_request(cls, request, raise_invalid_params=True):
|
|
|
|
params = {
|
2014-08-19 09:19:48 -04:00
|
|
|
"direction": 'f',
|
2014-08-12 10:10:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
query_param_mappings = [ # 3-tuple of qp_key, attribute, rules
|
|
|
|
("from", "from_tok", lambda x: type(x) == str),
|
|
|
|
("to", "to_tok", lambda x: type(x) == str),
|
2014-08-19 09:19:48 -04:00
|
|
|
("limit", "limit", lambda x: x.isdigit()),
|
|
|
|
("dir", "direction", lambda x: x == 'f' or x == 'b'),
|
2014-08-12 10:10:52 -04:00
|
|
|
]
|
|
|
|
|
|
|
|
for qp, attr, is_valid in query_param_mappings:
|
|
|
|
if qp in request.args:
|
|
|
|
if is_valid(request.args[qp][0]):
|
|
|
|
params[attr] = request.args[qp][0]
|
|
|
|
elif raise_invalid_params:
|
|
|
|
raise SynapseError(400, "%s parameter is invalid." % qp)
|
|
|
|
|
2014-08-26 13:57:46 -04:00
|
|
|
if "from_tok" in params and params["from_tok"] == "END":
|
|
|
|
# TODO (erikj): This is for compatibility only.
|
|
|
|
del params["from_tok"]
|
|
|
|
|
2014-08-21 05:56:31 -04:00
|
|
|
try:
|
|
|
|
return PaginationConfig(**params)
|
|
|
|
except:
|
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
|
|
|
|
2014-08-19 09:19:48 -04:00
|
|
|
def __str__(self):
|
|
|
|
return (
|
|
|
|
"<PaginationConfig from_tok=%s, to_tok=%s, "
|
|
|
|
"direction=%s, limit=%s>"
|
|
|
|
) % (self.from_tok, self.to_tok, self.direction, self.limit)
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
|