You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
618 B
24 lines
618 B
# frozen_string_literal: true
|
|
|
|
class UnblockService < BaseService
|
|
include Payloadable
|
|
|
|
def call(account, target_account)
|
|
return unless account.blocking?(target_account)
|
|
|
|
unblock = account.unblock!(target_account)
|
|
create_notification(unblock) if !target_account.local? && target_account.activitypub?
|
|
unblock
|
|
end
|
|
|
|
private
|
|
|
|
def create_notification(unblock)
|
|
ActivityPub::DeliveryWorker.perform_async(build_json(unblock), unblock.account_id, unblock.target_account.inbox_url)
|
|
end
|
|
|
|
def build_json(unblock)
|
|
Oj.dump(serialize_payload(unblock, ActivityPub::UndoBlockSerializer))
|
|
end
|
|
end
|