* Allow domain blocks to reject media without silencing or suspending * Fix typo * Hide 'Reject media' button when superfluous, instead of disabling it * Properly hide 'reject media' checkbox on page load if needed This may happen when resubmitting the domain block form after an error. * Don't ask whether undoing a media-only block should be retroactive * Rename :media_only block to :noop * Display :noop block as None in frontend, allow blocks that do nothing * Remove 'coding' line auto-added by emacs
		
			
				
	
	
		
			28 lines
		
	
	
		
			608 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			608 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| class UnblockDomainService < BaseService
 | |
|   attr_accessor :domain_block
 | |
| 
 | |
|   def call(domain_block, retroactive)
 | |
|     @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) unless domain_block.noop?
 | |
|   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
 |