2018-03-04 00:19:11 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-07-16 15:00:39 -07:00
|
|
|
class ActivityPub::CollectionsController < ActivityPub::BaseController
|
2018-03-04 00:19:11 -08:00
|
|
|
include SignatureVerification
|
2019-07-08 03:03:45 -07:00
|
|
|
include AccountOwnedConcern
|
2018-03-04 00:19:11 -08:00
|
|
|
|
2019-07-11 11:11:09 -07:00
|
|
|
before_action :require_signature!, if: :authorized_fetch_mode?
|
2018-03-04 00:19:11 -08:00
|
|
|
before_action :set_size
|
|
|
|
before_action :set_statuses
|
2019-04-03 16:30:44 -07:00
|
|
|
before_action :set_cache_headers
|
2018-03-04 00:19:11 -08:00
|
|
|
|
|
|
|
def show
|
2019-07-11 11:11:09 -07:00
|
|
|
expires_in 3.minutes, public: public_fetch_mode?
|
2019-07-21 13:32:16 -07:00
|
|
|
render_with_cache json: collection_presenter, content_type: 'application/activity+json', serializer: ActivityPub::CollectionSerializer, adapter: ActivityPub::Adapter, skip_activities: true
|
2018-03-04 00:19:11 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_statuses
|
2018-05-04 10:19:11 -07:00
|
|
|
@statuses = scope_for_collection
|
2018-03-04 00:19:11 -08:00
|
|
|
@statuses = cache_collection(@statuses, Status)
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_size
|
|
|
|
case params[:id]
|
|
|
|
when 'featured'
|
|
|
|
@account.pinned_statuses.count
|
|
|
|
else
|
2018-12-10 12:39:25 -08:00
|
|
|
raise ActiveRecord::RecordNotFound
|
2018-03-04 00:19:11 -08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def scope_for_collection
|
|
|
|
case params[:id]
|
|
|
|
when 'featured'
|
|
|
|
@account.statuses.permitted_for(@account, signed_request_account).tap do |scope|
|
|
|
|
scope.merge!(@account.pinned_statuses)
|
|
|
|
end
|
|
|
|
else
|
2018-12-10 12:39:25 -08:00
|
|
|
raise ActiveRecord::RecordNotFound
|
2018-03-04 00:19:11 -08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def collection_presenter
|
|
|
|
ActivityPub::CollectionPresenter.new(
|
|
|
|
id: account_collection_url(@account, params[:id]),
|
|
|
|
type: :ordered,
|
|
|
|
size: @size,
|
|
|
|
items: @statuses
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|