Unblock domain service specs/refactor (#2867)
* Add spec for unblock domain service * Refactor UnblockDomainService
This commit is contained in:
parent
ada8a6cb77
commit
b8ba719f73
2 changed files with 66 additions and 10 deletions
|
@ -1,17 +1,27 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
class UnblockDomainService < BaseService
|
||||
attr_accessor :domain_block
|
||||
|
||||
def call(domain_block, retroactive)
|
||||
if retroactive
|
||||
accounts = Account.where(domain: domain_block.domain).in_batches
|
||||
|
||||
if domain_block.silence?
|
||||
accounts.update_all(silenced: false)
|
||||
else
|
||||
accounts.update_all(suspended: false)
|
||||
end
|
||||
end
|
||||
|
||||
@domain_block = domain_block
|
||||
process_retroactive_updates if retroactive
|
||||
domain_block.destroy
|
||||
end
|
||||
|
||||
def process_retroactive_updates
|
||||
blocked_accounts.in_batches.update_all(update_options)
|
||||
end
|
||||
|
||||
def blocked_accounts
|
||||
Account.where(domain: domain_block.domain)
|
||||
end
|
||||
|
||||
def update_options
|
||||
{ domain_block_impact => false }
|
||||
end
|
||||
|
||||
def domain_block_impact
|
||||
domain_block.silence? ? :silenced : :suspended
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue