]> cat aescling's git repositories - mastodon.git/blobdiff - app/controllers/following_accounts_controller.rb
Use OrderedCollectionPage to return followers/following list (#4949)
[mastodon.git] / app / controllers / following_accounts_controller.rb
index d4593093ff643bcae53b00ca1fb1f2f7b5e23750..1ca6f0fe7d5adc95ccc89800ceb5d1d9e730f66d 100644 (file)
@@ -17,12 +17,29 @@ class FollowingAccountsController < ApplicationController
 
   private
 
+  def page_url(page)
+    account_following_index_url(@account, page: page) unless page.nil?
+  end
+
   def collection_presenter
-    ActivityPub::CollectionPresenter.new(
-      id: account_following_index_url(@account),
+    page = ActivityPub::CollectionPresenter.new(
+      id: account_following_index_url(@account, page: params.fetch(:page, 1)),
       type: :ordered,
       size: @account.following_count,
-      items: @follows.map { |f| ActivityPub::TagManager.instance.uri_for(f.target_account) }
+      items: @follows.map { |f| ActivityPub::TagManager.instance.uri_for(f.target_account) },
+      part_of: account_following_index_url(@account),
+      next: page_url(@follows.next_page),
+      prev: page_url(@follows.prev_page)
     )
+    if params[:page].present?
+      page
+    else
+      ActivityPub::CollectionPresenter.new(
+        id: account_following_index_url(@account),
+        type: :ordered,
+        size: @account.following_count,
+        first: page
+      )
+    end
   end
 end
This page took 0.041502 seconds and 3 git commands to generate.