2016-11-16 02:56:29 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-10-04 03:17:06 +11:00
|
|
|
class UnblockService < BaseService
|
2019-06-05 07:11:18 +10:00
|
|
|
include Payloadable
|
|
|
|
|
2016-10-04 03:17:06 +11:00
|
|
|
def call(account, target_account)
|
2017-01-03 00:19:02 +11:00
|
|
|
return unless account.blocking?(target_account)
|
|
|
|
|
|
|
|
unblock = account.unblock!(target_account)
|
2019-07-07 07:26:16 +10:00
|
|
|
create_notification(unblock) if !target_account.local? && target_account.activitypub?
|
2017-08-13 08:44:41 +10:00
|
|
|
unblock
|
2017-02-12 10:48:53 +11:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-08-13 08:44:41 +10:00
|
|
|
def create_notification(unblock)
|
2019-07-07 07:26:16 +10:00
|
|
|
ActivityPub::DeliveryWorker.perform_async(build_json(unblock), unblock.account_id, unblock.target_account.inbox_url)
|
2017-08-13 08:44:41 +10:00
|
|
|
end
|
|
|
|
|
|
|
|
def build_json(unblock)
|
2019-06-05 07:11:18 +10:00
|
|
|
Oj.dump(serialize_payload(unblock, ActivityPub::UndoBlockSerializer))
|
2017-08-13 08:44:41 +10:00
|
|
|
end
|
2016-10-04 03:17:06 +11:00
|
|
|
end
|