2016-12-13 07:42:10 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-04-10 15:27:03 -04:00
|
|
|
module Admin
|
|
|
|
class DomainBlocksController < BaseController
|
2023-03-20 15:03:44 -04:00
|
|
|
before_action :set_domain_block, only: [:destroy, :edit, :update]
|
2017-05-06 11:03:34 -04:00
|
|
|
|
2022-11-17 05:05:09 -05:00
|
|
|
def batch
|
|
|
|
authorize :domain_block, :create?
|
|
|
|
@form = Form::DomainBlockBatch.new(form_domain_block_batch_params.merge(current_account: current_account, action: action_from_button))
|
|
|
|
@form.save
|
|
|
|
rescue ActionController::ParameterMissing
|
|
|
|
flash[:alert] = I18n.t('admin.domain_blocks.no_domain_block_selected')
|
|
|
|
rescue Mastodon::NotPermittedError
|
|
|
|
flash[:alert] = I18n.t('admin.domain_blocks.not_permitted')
|
|
|
|
else
|
|
|
|
redirect_to admin_instances_path(limited: '1'), notice: I18n.t('admin.domain_blocks.created_msg')
|
|
|
|
end
|
|
|
|
|
2017-04-10 15:27:03 -04:00
|
|
|
def new
|
2017-11-11 14:23:33 -05:00
|
|
|
authorize :domain_block, :create?
|
2019-01-08 07:39:49 -05:00
|
|
|
@domain_block = DomainBlock.new(domain: params[:_domain])
|
2017-04-10 15:27:03 -04:00
|
|
|
end
|
2017-04-03 12:55:06 -04:00
|
|
|
|
2019-08-07 14:20:23 -04:00
|
|
|
def edit
|
|
|
|
authorize :domain_block, :create?
|
|
|
|
end
|
|
|
|
|
2017-04-10 15:27:03 -04:00
|
|
|
def create
|
2017-11-11 14:23:33 -05:00
|
|
|
authorize :domain_block, :create?
|
|
|
|
|
2017-04-10 15:27:03 -04:00
|
|
|
@domain_block = DomainBlock.new(resource_params)
|
2019-06-21 18:13:10 -04:00
|
|
|
existing_domain_block = resource_params[:domain].present? ? DomainBlock.rule_for(resource_params[:domain]) : nil
|
2017-04-03 12:55:06 -04:00
|
|
|
|
2023-06-01 03:37:38 -04:00
|
|
|
# Disallow accidentally downgrading a domain block
|
2019-05-03 14:36:36 -04:00
|
|
|
if existing_domain_block.present? && !@domain_block.stricter_than?(existing_domain_block)
|
|
|
|
@domain_block.save
|
2023-05-04 05:56:24 -04:00
|
|
|
flash.now[:alert] = I18n.t('admin.domain_blocks.existing_domain_block_html', name: existing_domain_block.domain, unblock_url: admin_domain_block_path(existing_domain_block)).html_safe
|
2021-03-18 21:45:34 -04:00
|
|
|
@domain_block.errors.delete(:domain)
|
2023-06-01 03:37:38 -04:00
|
|
|
return render :new
|
|
|
|
end
|
|
|
|
|
|
|
|
# Allow transparently upgrading a domain block
|
|
|
|
if existing_domain_block.present?
|
|
|
|
@domain_block = existing_domain_block
|
|
|
|
@domain_block.assign_attributes(resource_params)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Require explicit confirmation when suspending
|
|
|
|
return render :confirm_suspension if requires_confirmation?
|
|
|
|
|
|
|
|
if @domain_block.save
|
|
|
|
DomainBlockWorker.perform_async(@domain_block.id)
|
|
|
|
log_action :create, @domain_block
|
|
|
|
redirect_to admin_instances_path(limited: '1'), notice: I18n.t('admin.domain_blocks.created_msg')
|
2019-05-03 14:36:36 -04:00
|
|
|
else
|
2023-06-01 03:37:38 -04:00
|
|
|
render :new
|
2017-04-10 15:27:03 -04:00
|
|
|
end
|
2017-04-03 12:55:06 -04:00
|
|
|
end
|
|
|
|
|
2019-08-07 14:20:23 -04:00
|
|
|
def update
|
2020-12-14 03:06:34 -05:00
|
|
|
authorize :domain_block, :update?
|
2019-08-07 14:20:23 -04:00
|
|
|
|
2023-06-01 03:37:38 -04:00
|
|
|
@domain_block.assign_attributes(update_params)
|
|
|
|
|
|
|
|
# Require explicit confirmation when suspending
|
|
|
|
return render :confirm_suspension if requires_confirmation?
|
|
|
|
|
|
|
|
if @domain_block.save
|
2022-12-15 11:45:02 -05:00
|
|
|
DomainBlockWorker.perform_async(@domain_block.id, @domain_block.severity_previously_changed?)
|
2020-12-14 03:06:34 -05:00
|
|
|
log_action :update, @domain_block
|
2019-08-07 14:20:23 -04:00
|
|
|
redirect_to admin_instances_path(limited: '1'), notice: I18n.t('admin.domain_blocks.created_msg')
|
|
|
|
else
|
|
|
|
render :edit
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-04-16 06:51:30 -04:00
|
|
|
def destroy
|
2017-11-11 14:23:33 -05:00
|
|
|
authorize @domain_block, :destroy?
|
2019-05-14 13:05:02 -04:00
|
|
|
UnblockDomainService.new.call(@domain_block)
|
2017-11-23 20:05:53 -05:00
|
|
|
log_action :destroy, @domain_block
|
2019-01-08 07:39:49 -05:00
|
|
|
redirect_to admin_instances_path(limited: '1'), notice: I18n.t('admin.domain_blocks.destroyed_msg')
|
2017-04-16 06:51:30 -04:00
|
|
|
end
|
|
|
|
|
2017-04-10 15:27:03 -04:00
|
|
|
private
|
2017-04-03 12:55:06 -04:00
|
|
|
|
2017-05-06 11:03:34 -04:00
|
|
|
def set_domain_block
|
|
|
|
@domain_block = DomainBlock.find(params[:id])
|
|
|
|
end
|
|
|
|
|
2019-08-07 14:20:23 -04:00
|
|
|
def update_params
|
2020-12-18 02:30:41 -05:00
|
|
|
params.require(:domain_block).permit(:severity, :reject_media, :reject_reports, :private_comment, :public_comment, :obfuscate)
|
2019-08-07 14:20:23 -04:00
|
|
|
end
|
|
|
|
|
2017-04-10 15:27:03 -04:00
|
|
|
def resource_params
|
2020-12-18 02:30:41 -05:00
|
|
|
params.require(:domain_block).permit(:domain, :severity, :reject_media, :reject_reports, :private_comment, :public_comment, :obfuscate)
|
2017-04-29 18:25:38 -04:00
|
|
|
end
|
2022-11-17 05:05:09 -05:00
|
|
|
|
|
|
|
def form_domain_block_batch_params
|
|
|
|
params.require(:form_domain_block_batch).permit(domain_blocks_attributes: [:enabled, :domain, :severity, :reject_media, :reject_reports, :private_comment, :public_comment, :obfuscate])
|
|
|
|
end
|
|
|
|
|
|
|
|
def action_from_button
|
2023-02-18 06:37:47 -05:00
|
|
|
'save' if params[:save]
|
2022-11-17 05:05:09 -05:00
|
|
|
end
|
2023-06-01 03:37:38 -04:00
|
|
|
|
|
|
|
def requires_confirmation?
|
|
|
|
@domain_block.valid? && (@domain_block.new_record? || @domain_block.severity_changed?) && @domain_block.severity.to_s == 'suspend' && !params[:confirm]
|
|
|
|
end
|
2016-12-13 07:42:10 -05:00
|
|
|
end
|
|
|
|
end
|