Browse Source

Refactor domain_blocks_controller (#2843)

* Set domain_block by before_action

* Cast value with ActiveRecord::Type

* Batch update
master
alpaca-tc 7 years ago
committed by Eugen Rochko
parent
commit
a0b1951791
3 changed files with 13 additions and 8 deletions
  1. +8
    -5
      app/controllers/admin/domain_blocks_controller.rb
  2. +1
    -1
      app/services/block_domain_service.rb
  3. +4
    -2
      app/services/unblock_domain_service.rb

+ 8
- 5
app/controllers/admin/domain_blocks_controller.rb View File

@@ -2,6 +2,8 @@

module Admin
class DomainBlocksController < BaseController
before_action :set_domain_block, only: [:show, :destroy]

def index
@domain_blocks = DomainBlock.page(params[:page])
end
@@ -21,24 +23,25 @@ module Admin
end
end

def show
@domain_block = DomainBlock.find(params[:id])
end
def show; end

def destroy
@domain_block = DomainBlock.find(params[:id])
UnblockDomainService.new.call(@domain_block, retroactive_unblock?)
redirect_to admin_domain_blocks_path, notice: I18n.t('admin.domain_blocks.destroyed_msg')
end

private

def set_domain_block
@domain_block = DomainBlock.find(params[:id])
end

def resource_params
params.require(:domain_block).permit(:domain, :severity, :reject_media, :retroactive)
end

def retroactive_unblock?
resource_params[:retroactive] == '1'
ActiveRecord::Type.lookup(:boolean).cast(resource_params[:retroactive])
end
end
end

+ 1
- 1
app/services/block_domain_service.rb View File

@@ -19,7 +19,7 @@ class BlockDomainService < BaseService
end

def silence_accounts!
blocked_domain_accounts.update_all(silenced: true)
blocked_domain_accounts.in_batches.update_all(silenced: true)
clear_media! if domain_block.reject_media?
end



+ 4
- 2
app/services/unblock_domain_service.rb View File

@@ -3,10 +3,12 @@
class UnblockDomainService < BaseService
def call(domain_block, retroactive)
if retroactive
accounts = Account.where(domain: domain_block.domain).in_batches

if domain_block.silence?
Account.where(domain: domain_block.domain).update_all(silenced: false)
accounts.update_all(silenced: false)
else
Account.where(domain: domain_block.domain).update_all(suspended: false)
accounts.update_all(suspended: false)
end
end



Loading…
Cancel
Save