diff options
author | Roger Braun <roger@rogerbraun.net> | 2017-09-12 09:11:36 +0200 |
---|---|---|
committer | Roger Braun <roger@rogerbraun.net> | 2017-09-12 09:11:36 +0200 |
commit | cda01285f4f36ffaac0034d6f0a5da64b4a26a58 (patch) | |
tree | 130ca41df7a30354ca8c689a2e38cbfea0fbd89b /lib | |
parent | f1d9f2f6cd5e592f3bcb4f2a7d1e7c616d9a712f (diff) | |
download | pleroma-cda01285f4f36ffaac0034d6f0a5da64b4a26a58.tar.gz |
Add pagination to notifications.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/notification.ex | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/pleroma/notification.ex b/lib/pleroma/notification.ex index 4a9e835bf..35f817d1d 100644 --- a/lib/pleroma/notification.ex +++ b/lib/pleroma/notification.ex @@ -11,12 +11,28 @@ defmodule Pleroma.Notification do timestamps() end + # TODO: Make generic and unify (see activity_pub.ex) + defp restrict_max(query, %{"max_id" => max_id}) do + from activity in query, where: activity.id < ^max_id + end + defp restrict_max(query, _), do: query + + defp restrict_since(query, %{"since_id" => since_id}) do + from activity in query, where: activity.id > ^since_id + end + defp restrict_since(query, _), do: query + def for_user(user, opts \\ %{}) do query = from n in Notification, where: n.user_id == ^user.id, order_by: [desc: n.id], preload: [:activity], limit: 20 + + query = query + |> restrict_since(opts) + |> restrict_max(opts) + Repo.all(query) end |