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

                                                   
                                                             


         
                                  
                                                                                                                        

                         
                                                     

                                                   
             
     
   
# frozen_string_literal: true

class UnblockService < BaseService
  def call(account, target_account)
    return unless account.blocking?(target_account)

    unblock = account.unblock!(target_account)
    create_notification(unblock) unless target_account.local?
    unblock
  end

  private

  def create_notification(unblock)
    ActivityPub::DeliveryWorker.perform_async(build_json(unblock), unblock.account_id, unblock.target_account.inbox_url)
  end

  def build_json(unblock)
    ActiveModelSerializers::SerializableResource.new(
      unblock,
      serializer: ActivityPub::UndoBlockSerializer,
      adapter: ActivityPub::Adapter
    ).to_json
  end
end