2022-12-29 17:31:32 +00:00
|
|
|
import dataclasses
|
|
|
|
import urllib.parse
|
2023-01-03 08:01:20 +00:00
|
|
|
from collections.abc import Callable
|
2023-02-07 19:07:15 +00:00
|
|
|
from typing import Any, Generic, Protocol, TypeVar
|
2022-12-29 17:31:32 +00:00
|
|
|
|
2022-12-12 07:54:51 +00:00
|
|
|
from django.db import models
|
2022-12-29 17:31:32 +00:00
|
|
|
from django.http import HttpRequest
|
2023-02-14 04:17:26 +00:00
|
|
|
from hatchway.http import ApiResponse
|
2022-12-29 17:31:32 +00:00
|
|
|
|
2022-12-29 21:00:37 +00:00
|
|
|
from activities.models import PostInteraction
|
2023-02-07 19:07:15 +00:00
|
|
|
|
|
|
|
T = TypeVar("T")
|
|
|
|
|
|
|
|
|
|
|
|
class SchemaWithId(Protocol):
|
|
|
|
"""
|
|
|
|
Little protocol type to represent schemas that have an ID attribute
|
|
|
|
"""
|
|
|
|
|
|
|
|
id: str
|
|
|
|
|
|
|
|
|
|
|
|
TI = TypeVar("TI", bound=SchemaWithId)
|
|
|
|
TM = TypeVar("TM", bound=models.Model)
|
|
|
|
|
|
|
|
|
|
|
|
class PaginatingApiResponse(ApiResponse[list[TI]]):
|
|
|
|
"""
|
|
|
|
An ApiResponse subclass that also handles pagination link headers
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
data: list[TI],
|
|
|
|
request: HttpRequest,
|
|
|
|
include_params: list[str],
|
|
|
|
**kwargs,
|
|
|
|
):
|
|
|
|
# Call superclass
|
|
|
|
super().__init__(data, **kwargs)
|
|
|
|
# Figure out if we need link headers
|
|
|
|
self._request = request
|
|
|
|
self.extra_params = self.filter_params(self._request, include_params)
|
|
|
|
link_header = self.build_link_header()
|
|
|
|
if link_header:
|
|
|
|
self.headers["link"] = link_header
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def filter_params(request: HttpRequest, allowed_params: list[str]):
|
|
|
|
params = {}
|
|
|
|
for key in allowed_params:
|
|
|
|
value = request.GET.get(key, None)
|
|
|
|
if value:
|
|
|
|
params[key] = value
|
|
|
|
return params
|
|
|
|
|
|
|
|
def get_part(self, data_index: int, param_name: str, rel: str) -> str | None:
|
|
|
|
"""
|
|
|
|
Used to get next/prev URLs
|
|
|
|
"""
|
|
|
|
if not self.data:
|
|
|
|
return None
|
|
|
|
# Use the ID of the last object for the next page start
|
|
|
|
params = dict(self.extra_params)
|
|
|
|
params[param_name] = self.data[data_index].id
|
|
|
|
return (
|
|
|
|
"<"
|
|
|
|
+ self._request.build_absolute_uri(self._request.path)
|
|
|
|
+ "?"
|
|
|
|
+ urllib.parse.urlencode(params)
|
|
|
|
+ f'>; rel="{rel}"'
|
|
|
|
)
|
|
|
|
|
|
|
|
def build_link_header(self):
|
|
|
|
parts = [
|
|
|
|
entry
|
|
|
|
for entry in [
|
|
|
|
self.get_part(0, "min_id", "prev"),
|
|
|
|
self.get_part(-1, "max_id", "next"),
|
|
|
|
]
|
|
|
|
if entry
|
|
|
|
]
|
|
|
|
if not parts:
|
|
|
|
return None
|
|
|
|
return ", ".join(parts)
|
2022-12-29 21:00:37 +00:00
|
|
|
|
2022-12-29 17:31:32 +00:00
|
|
|
|
|
|
|
@dataclasses.dataclass
|
2023-02-07 19:07:15 +00:00
|
|
|
class PaginationResult(Generic[T]):
|
2022-12-29 18:46:25 +00:00
|
|
|
"""
|
|
|
|
Represents a pagination result for Mastodon (it does Link header stuff)
|
|
|
|
"""
|
|
|
|
|
2022-12-29 17:31:32 +00:00
|
|
|
#: A list of objects that matched the pagination query.
|
2023-02-07 19:07:15 +00:00
|
|
|
results: list[T]
|
2022-12-29 18:46:25 +00:00
|
|
|
|
2022-12-29 17:31:32 +00:00
|
|
|
#: The actual applied limit, which may be different from what was requested.
|
|
|
|
limit: int
|
2022-12-29 18:46:25 +00:00
|
|
|
|
2023-01-03 08:01:20 +00:00
|
|
|
#: A list of transformed JSON objects
|
|
|
|
json_results: list[dict] | None = None
|
|
|
|
|
2022-12-29 18:46:25 +00:00
|
|
|
@classmethod
|
|
|
|
def empty(cls):
|
|
|
|
return cls(results=[], limit=20)
|
2022-12-29 17:31:32 +00:00
|
|
|
|
|
|
|
def next(self, request: HttpRequest, allowed_params: list[str]):
|
|
|
|
"""
|
|
|
|
Returns a URL to the next page of results.
|
|
|
|
"""
|
|
|
|
if not self.results:
|
|
|
|
return None
|
2023-01-03 08:01:20 +00:00
|
|
|
if self.json_results is None:
|
|
|
|
raise ValueError("You must JSONify the results first")
|
2022-12-29 17:31:32 +00:00
|
|
|
params = self.filter_params(request, allowed_params)
|
2023-01-03 08:01:20 +00:00
|
|
|
params["max_id"] = self.json_results[-1]["id"]
|
2022-12-29 17:31:32 +00:00
|
|
|
|
|
|
|
return f"{request.build_absolute_uri(request.path)}?{urllib.parse.urlencode(params)}"
|
|
|
|
|
|
|
|
def prev(self, request: HttpRequest, allowed_params: list[str]):
|
|
|
|
"""
|
|
|
|
Returns a URL to the previous page of results.
|
|
|
|
"""
|
|
|
|
if not self.results:
|
|
|
|
return None
|
2023-01-03 08:01:20 +00:00
|
|
|
if self.json_results is None:
|
|
|
|
raise ValueError("You must JSONify the results first")
|
2022-12-29 17:31:32 +00:00
|
|
|
params = self.filter_params(request, allowed_params)
|
2023-01-03 08:01:20 +00:00
|
|
|
params["min_id"] = self.json_results[0]["id"]
|
2022-12-29 17:31:32 +00:00
|
|
|
|
|
|
|
return f"{request.build_absolute_uri(request.path)}?{urllib.parse.urlencode(params)}"
|
|
|
|
|
2022-12-29 18:46:25 +00:00
|
|
|
def link_header(self, request: HttpRequest, allowed_params: list[str]):
|
|
|
|
"""
|
|
|
|
Creates a link header for the given request
|
|
|
|
"""
|
|
|
|
return ", ".join(
|
|
|
|
(
|
|
|
|
f'<{self.next(request, allowed_params)}>; rel="next"',
|
|
|
|
f'<{self.prev(request, allowed_params)}>; rel="prev"',
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2023-01-03 08:01:20 +00:00
|
|
|
def jsonify_results(self, map_function: Callable[[Any], Any]):
|
|
|
|
"""
|
|
|
|
Replaces our results with ones transformed via map_function
|
|
|
|
"""
|
|
|
|
self.json_results = [map_function(result) for result in self.results]
|
|
|
|
|
|
|
|
def jsonify_posts(self, identity):
|
|
|
|
"""
|
|
|
|
Predefined way of JSON-ifying Post objects
|
|
|
|
"""
|
|
|
|
interactions = PostInteraction.get_post_interactions(self.results, identity)
|
|
|
|
self.jsonify_results(
|
2023-02-15 17:42:56 +00:00
|
|
|
lambda post: post.to_mastodon_json(
|
|
|
|
interactions=interactions, identity=identity
|
|
|
|
)
|
2023-01-03 08:01:20 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
def jsonify_status_events(self, identity):
|
|
|
|
"""
|
|
|
|
Predefined way of JSON-ifying TimelineEvent objects representing statuses
|
|
|
|
"""
|
|
|
|
interactions = PostInteraction.get_event_interactions(self.results, identity)
|
|
|
|
self.jsonify_results(
|
2023-02-15 17:42:56 +00:00
|
|
|
lambda event: event.to_mastodon_status_json(
|
|
|
|
interactions=interactions, identity=identity
|
|
|
|
)
|
2023-01-03 08:01:20 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
def jsonify_notification_events(self, identity):
|
|
|
|
"""
|
|
|
|
Predefined way of JSON-ifying TimelineEvent objects representing notifications
|
|
|
|
"""
|
|
|
|
interactions = PostInteraction.get_event_interactions(self.results, identity)
|
|
|
|
self.jsonify_results(
|
|
|
|
lambda event: event.to_mastodon_notification_json(interactions=interactions)
|
|
|
|
)
|
|
|
|
|
|
|
|
def jsonify_identities(self):
|
|
|
|
"""
|
|
|
|
Predefined way of JSON-ifying Identity objects
|
|
|
|
"""
|
|
|
|
self.jsonify_results(lambda identity: identity.to_mastodon_json())
|
|
|
|
|
2022-12-29 17:31:32 +00:00
|
|
|
@staticmethod
|
|
|
|
def filter_params(request: HttpRequest, allowed_params: list[str]):
|
|
|
|
params = {}
|
|
|
|
for key in allowed_params:
|
|
|
|
value = request.GET.get(key, None)
|
|
|
|
if value:
|
|
|
|
params[key] = value
|
|
|
|
return params
|
2022-12-12 07:54:51 +00:00
|
|
|
|
|
|
|
|
2022-12-12 07:38:02 +00:00
|
|
|
class MastodonPaginator:
|
|
|
|
"""
|
2022-12-29 21:00:37 +00:00
|
|
|
Paginates in the Mastodon style (max_id, min_id, etc).
|
2023-01-09 06:06:09 +00:00
|
|
|
Note that this basically _requires_ us to always do it on IDs, so we do.
|
2022-12-12 07:38:02 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
default_limit: int = 20,
|
|
|
|
max_limit: int = 40,
|
|
|
|
):
|
|
|
|
self.default_limit = default_limit
|
|
|
|
self.max_limit = max_limit
|
|
|
|
|
|
|
|
def paginate(
|
|
|
|
self,
|
2023-02-07 19:07:15 +00:00
|
|
|
queryset: models.QuerySet[TM],
|
2022-12-12 07:38:02 +00:00
|
|
|
min_id: str | None,
|
|
|
|
max_id: str | None,
|
|
|
|
since_id: str | None,
|
|
|
|
limit: int | None,
|
2023-02-07 19:07:15 +00:00
|
|
|
) -> PaginationResult[TM]:
|
2023-01-09 16:08:16 +00:00
|
|
|
# These "does not start with interaction" checks can be removed after a
|
|
|
|
# couple months, when clients have flushed them out.
|
|
|
|
if max_id and not max_id.startswith("interaction"):
|
2023-01-09 06:06:09 +00:00
|
|
|
queryset = queryset.filter(id__lt=max_id)
|
2023-01-09 16:08:16 +00:00
|
|
|
if since_id and not since_id.startswith("interaction"):
|
2023-01-09 06:06:09 +00:00
|
|
|
queryset = queryset.filter(id__gt=since_id)
|
2023-01-09 16:08:16 +00:00
|
|
|
if min_id and not min_id.startswith("interaction"):
|
2023-01-09 06:06:09 +00:00
|
|
|
# Min ID requires items _immediately_ newer than specified, so we
|
|
|
|
# invert the ordering to accommodate
|
|
|
|
queryset = queryset.filter(id__gt=min_id).order_by("id")
|
|
|
|
else:
|
|
|
|
queryset = queryset.order_by("-id")
|
|
|
|
|
|
|
|
limit = min(limit or self.default_limit, self.max_limit)
|
|
|
|
return PaginationResult(
|
|
|
|
results=list(queryset[:limit]),
|
|
|
|
limit=limit,
|
|
|
|
)
|
|
|
|
|
|
|
|
def paginate_home(
|
|
|
|
self,
|
|
|
|
queryset,
|
|
|
|
min_id: str | None,
|
|
|
|
max_id: str | None,
|
|
|
|
since_id: str | None,
|
|
|
|
limit: int | None,
|
|
|
|
) -> PaginationResult:
|
|
|
|
"""
|
|
|
|
The home timeline requires special handling where we mix Posts and
|
|
|
|
PostInteractions together.
|
|
|
|
"""
|
2023-01-09 16:08:16 +00:00
|
|
|
if max_id and not max_id.startswith("interaction"):
|
2022-12-12 07:38:02 +00:00
|
|
|
queryset = queryset.filter(
|
2023-01-09 06:06:09 +00:00
|
|
|
models.Q(subject_post_id__lt=max_id)
|
|
|
|
| models.Q(subject_post_interaction_id__lt=max_id)
|
2022-12-12 07:38:02 +00:00
|
|
|
)
|
2022-12-29 17:31:32 +00:00
|
|
|
|
2023-01-09 16:08:16 +00:00
|
|
|
if since_id and not since_id.startswith("interaction"):
|
2022-12-12 07:38:02 +00:00
|
|
|
queryset = queryset.filter(
|
2023-01-09 16:01:28 +00:00
|
|
|
models.Q(subject_post_id__gt=since_id)
|
|
|
|
| models.Q(subject_post_interaction_id__gt=since_id)
|
2022-12-12 07:38:02 +00:00
|
|
|
)
|
2022-12-29 17:31:32 +00:00
|
|
|
|
2023-01-09 16:08:16 +00:00
|
|
|
if min_id and not min_id.startswith("interaction"):
|
2022-12-12 07:38:02 +00:00
|
|
|
# Min ID requires items _immediately_ newer than specified, so we
|
2022-12-29 17:31:32 +00:00
|
|
|
# invert the ordering to accommodate
|
2022-12-12 07:38:02 +00:00
|
|
|
queryset = queryset.filter(
|
2023-01-09 16:01:28 +00:00
|
|
|
models.Q(subject_post_id__gt=min_id)
|
|
|
|
| models.Q(subject_post_interaction_id__gt=min_id)
|
2023-01-09 06:06:09 +00:00
|
|
|
).order_by("id")
|
2022-12-12 07:38:02 +00:00
|
|
|
else:
|
2023-01-09 06:06:09 +00:00
|
|
|
queryset = queryset.order_by("-id")
|
2022-12-29 17:31:32 +00:00
|
|
|
|
|
|
|
limit = min(limit or self.default_limit, self.max_limit)
|
|
|
|
return PaginationResult(
|
|
|
|
results=list(queryset[:limit]),
|
|
|
|
limit=limit,
|
|
|
|
)
|