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