about summary refs log blame commit diff
path: root/app/services/activitypub/process_collection_service.rb
blob: bc04c50ba127c6bb36dff8862de575b7e9142d41 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11









                                                         
                                                      
 












                                                     


                                                                                                         










                                                                
                     
                                                                          
     
   
# frozen_string_literal: true

class ActivityPub::ProcessCollectionService < BaseService
  include JsonLdHelper

  def call(body, account)
    @account = account
    @json    = Oj.load(body, mode: :strict)

    return if @account.suspended? || !supported_context?

    return if different_actor? && verify_account!.nil?

    case @json['type']
    when 'Collection', 'CollectionPage'
      process_items @json['items']
    when 'OrderedCollection', 'OrderedCollectionPage'
      process_items @json['orderedItems']
    else
      process_items [@json]
    end
  rescue Oj::ParseError
    nil
  end

  private

  def different_actor?
    @json['actor'].present? && value_or_id(@json['actor']) != @account.uri && @json['signature'].present?
  end

  def process_items(items)
    items.reverse_each.map { |item| process_item(item) }.compact
  end

  def supported_context?
    super(@json)
  end

  def process_item(item)
    activity = ActivityPub::Activity.factory(item, @account)
    activity&.perform
  end

  def verify_account!
    @account = ActivityPub::LinkedDataSignature.new(@json).verify_account!
  end
end