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-08-13 22:16:43 -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
|
|
|
|
|
|
|
|
def collection_presenter
|
|
|
|
ActivityPub::CollectionPresenter.new(
|
|
|
|
id: account_followers_url(@account),
|
|
|
|
type: :ordered,
|
|
|
|
size: @account.followers_count,
|
|
|
|
items: @follows.map { |f| ActivityPub::TagManager.instance.uri_for(f.account) }
|
|
|
|
)
|
2017-04-19 07:52:37 -04:00
|
|
|
end
|
|
|
|
end
|