2016-11-15 10:56:29 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-10-03 12:17:06 -04:00
|
|
|
class UnblockService < BaseService
|
|
|
|
def call(account, target_account)
|
2017-01-02 08:19:02 -05:00
|
|
|
return unless account.blocking?(target_account)
|
|
|
|
|
|
|
|
unblock = account.unblock!(target_account)
|
2017-08-12 18:44:41 -04:00
|
|
|
create_notification(unblock) unless target_account.local?
|
|
|
|
unblock
|
2017-02-11 18:48:53 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-08-12 18:44:41 -04: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)
|
2017-08-26 07:47:38 -04:00
|
|
|
Oj.dump(ActivityPub::LinkedDataSignature.new(ActiveModelSerializers::SerializableResource.new(
|
2017-08-12 18:44:41 -04:00
|
|
|
unblock,
|
|
|
|
serializer: ActivityPub::UndoBlockSerializer,
|
|
|
|
adapter: ActivityPub::Adapter
|
2017-08-26 07:47:38 -04:00
|
|
|
).as_json).sign!(unblock.account))
|
2017-08-12 18:44:41 -04:00
|
|
|
end
|
|
|
|
|
2017-02-11 18:48:53 -05:00
|
|
|
def build_xml(block)
|
2017-07-18 19:37:26 -04:00
|
|
|
OStatus::AtomSerializer.render(OStatus::AtomSerializer.new.unblock_salmon(block))
|
2016-10-03 12:17:06 -04:00
|
|
|
end
|
|
|
|
end
|