about summary refs log tree commit diff
path: root/app/services/unblock_service.rb
blob: 95a858e9f59a8174502a40fe705ef9125ecdf1a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# frozen_string_literal: true

class UnblockService < BaseService
  include Payloadable

  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)
    if unblock.target_account.ostatus?
      NotificationWorker.perform_async(build_xml(unblock), unblock.account_id, unblock.target_account_id)
    elsif unblock.target_account.activitypub?
      ActivityPub::DeliveryWorker.perform_async(build_json(unblock), unblock.account_id, unblock.target_account.inbox_url)
    end
  end

  def build_json(unblock)
    Oj.dump(serialize_payload(unblock, ActivityPub::UndoBlockSerializer))
  end

  def build_xml(block)
    OStatus::AtomSerializer.render(OStatus::AtomSerializer.new.unblock_salmon(block))
  end
end