mastodon/app/services/unblock_domain_service.rb

40 lines
914 B
Ruby

# frozen_string_literal: true
class UnblockDomainService < BaseService
attr_accessor :domain_block
def call(domain_block, destroy_domain_block = true)
@domain_block = domain_block
process_retroactive_updates
domain_block.destroy if destroy_domain_block
end
def process_retroactive_updates
blocked_accounts.in_batches.update_all(update_options) unless domain_block.noop?
end
def blocked_accounts
scope = Account.where(domain: domain_block.domain)
if domain_block.silence?
scope.where(silenced_at: @domain_block.created_at)
else
scope.where(suspended_at: @domain_block.created_at)
end
end
def update_options
{ domain_block_impact => nil }
end
def domain_block_impact
case @domain_block.severity
when 'force_unlisted'
:force_unlisted
when 'silence'
:silenced_at
when 'suspend'
:suspended_at
end
end
end