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