mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-15 19:33:32 +00:00
12b935fadf
Conflicts: - `.github/dependabot.yml`: Updated upstream, removed in glitch-soc to disable noise. Kept removed. - `CODE_OF_CONDUCT.md`: Upstream updated to a new version of the covenant, but I have not read it yet, so kept unchanged. - `Gemfile.lock`: Not a real conflict, one upstream dependency updated textually too close to the glitch-soc only `hcaptcha` dependency. Applied upstream changes. - `app/controllers/admin/base_controller.rb`: Minor conflict due to glitch-soc's theming system. Applied upstream changes. - `app/controllers/application_controller.rb`: Minor conflict due to glitch-soc's theming system. Applied upstream changes. - `app/controllers/disputes/base_controller.rb`: Minor conflict due to glitch-soc's theming system. Applied upstream changes. - `app/controllers/relationships_controller.rb`: Minor conflict due to glitch-soc's theming system. Applied upstream changes. - `app/controllers/statuses_cleanup_controller.rb`: Minor conflict due to glitch-soc's theming system. Applied upstream changes. - `app/helpers/application_helper.rb`: Minor conflict due to glitch-soc's theming system. Applied upstream changes. - `app/javascript/mastodon/features/compose/components/compose_form.jsx`: Upstream added a highlight animation for onboarding, while we changed the max character limit. Applied our local changes on top of upstream's new version. - `app/views/layouts/application.html.haml`: Minor conflict due to glitch-soc's theming system. Applied upstream changes. - `stylelint.config.js`: Upstream added ignore paths, glitch-soc had extra ignore paths. Added the same paths as upstream.
90 lines
2.7 KiB
Ruby
90 lines
2.7 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class FollowerAccountsController < ApplicationController
|
|
include AccountControllerConcern
|
|
include SignatureVerification
|
|
include WebAppControllerConcern
|
|
|
|
vary_by -> { public_fetch_mode? ? 'Accept, Accept-Language, Cookie' : 'Accept, Accept-Language, Cookie, Signature' }
|
|
|
|
before_action :require_account_signature!, if: -> { request.format == :json && authorized_fetch_mode? }
|
|
|
|
skip_around_action :set_locale, if: -> { request.format == :json }
|
|
skip_before_action :require_functional!, unless: :whitelist_mode?
|
|
|
|
def index
|
|
respond_to do |format|
|
|
format.html do
|
|
expires_in(15.seconds, public: true, stale_while_revalidate: 30.seconds, stale_if_error: 1.hour) unless user_signed_in?
|
|
end
|
|
|
|
format.json do
|
|
raise Mastodon::NotPermittedError if page_requested? && @account.hide_collections?
|
|
|
|
expires_in(page_requested? ? 0 : 3.minutes, public: public_fetch_mode?)
|
|
|
|
render json: collection_presenter,
|
|
serializer: ActivityPub::CollectionSerializer,
|
|
adapter: ActivityPub::Adapter,
|
|
content_type: 'application/activity+json',
|
|
fields: restrict_fields_to
|
|
end
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def follows
|
|
return @follows if defined?(@follows)
|
|
|
|
scope = Follow.where(target_account: @account)
|
|
scope = scope.where.not(account_id: current_account.excluded_from_timeline_account_ids) if user_signed_in?
|
|
@follows = scope.recent.page(params[:page]).per(FOLLOW_PER_PAGE).preload(:account)
|
|
end
|
|
|
|
def page_requested?
|
|
params[:page].present?
|
|
end
|
|
|
|
def page_url(page)
|
|
account_followers_url(@account, page: page) unless page.nil?
|
|
end
|
|
|
|
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
|
|
|
|
def collection_presenter
|
|
options = { type: :ordered }
|
|
options[:size] = @account.followers_count unless Setting.hide_followers_count || @account.user&.setting_hide_followers_count
|
|
if page_requested?
|
|
ActivityPub::CollectionPresenter.new(
|
|
id: account_followers_url(@account, page: params.fetch(:page, 1)),
|
|
items: follows.map { |follow| ActivityPub::TagManager.instance.uri_for(follow.account) },
|
|
part_of: account_followers_url(@account),
|
|
next: next_page_url,
|
|
prev: prev_page_url,
|
|
**options
|
|
)
|
|
else
|
|
ActivityPub::CollectionPresenter.new(
|
|
id: account_followers_url(@account),
|
|
first: page_url(1),
|
|
**options
|
|
)
|
|
end
|
|
end
|
|
|
|
def restrict_fields_to
|
|
if page_requested? || !@account.hide_collections?
|
|
# Return all fields
|
|
else
|
|
%i(id type total_items)
|
|
end
|
|
end
|
|
end
|