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