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