2017-04-19 07:52:37 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class FollowerAccountsController < ApplicationController
|
|
|
|
include AccountControllerConcern
|
|
|
|
|
|
|
|
def index
|
2017-05-23 07:12:19 -04:00
|
|
|
@follows = Follow.where(target_account: @account).recent.page(params[:page]).per(FOLLOW_PER_PAGE).preload(:account)
|
2017-07-14 21:01:39 -04:00
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html
|
|
|
|
|
|
|
|
format.json do
|
2017-10-07 11:43:42 -04:00
|
|
|
render json: collection_presenter,
|
|
|
|
serializer: ActivityPub::CollectionSerializer,
|
|
|
|
adapter: ActivityPub::Adapter,
|
|
|
|
content_type: 'application/activity+json'
|
2017-07-14 21:01:39 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-09-19 10:37:06 -04:00
|
|
|
def page_url(page)
|
|
|
|
account_followers_url(@account, page: page) unless page.nil?
|
|
|
|
end
|
|
|
|
|
2017-07-14 21:01:39 -04:00
|
|
|
def collection_presenter
|
2017-09-19 10:37:06 -04:00
|
|
|
page = ActivityPub::CollectionPresenter.new(
|
|
|
|
id: account_followers_url(@account, page: params.fetch(:page, 1)),
|
2017-07-14 21:01:39 -04:00
|
|
|
type: :ordered,
|
|
|
|
size: @account.followers_count,
|
2017-09-19 10:37:06 -04:00
|
|
|
items: @follows.map { |f| ActivityPub::TagManager.instance.uri_for(f.account) },
|
|
|
|
part_of: account_followers_url(@account),
|
|
|
|
next: page_url(@follows.next_page),
|
|
|
|
prev: page_url(@follows.prev_page)
|
2017-07-14 21:01:39 -04:00
|
|
|
)
|
2017-09-19 10:37:06 -04:00
|
|
|
if params[:page].present?
|
|
|
|
page
|
|
|
|
else
|
|
|
|
ActivityPub::CollectionPresenter.new(
|
|
|
|
id: account_followers_url(@account),
|
|
|
|
type: :ordered,
|
|
|
|
size: @account.followers_count,
|
|
|
|
first: page
|
|
|
|
)
|
|
|
|
end
|
2017-04-19 07:52:37 -04:00
|
|
|
end
|
|
|
|
end
|