2016-11-15 16:56:29 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-10-03 18:17:06 +02:00
|
|
|
class UnblockService < BaseService
|
2019-06-04 23:11:18 +02:00
|
|
|
include Payloadable
|
|
|
|
|
2016-10-03 18:17:06 +02:00
|
|
|
def call(account, target_account)
|
2017-01-02 14:19:02 +01:00
|
|
|
return unless account.blocking?(target_account)
|
|
|
|
|
|
|
|
unblock = account.unblock!(target_account)
|
2017-08-13 00:44:41 +02:00
|
|
|
create_notification(unblock) unless target_account.local?
|
|
|
|
unblock
|
2017-02-12 00:48:53 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-08-13 00:44:41 +02:00
|
|
|
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)
|
2019-06-04 23:11:18 +02:00
|
|
|
Oj.dump(serialize_payload(unblock, ActivityPub::UndoBlockSerializer))
|
2017-08-13 00:44:41 +02:00
|
|
|
end
|
|
|
|
|
2017-02-12 00:48:53 +01:00
|
|
|
def build_xml(block)
|
2017-07-19 01:37:26 +02:00
|
|
|
OStatus::AtomSerializer.render(OStatus::AtomSerializer.new.unblock_salmon(block))
|
2016-10-03 18:17:06 +02:00
|
|
|
end
|
|
|
|
end
|