chinwagsocial/app/services/block_service.rb

24 lines
718 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-10-04 03:17:06 +11:00
class BlockService < BaseService
2017-02-11 12:12:05 +11:00
include StreamEntryRenderer
2016-10-04 03:17:06 +11:00
def call(account, target_account)
return if account.id == target_account.id
UnfollowService.new.call(account, target_account) if account.following?(target_account)
UnfollowService.new.call(target_account, account) if target_account.following?(account)
block = account.block!(target_account)
BlockWorker.perform_async(account.id, target_account.id)
NotificationWorker.perform_async(build_xml(block), account.id, target_account.id) unless target_account.local?
end
private
def build_xml(block)
OStatus::AtomSerializer.render(OStatus::AtomSerializer.new.block_salmon(block))
2016-10-04 03:17:06 +11:00
end
end