2017-04-19 20:52:37 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class FollowingAccountsController < ApplicationController
|
|
|
|
include AccountControllerConcern
|
2019-07-12 03:11:09 +09:00
|
|
|
include SignatureVerification
|
2017-04-19 20:52:37 +09:00
|
|
|
|
2023-04-24 05:27:24 +09:00
|
|
|
vary_by -> { public_fetch_mode? ? 'Accept, Accept-Language, Cookie' : 'Accept, Accept-Language, Cookie, Signature' }
|
2023-04-19 23:07:29 +09:00
|
|
|
|
2022-09-22 05:45:57 +09:00
|
|
|
before_action :require_account_signature!, if: -> { request.format == :json && authorized_fetch_mode? }
|
2019-04-04 08:30:44 +09:00
|
|
|
|
2019-08-13 05:26:07 +09:00
|
|
|
skip_around_action :set_locale, if: -> { request.format == :json }
|
2023-08-03 02:32:48 +09:00
|
|
|
skip_before_action :require_functional!, unless: :limited_federation_mode?
|
2019-08-13 05:26:07 +09:00
|
|
|
|
2017-04-19 20:52:37 +09:00
|
|
|
def index
|
2017-07-15 10:01:39 +09:00
|
|
|
respond_to do |format|
|
2018-02-27 00:18:41 +09:00
|
|
|
format.html do
|
2023-04-28 17:27:26 +09:00
|
|
|
expires_in(15.seconds, public: true, stale_while_revalidate: 30.seconds, stale_if_error: 1.hour) unless user_signed_in?
|
2018-02-27 00:18:41 +09:00
|
|
|
end
|
2017-07-15 10:01:39 +09:00
|
|
|
|
|
|
|
format.json do
|
2022-05-01 07:56:34 +09:00
|
|
|
if page_requested? && @account.hide_collections?
|
|
|
|
forbidden
|
|
|
|
next
|
|
|
|
end
|
2018-05-18 09:26:51 +09:00
|
|
|
|
2019-07-12 03:11:09 +09:00
|
|
|
expires_in(page_requested? ? 0 : 3.minutes, public: public_fetch_mode?)
|
2019-04-04 08:30:44 +09:00
|
|
|
|
2017-10-08 00:43:42 +09:00
|
|
|
render json: collection_presenter,
|
|
|
|
serializer: ActivityPub::CollectionSerializer,
|
|
|
|
adapter: ActivityPub::Adapter,
|
2020-03-09 08:10:29 +09:00
|
|
|
content_type: 'application/activity+json',
|
|
|
|
fields: restrict_fields_to
|
2017-07-15 10:01:39 +09:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2018-05-05 03:17:01 +09:00
|
|
|
def follows
|
2019-12-31 08:55:32 +09:00
|
|
|
return @follows if defined?(@follows)
|
|
|
|
|
|
|
|
scope = Follow.where(account: @account)
|
|
|
|
scope = scope.where.not(target_account_id: current_account.excluded_from_timeline_account_ids) if user_signed_in?
|
|
|
|
@follows = scope.recent.page(params[:page]).per(FOLLOW_PER_PAGE).preload(:target_account)
|
2018-05-05 03:17:01 +09:00
|
|
|
end
|
|
|
|
|
2019-07-12 03:11:09 +09:00
|
|
|
def page_requested?
|
|
|
|
params[:page].present?
|
|
|
|
end
|
|
|
|
|
2017-09-19 23:37:06 +09:00
|
|
|
def page_url(page)
|
|
|
|
account_following_index_url(@account, page: page) unless page.nil?
|
|
|
|
end
|
|
|
|
|
2020-11-08 08:28:39 +09:00
|
|
|
def next_page_url
|
|
|
|
page_url(follows.next_page) if follows.respond_to?(:next_page)
|
|
|
|
end
|
|
|
|
|
|
|
|
def prev_page_url
|
|
|
|
page_url(follows.prev_page) if follows.respond_to?(:prev_page)
|
|
|
|
end
|
|
|
|
|
2017-07-15 10:01:39 +09:00
|
|
|
def collection_presenter
|
2019-07-12 03:11:09 +09:00
|
|
|
if page_requested?
|
2018-05-05 03:17:01 +09:00
|
|
|
ActivityPub::CollectionPresenter.new(
|
|
|
|
id: account_following_index_url(@account, page: params.fetch(:page, 1)),
|
|
|
|
type: :ordered,
|
|
|
|
size: @account.following_count,
|
2022-12-16 01:11:58 +09:00
|
|
|
items: follows.map { |follow| ActivityPub::TagManager.instance.uri_for(follow.target_account) },
|
2018-05-05 03:17:01 +09:00
|
|
|
part_of: account_following_index_url(@account),
|
2020-11-08 08:28:39 +09:00
|
|
|
next: next_page_url,
|
|
|
|
prev: prev_page_url
|
2018-05-05 03:17:01 +09:00
|
|
|
)
|
2017-09-19 23:37:06 +09:00
|
|
|
else
|
|
|
|
ActivityPub::CollectionPresenter.new(
|
|
|
|
id: account_following_index_url(@account),
|
|
|
|
type: :ordered,
|
|
|
|
size: @account.following_count,
|
2018-05-05 03:17:01 +09:00
|
|
|
first: page_url(1)
|
2017-09-19 23:37:06 +09:00
|
|
|
)
|
|
|
|
end
|
2017-04-19 20:52:37 +09:00
|
|
|
end
|
2020-03-09 08:10:29 +09:00
|
|
|
|
|
|
|
def restrict_fields_to
|
2022-03-07 17:36:47 +09:00
|
|
|
if page_requested? || !@account.hide_collections?
|
2020-03-09 08:10:29 +09:00
|
|
|
# Return all fields
|
|
|
|
else
|
2021-06-22 03:14:47 +09:00
|
|
|
%i(id type total_items)
|
2020-03-09 08:10:29 +09:00
|
|
|
end
|
|
|
|
end
|
2017-04-19 20:52:37 +09:00
|
|
|
end
|