logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma
commit: 91928b06ab9574f68a48003401083783a540da87
parent: e946f300ae97a7531259a14511f43cb75efa7dd0
Author: lain <lain@soykaf.club>
Date:   Mon, 12 Feb 2018 08:15:37 +0100

Merge branch 'hakabahitoyo/pleroma-feature/atom-feed-pagination' into develop

Diffstat:

Mlib/pleroma/web/ostatus/feed_representer.ex12+++++++++++-
Mlib/pleroma/web/ostatus/ostatus_controller.ex8+++++++-
Mtest/web/ostatus/feed_representer_test.exs1+
3 files changed, 19 insertions(+), 2 deletions(-)

diff --git a/lib/pleroma/web/ostatus/feed_representer.ex b/lib/pleroma/web/ostatus/feed_representer.ex @@ -10,6 +10,8 @@ defmodule Pleroma.Web.OStatus.FeedRepresenter do h = fn(str) -> [to_charlist(str)] end + last_activity = List.last(activities) + entries = activities |> Enum.map(fn(activity) -> {:entry, ActivityRepresenter.to_simple_form(activity, user)} @@ -32,7 +34,15 @@ defmodule Pleroma.Web.OStatus.FeedRepresenter do {:link, [rel: 'salmon', href: h.(OStatus.salmon_path(user))], []}, {:link, [rel: 'self', href: h.(OStatus.feed_path(user)), type: 'application/atom+xml'], []}, {:author, UserRepresenter.to_simple_form(user)}, - ] ++ entries + ] ++ + if last_activity do + [{:link, [rel: 'next', + href: to_charlist(OStatus.feed_path(user)) ++ '?max_id=' ++ to_charlist(last_activity.id), + type: 'application/atom+xml'], []}] + else + [] + end + ++ entries }] end end diff --git a/lib/pleroma/web/ostatus/ostatus_controller.ex b/lib/pleroma/web/ostatus/ostatus_controller.ex @@ -17,7 +17,7 @@ defmodule Pleroma.Web.OStatus.OStatusController do end end - def feed(conn, %{"nickname" => nickname}) do + def feed(conn, %{"nickname" => nickname} = params) do user = User.get_cached_by_nickname(nickname) query = from activity in Activity, where: fragment("?->>'actor' = ?", activity.data, ^user.ap_id), @@ -25,6 +25,7 @@ defmodule Pleroma.Web.OStatus.OStatusController do order_by: [desc: :id] activities = query + |> restrict_max(params) |> Repo.all response = user @@ -54,6 +55,11 @@ defmodule Pleroma.Web.OStatus.OStatusController do end end + 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 + def salmon_incoming(conn, _) do {:ok, body, _conn} = read_body(conn) {:ok, doc} = decode_or_retry(body) diff --git a/test/web/ostatus/feed_representer_test.exs b/test/web/ostatus/feed_representer_test.exs @@ -33,6 +33,7 @@ defmodule Pleroma.Web.OStatus.FeedRepresenterTest do <author> #{user_xml} </author> + <link rel="next" href="#{OStatus.feed_path(user)}?max_id=#{note_activity.id}" type="application/atom+xml" /> <entry> #{entry_xml} </entry>