2020-07-07 20:49:31 +08:00
|
|
|
# The core application of the Mia project.
|
|
|
|
# by imacat <imacat@mail.imacat.idv.tw>, 2020/7/1
|
|
|
|
|
|
|
|
# Copyright (c) 2020 imacat.
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
2020-07-24 06:42:33 +08:00
|
|
|
"""The utilities of the Mia core application.
|
2020-07-07 20:49:31 +08:00
|
|
|
|
|
|
|
"""
|
2020-07-20 21:55:34 +08:00
|
|
|
import random
|
2020-07-01 23:35:23 +08:00
|
|
|
import urllib.parse
|
|
|
|
|
2020-07-14 22:01:32 +08:00
|
|
|
from django.conf import settings
|
2020-07-21 10:04:29 +08:00
|
|
|
from django.db.models import Model, Q
|
2020-07-14 22:01:32 +08:00
|
|
|
from django.utils.translation import pgettext, get_language
|
|
|
|
|
|
|
|
|
2020-07-23 23:24:42 +08:00
|
|
|
def new_pk(cls):
|
2020-07-23 23:04:18 +08:00
|
|
|
"""Finds a random ID that does not conflict with the existing data records.
|
2020-07-20 21:55:34 +08:00
|
|
|
|
|
|
|
Args:
|
|
|
|
cls (class): The Django model class.
|
|
|
|
|
|
|
|
Returns:
|
2020-07-23 23:04:18 +08:00
|
|
|
int: The new random ID.
|
2020-07-20 21:55:34 +08:00
|
|
|
"""
|
|
|
|
while True:
|
2020-08-02 01:04:47 +08:00
|
|
|
pk = random.randint(100000000, 999999999)
|
2020-07-20 21:55:34 +08:00
|
|
|
try:
|
2020-08-02 01:04:47 +08:00
|
|
|
cls.objects.get(pk=pk)
|
2020-07-20 21:55:34 +08:00
|
|
|
except cls.DoesNotExist:
|
2020-08-02 01:04:47 +08:00
|
|
|
return pk
|
2020-07-20 21:55:34 +08:00
|
|
|
|
|
|
|
|
2020-07-31 00:14:12 +08:00
|
|
|
def strip_form(form):
|
|
|
|
"""Strips the values of a form. Empty strings are converted to None.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
form (dict[str]): The form.
|
|
|
|
"""
|
|
|
|
for key in form.keys():
|
|
|
|
form[key] = form[key].strip()
|
|
|
|
|
|
|
|
|
2020-07-14 22:01:32 +08:00
|
|
|
class Language:
|
|
|
|
"""A language.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
language (str): The Django language code.
|
|
|
|
|
|
|
|
Attributes:
|
2020-07-16 23:18:16 +08:00
|
|
|
id (str): The language ID
|
2020-07-14 22:01:32 +08:00
|
|
|
db (str): The database column suffix of this language.
|
|
|
|
locale (str); The locale name of this language.
|
|
|
|
is_default (bool): Whether this is the default language.
|
|
|
|
"""
|
|
|
|
def __init__(self, language):
|
2020-07-16 23:18:16 +08:00
|
|
|
self.id = language
|
2020-07-16 23:13:15 +08:00
|
|
|
self.db = "_" + language.lower().replace("-", "_")
|
2020-07-14 22:01:32 +08:00
|
|
|
if language == "zh-hant":
|
|
|
|
self.locale = "zh-TW"
|
|
|
|
elif language == "zh-hans":
|
|
|
|
self.locale = "zh-CN"
|
|
|
|
else:
|
|
|
|
self.locale = language
|
|
|
|
self.is_default = (language == settings.LANGUAGE_CODE)
|
|
|
|
|
|
|
|
@staticmethod
|
2020-07-14 22:12:17 +08:00
|
|
|
def default():
|
2020-07-14 22:01:32 +08:00
|
|
|
return Language(settings.LANGUAGE_CODE)
|
|
|
|
|
2020-07-14 22:14:39 +08:00
|
|
|
@staticmethod
|
|
|
|
def current():
|
|
|
|
return Language(get_language())
|
|
|
|
|
2020-07-14 22:01:32 +08:00
|
|
|
|
2020-07-16 23:18:16 +08:00
|
|
|
def get_multi_lingual_attr(model, name, default=None):
|
2020-07-16 23:13:15 +08:00
|
|
|
"""Returns a multi-lingual attribute of a data model.
|
2020-07-16 22:25:33 +08:00
|
|
|
|
2020-07-14 22:01:32 +08:00
|
|
|
Args:
|
|
|
|
model (object): The data model.
|
|
|
|
name (str): The attribute name.
|
2020-07-16 23:18:16 +08:00
|
|
|
default (str): The default language.
|
2020-07-14 22:01:32 +08:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
(any): The attribute in this language, or in the default
|
|
|
|
language if there is no content in the current language.
|
|
|
|
"""
|
2020-07-14 22:14:39 +08:00
|
|
|
language = Language.current()
|
2020-07-16 23:13:15 +08:00
|
|
|
title = getattr(model, name + language.db)
|
2020-07-16 23:18:16 +08:00
|
|
|
if default is None:
|
|
|
|
default = Language.default().id
|
|
|
|
if language.id == default:
|
2020-07-14 22:01:32 +08:00
|
|
|
return title
|
|
|
|
if title is not None:
|
|
|
|
return title
|
2020-07-16 23:13:15 +08:00
|
|
|
return getattr(model, name + Language.default().db)
|
2020-07-07 22:18:40 +08:00
|
|
|
|
2020-07-01 23:35:23 +08:00
|
|
|
|
2020-07-21 21:21:43 +08:00
|
|
|
def set_multi_lingual_attr(model, name, value):
|
|
|
|
"""Sets a multi-lingual attribute of a data model.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
model (object): The data model.
|
|
|
|
name (str): The attribute name.
|
|
|
|
value (any): The new value
|
|
|
|
"""
|
|
|
|
language = Language.current()
|
|
|
|
setattr(model, name + language.db, value)
|
|
|
|
|
|
|
|
|
2020-07-21 10:04:29 +08:00
|
|
|
def get_multi_lingual_search(attr, query):
|
|
|
|
"""Returns the query condition on a multi-lingual attribute.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
attr (str): The base name of the multi-lingual attribute.
|
|
|
|
query (str): The query.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
Q: The query condition
|
|
|
|
"""
|
|
|
|
language = Language.current()
|
|
|
|
if language.is_default:
|
|
|
|
return Q(**{attr + language.db + "__icontains": query})
|
|
|
|
default = Language.default()
|
|
|
|
q = (Q(**{attr + language.db + "__isnull": False})
|
2020-08-02 00:08:53 +08:00
|
|
|
& Q(**{attr + language.db + "__icontains": query}))\
|
|
|
|
| (Q(**{attr + language.db + "__isnull": True})
|
|
|
|
& Q(**{attr + default.db + "__icontains": query}))
|
2020-07-21 10:04:29 +08:00
|
|
|
return q
|
|
|
|
|
|
|
|
|
2020-07-01 23:35:23 +08:00
|
|
|
class UrlBuilder:
|
|
|
|
"""The URL builder.
|
|
|
|
|
|
|
|
Attributes:
|
|
|
|
base_path (str): the base path
|
|
|
|
params (list[Param]): The query parameters
|
|
|
|
"""
|
|
|
|
def __init__(self, start_url):
|
|
|
|
"""Constructs a new URL builder.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
start_url (str): The URL to start with
|
|
|
|
"""
|
|
|
|
pos = start_url.find("?")
|
|
|
|
if pos == -1:
|
|
|
|
self.base_path = start_url
|
2020-08-02 01:04:47 +08:00
|
|
|
self.params = []
|
2020-07-01 23:35:23 +08:00
|
|
|
return
|
|
|
|
self.base_path = start_url[:pos]
|
|
|
|
self.params = []
|
2020-07-11 17:23:38 +08:00
|
|
|
for piece in start_url[pos + 1:].split("&"):
|
2020-07-01 23:35:23 +08:00
|
|
|
pos = piece.find("=")
|
|
|
|
name = urllib.parse.unquote(piece[:pos])
|
2020-07-11 17:23:38 +08:00
|
|
|
value = urllib.parse.unquote(piece[pos + 1:])
|
2020-07-01 23:35:23 +08:00
|
|
|
self.params.append(self.Param(name, value))
|
|
|
|
|
2020-07-31 21:16:03 +08:00
|
|
|
def add(self, name, value):
|
2020-07-01 23:35:23 +08:00
|
|
|
"""Adds a query parameter.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
name (str): The parameter name
|
|
|
|
value (str): The parameter value
|
|
|
|
|
|
|
|
Returns:
|
2020-07-02 00:50:27 +08:00
|
|
|
UrlBuilder: The URL builder itself, with the parameter
|
|
|
|
modified.
|
2020-07-01 23:35:23 +08:00
|
|
|
"""
|
2020-07-24 07:25:30 +08:00
|
|
|
if value is not None:
|
|
|
|
self.params.append(self.Param(name, value))
|
2020-07-01 23:35:23 +08:00
|
|
|
return self
|
|
|
|
|
2020-07-31 21:16:03 +08:00
|
|
|
def remove(self, name):
|
2020-07-01 23:35:23 +08:00
|
|
|
"""Removes a query parameter.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
name (str): The parameter name
|
|
|
|
|
|
|
|
Returns:
|
2020-07-02 00:50:27 +08:00
|
|
|
UrlBuilder: The URL builder itself, with the parameter
|
|
|
|
modified.
|
2020-07-01 23:35:23 +08:00
|
|
|
"""
|
|
|
|
self.params = [x for x in self.params if x.name != name]
|
|
|
|
return self
|
|
|
|
|
2020-07-31 21:16:03 +08:00
|
|
|
def set(self, name, value):
|
2020-07-01 23:35:23 +08:00
|
|
|
"""Sets a query parameter. The current parameters with the
|
|
|
|
same name will be replaced.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
name (str): The parameter name
|
|
|
|
value (str): The parameter value
|
|
|
|
|
|
|
|
Returns:
|
2020-07-02 00:50:27 +08:00
|
|
|
UrlBuilder: The URL builder itself, with the parameter
|
|
|
|
modified.
|
2020-07-01 23:35:23 +08:00
|
|
|
"""
|
2020-07-31 21:16:03 +08:00
|
|
|
return self.remove(name).add(name, value)
|
2020-07-01 23:35:23 +08:00
|
|
|
|
2020-07-07 22:18:40 +08:00
|
|
|
def clone(self):
|
|
|
|
"""Returns a copy of this URL builder.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
UrlBuilder: A copy of this URL builder.
|
|
|
|
"""
|
|
|
|
another = UrlBuilder(self.base_path)
|
|
|
|
another.params = [
|
|
|
|
self.Param(x.name, x.value) for x in self.params]
|
|
|
|
return another
|
|
|
|
|
2020-07-01 23:35:23 +08:00
|
|
|
def __str__(self):
|
2020-07-07 21:06:11 +08:00
|
|
|
if len(self.params) == 0:
|
|
|
|
return self.base_path
|
|
|
|
return self.base_path + "?" + "&".join([
|
|
|
|
str(x) for x in self.params])
|
2020-07-01 23:35:23 +08:00
|
|
|
|
|
|
|
class Param:
|
|
|
|
"""A query parameter.
|
|
|
|
|
|
|
|
Attributes:
|
|
|
|
name (str): The parameter name
|
|
|
|
value (str): The parameter value
|
|
|
|
"""
|
|
|
|
def __init__(self, name, value):
|
|
|
|
"""Constructs a new query parameter
|
|
|
|
|
|
|
|
Args:
|
|
|
|
name (str): The parameter name
|
|
|
|
value (str): The parameter value
|
|
|
|
"""
|
|
|
|
self.name = name
|
|
|
|
self.value = value
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
"""Returns the string representation of this query
|
|
|
|
parameter.
|
|
|
|
|
|
|
|
Returns:
|
2020-07-02 00:50:27 +08:00
|
|
|
str: The string representation of this query
|
|
|
|
parameter
|
2020-07-01 23:35:23 +08:00
|
|
|
"""
|
|
|
|
return "%s=%s" % (
|
|
|
|
urllib.parse.quote(self.name),
|
|
|
|
urllib.parse.quote(self.value))
|
2020-07-07 20:54:35 +08:00
|
|
|
|
2020-07-09 01:03:03 +08:00
|
|
|
|
2020-07-07 20:54:35 +08:00
|
|
|
class Pagination:
|
|
|
|
"""The pagination.
|
|
|
|
|
|
|
|
Args:
|
2020-08-02 01:04:47 +08:00
|
|
|
request (HttpRequest): The request.
|
|
|
|
items (list): All the items.
|
|
|
|
is_reversed (bool): Whether we should display the last page first.
|
2020-07-07 20:54:35 +08:00
|
|
|
|
|
|
|
Raises:
|
2020-07-11 17:23:38 +08:00
|
|
|
PaginationException: With invalid pagination parameters
|
2020-07-07 20:54:35 +08:00
|
|
|
|
|
|
|
Attributes:
|
2020-08-02 01:04:47 +08:00
|
|
|
current_url (str): The current request URL.
|
|
|
|
is_reversed (bool): Whether we should display the last page first.
|
2020-07-07 22:18:40 +08:00
|
|
|
page_size (int): The page size.
|
|
|
|
total_pages (int): The total number of pages available.
|
|
|
|
is_paged (bool): Whether there are more than one page.
|
|
|
|
page_no (int): The current page number.
|
2020-07-19 21:08:10 +08:00
|
|
|
items (list[Model]): The items in the current page.
|
2020-07-07 20:54:35 +08:00
|
|
|
"""
|
2020-07-11 17:23:38 +08:00
|
|
|
DEFAULT_PAGE_SIZE = 10
|
|
|
|
|
2020-07-19 21:08:10 +08:00
|
|
|
def __init__(self, request, items, is_reversed=False):
|
2020-08-02 01:04:47 +08:00
|
|
|
self.current_url = request.get_full_path()
|
2020-07-07 22:18:40 +08:00
|
|
|
self.is_reversed = is_reversed
|
2020-08-02 01:04:47 +08:00
|
|
|
self.page_size = self.DEFAULT_PAGE_SIZE
|
|
|
|
self.total_pages = None
|
|
|
|
self.is_paged = None
|
|
|
|
self.page_no = 1
|
|
|
|
self.items = []
|
2020-07-11 17:23:38 +08:00
|
|
|
|
|
|
|
# The page size
|
|
|
|
try:
|
|
|
|
self.page_size = int(request.GET["page-size"])
|
|
|
|
if self.page_size == self.DEFAULT_PAGE_SIZE:
|
|
|
|
raise PaginationException(str(
|
2020-08-02 01:04:47 +08:00
|
|
|
UrlBuilder(self.current_url).remove("page-size")))
|
2020-07-11 17:23:38 +08:00
|
|
|
if self.page_size < 1:
|
|
|
|
raise PaginationException(str(
|
2020-08-02 01:04:47 +08:00
|
|
|
UrlBuilder(self.current_url).remove("page-size")))
|
2020-07-11 17:23:38 +08:00
|
|
|
except KeyError:
|
|
|
|
self.page_size = self.DEFAULT_PAGE_SIZE
|
|
|
|
except ValueError:
|
|
|
|
raise PaginationException(str(
|
2020-08-02 01:04:47 +08:00
|
|
|
UrlBuilder(self.current_url).remove("page-size")))
|
2020-07-07 22:18:40 +08:00
|
|
|
self.total_pages = int(
|
2020-07-19 21:08:10 +08:00
|
|
|
(len(items) - 1) / self.page_size) + 1
|
2020-07-11 17:23:38 +08:00
|
|
|
default_page_no = 1 if not is_reversed else self.total_pages
|
2020-07-07 22:18:40 +08:00
|
|
|
self.is_paged = self.total_pages > 1
|
2020-07-11 17:23:38 +08:00
|
|
|
|
|
|
|
# The page number
|
|
|
|
try:
|
|
|
|
self.page_no = int(request.GET["page"])
|
|
|
|
if not self.is_paged:
|
|
|
|
raise PaginationException(str(
|
2020-08-02 01:04:47 +08:00
|
|
|
UrlBuilder(self.current_url).remove("page")))
|
2020-07-11 17:23:38 +08:00
|
|
|
if self.page_no == default_page_no:
|
|
|
|
raise PaginationException(str(
|
2020-08-02 01:04:47 +08:00
|
|
|
UrlBuilder(self.current_url).remove("page")))
|
2020-07-11 17:23:38 +08:00
|
|
|
if self.page_no < 1:
|
|
|
|
raise PaginationException(str(
|
2020-08-02 01:04:47 +08:00
|
|
|
UrlBuilder(self.current_url).remove("page")))
|
2020-07-11 17:23:38 +08:00
|
|
|
if self.page_no > self.total_pages:
|
|
|
|
raise PaginationException(str(
|
2020-08-02 01:04:47 +08:00
|
|
|
UrlBuilder(self.current_url).remove("page")))
|
2020-07-11 17:23:38 +08:00
|
|
|
except KeyError:
|
|
|
|
self.page_no = default_page_no
|
|
|
|
except ValueError:
|
|
|
|
raise PaginationException(str(
|
2020-08-02 01:04:47 +08:00
|
|
|
UrlBuilder(self.current_url).remove("page")))
|
2020-07-11 17:23:38 +08:00
|
|
|
|
2020-07-07 22:18:40 +08:00
|
|
|
if not self.is_paged:
|
|
|
|
self.page_no = 1
|
2020-07-19 21:08:10 +08:00
|
|
|
self.items = items
|
2020-07-07 22:18:40 +08:00
|
|
|
return
|
2020-07-07 21:04:07 +08:00
|
|
|
start_no = self.page_size * (self.page_no - 1)
|
2020-07-19 21:08:10 +08:00
|
|
|
self.items = items[start_no:start_no + self.page_size]
|
2020-07-07 22:18:40 +08:00
|
|
|
|
2020-07-07 22:49:37 +08:00
|
|
|
def links(self):
|
2020-08-02 01:04:47 +08:00
|
|
|
"""Returns the navigation links of the pagination bar.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
list[Link]: The navigation links of the pagination bar.
|
|
|
|
"""
|
|
|
|
base_url = UrlBuilder(self.current_url).remove("page")
|
|
|
|
links = []
|
|
|
|
# The previous page
|
|
|
|
link = self.Link()
|
|
|
|
link.title = pgettext("Pagination|", "Previous")
|
|
|
|
if self.page_no > 1:
|
|
|
|
if self.page_no - 1 == 1:
|
|
|
|
if not self.is_reversed:
|
|
|
|
link.url = str(base_url)
|
2020-07-07 22:18:40 +08:00
|
|
|
else:
|
2020-07-31 21:16:03 +08:00
|
|
|
link.url = str(base_url.clone().add(
|
2020-08-02 01:04:47 +08:00
|
|
|
"page", "1"))
|
2020-07-07 22:18:40 +08:00
|
|
|
else:
|
2020-07-31 21:16:03 +08:00
|
|
|
link.url = str(base_url.clone().add(
|
2020-08-02 01:04:47 +08:00
|
|
|
"page", str(self.page_no - 1)))
|
|
|
|
link.is_small_screen = True
|
|
|
|
links.append(link)
|
|
|
|
# The first page
|
|
|
|
link = self.Link()
|
|
|
|
link.title = "1"
|
|
|
|
if not self.is_reversed:
|
|
|
|
link.url = str(base_url)
|
|
|
|
else:
|
|
|
|
link.url = str(base_url.clone().add(
|
|
|
|
"page", "1"))
|
|
|
|
if self.page_no == 1:
|
|
|
|
link.is_active = True
|
|
|
|
links.append(link)
|
|
|
|
# The previous ellipsis
|
|
|
|
if self.page_no > 4:
|
2020-07-07 22:18:40 +08:00
|
|
|
link = self.Link()
|
2020-08-02 01:04:47 +08:00
|
|
|
if self.page_no > 5:
|
|
|
|
link.title = pgettext("Pagination|", "...")
|
2020-07-07 22:18:40 +08:00
|
|
|
else:
|
2020-08-02 01:04:47 +08:00
|
|
|
link.title = "2"
|
2020-07-31 21:16:03 +08:00
|
|
|
link.url = str(base_url.clone().add(
|
2020-08-02 01:04:47 +08:00
|
|
|
"page", "2"))
|
|
|
|
links.append(link)
|
|
|
|
# The nearby pages
|
|
|
|
for no in range(self.page_no - 2, self.page_no + 3):
|
|
|
|
if no <= 1 or no >= self.total_pages:
|
|
|
|
continue
|
|
|
|
link = self.Link()
|
|
|
|
link.title = str(no)
|
|
|
|
link.url = str(base_url.clone().add(
|
|
|
|
"page", str(no)))
|
|
|
|
if no == self.page_no:
|
2020-07-07 22:18:40 +08:00
|
|
|
link.is_active = True
|
2020-08-02 01:04:47 +08:00
|
|
|
links.append(link)
|
|
|
|
# The next ellipsis
|
|
|
|
if self.page_no + 3 < self.total_pages:
|
2020-07-07 22:18:40 +08:00
|
|
|
link = self.Link()
|
2020-08-02 01:04:47 +08:00
|
|
|
if self.page_no + 4 < self.total_pages:
|
|
|
|
link.title = pgettext("Pagination|", "...")
|
|
|
|
else:
|
|
|
|
link.title = str(self.total_pages - 1)
|
|
|
|
link.url = str(base_url.clone().add(
|
|
|
|
"page", str(self.total_pages - 1)))
|
|
|
|
links.append(link)
|
|
|
|
# The last page
|
|
|
|
link = self.Link()
|
|
|
|
link.title = str(self.total_pages)
|
|
|
|
if self.is_reversed:
|
|
|
|
link.url = str(base_url)
|
|
|
|
else:
|
|
|
|
link.url = str(base_url.clone().add(
|
|
|
|
"page", str(self.total_pages)))
|
|
|
|
if self.page_no == self.total_pages:
|
|
|
|
link.is_active = True
|
|
|
|
links.append(link)
|
|
|
|
# The next page
|
|
|
|
link = self.Link()
|
|
|
|
link.title = pgettext("Pagination|", "Next")
|
|
|
|
if self.page_no < self.total_pages:
|
|
|
|
if self.page_no + 1 == self.total_pages:
|
|
|
|
if self.is_reversed:
|
|
|
|
link.url = str(base_url)
|
2020-07-07 22:18:40 +08:00
|
|
|
else:
|
2020-07-31 21:16:03 +08:00
|
|
|
link.url = str(base_url.clone().add(
|
2020-08-02 01:04:47 +08:00
|
|
|
"page", str(self.total_pages)))
|
|
|
|
else:
|
|
|
|
link.url = str(base_url.clone().add(
|
|
|
|
"page", str(self.page_no + 1)))
|
|
|
|
link.is_small_screen = True
|
|
|
|
links.append(link)
|
|
|
|
return links
|
2020-07-07 22:18:40 +08:00
|
|
|
|
|
|
|
class Link:
|
|
|
|
"""A navigation link in the pagination bar.
|
|
|
|
|
|
|
|
Attributes:
|
|
|
|
url (str): The link URL, or for a non-link slot.
|
|
|
|
title (str): The title of the link.
|
|
|
|
is_active (bool): Whether this link is currently active.
|
|
|
|
is_small_screen (bool): Whether this link is for small
|
|
|
|
screens
|
|
|
|
"""
|
2020-08-02 01:04:47 +08:00
|
|
|
def __int__(self):
|
|
|
|
self.url = None
|
|
|
|
self.title = None
|
|
|
|
self.is_active = False
|
|
|
|
self.is_small_screen = False
|
2020-07-07 20:54:35 +08:00
|
|
|
|
2020-07-08 23:40:36 +08:00
|
|
|
def page_size_options(self):
|
2020-08-02 01:04:47 +08:00
|
|
|
"""Returns the page size options.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
list[PageSizeOption]: The page size options.
|
|
|
|
"""
|
|
|
|
base_url = UrlBuilder(self.current_url).remove(
|
2020-07-31 21:16:03 +08:00
|
|
|
"page").remove("page-size")
|
2020-07-11 17:23:38 +08:00
|
|
|
return [self.PageSizeOption(x, self._page_size_url(base_url, x))
|
2020-07-09 01:03:03 +08:00
|
|
|
for x in [10, 100, 200]]
|
2020-07-08 23:40:36 +08:00
|
|
|
|
2020-07-11 17:23:38 +08:00
|
|
|
@staticmethod
|
|
|
|
def _page_size_url(base_url, size):
|
|
|
|
"""Returns the URL for a new page size.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
base_url (UrlBuilder): The base URL builder.
|
|
|
|
size (int): The new page size.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
str: The URL for the new page size.
|
|
|
|
"""
|
|
|
|
if size == Pagination.DEFAULT_PAGE_SIZE:
|
|
|
|
return str(base_url)
|
2020-07-31 21:16:03 +08:00
|
|
|
return str(base_url.clone().add("page-size", str(size)))
|
2020-07-11 17:23:38 +08:00
|
|
|
|
2020-07-08 23:40:36 +08:00
|
|
|
class PageSizeOption:
|
|
|
|
"""A page size option.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
size (int): The page size.
|
|
|
|
url (str): The URL of this page size.
|
|
|
|
|
|
|
|
Attributes:
|
|
|
|
size (int): The page size.
|
|
|
|
url (str): The URL for this page size.
|
|
|
|
"""
|
|
|
|
def __init__(self, size, url):
|
|
|
|
self.size = size
|
|
|
|
self.url = url
|
|
|
|
|
2020-07-07 20:54:35 +08:00
|
|
|
|
2020-07-11 17:23:38 +08:00
|
|
|
class PaginationException(Exception):
|
|
|
|
"""The exception thrown with invalid pagination parameters.
|
2020-07-09 01:03:03 +08:00
|
|
|
|
|
|
|
Args:
|
2020-07-11 17:23:38 +08:00
|
|
|
url (str): The canonical URL to redirect to.
|
2020-07-09 01:03:03 +08:00
|
|
|
|
2020-07-11 17:23:38 +08:00
|
|
|
Attributes:
|
|
|
|
url (str): The canonical URL to redirect to.
|
2020-07-09 01:03:03 +08:00
|
|
|
"""
|
2020-07-11 17:23:38 +08:00
|
|
|
def __init__(self, url):
|
|
|
|
self.url = url
|