chinwagsocial/app/services/block_service.rb

18 lines
616 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)
2017-02-11 12:12:05 +11:00
NotificationWorker.perform_async(stream_entry_to_xml(block.stream_entry), account.id, target_account.id) unless target_account.local?
2016-10-04 03:17:06 +11:00
end
end