2016-12-13 13:42:10 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-04-10 21:27:03 +02:00
|
|
|
module Admin
|
|
|
|
class DomainBlocksController < BaseController
|
2023-03-20 20:03:44 +01:00
|
|
|
before_action :set_domain_block, only: [:destroy, :edit, :update]
|
2017-05-06 17:03:34 +02:00
|
|
|
|
2024-06-11 11:40:47 +02:00
|
|
|
PERMITTED_PARAMS = %i(
|
|
|
|
domain
|
|
|
|
obfuscate
|
|
|
|
private_comment
|
|
|
|
public_comment
|
|
|
|
reject_media
|
|
|
|
reject_reports
|
|
|
|
severity
|
|
|
|
).freeze
|
|
|
|
|
|
|
|
PERMITTED_UPDATE_PARAMS = PERMITTED_PARAMS.without(:domain).freeze
|
|
|
|
|
2022-11-17 11:05:09 +01: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 21:27:03 +02:00
|
|
|
def new
|
2017-11-11 20:23:33 +01:00
|
|
|
authorize :domain_block, :create?
|
2019-01-08 13:39:49 +01:00
|
|
|
@domain_block = DomainBlock.new(domain: params[:_domain])
|
2017-04-10 21:27:03 +02:00
|
|
|
end
|
2017-04-03 18:55:06 +02:00
|
|
|
|
2019-08-07 20:20:23 +02:00
|
|
|
def edit
|
|
|
|
authorize :domain_block, :create?
|
|
|
|
end
|
|
|
|
|
2017-04-10 21:27:03 +02:00
|
|
|
def create
|
2017-11-11 20:23:33 +01:00
|
|
|
authorize :domain_block, :create?
|
|
|
|
|
2017-04-10 21:27:03 +02:00
|
|
|
@domain_block = DomainBlock.new(resource_params)
|
2019-06-22 00:13:10 +02:00
|
|
|
existing_domain_block = resource_params[:domain].present? ? DomainBlock.rule_for(resource_params[:domain]) : nil
|
2017-04-03 18:55:06 +02:00
|
|
|
|
2023-06-01 09:37:38 +02:00
|
|
|
# Disallow accidentally downgrading a domain block
|
2019-05-03 20:36:36 +02:00
|
|
|
if existing_domain_block.present? && !@domain_block.stricter_than?(existing_domain_block)
|
2023-10-31 10:40:30 +01:00
|
|
|
@domain_block.validate
|
2023-05-04 11:56:24 +02: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-19 02:45:34 +01:00
|
|
|
@domain_block.errors.delete(:domain)
|
2023-06-01 09:37:38 +02:00
|
|
|
return render :new
|
|
|
|
end
|
|
|
|
|
|
|
|
# Allow transparently upgrading a domain block
|
2023-08-09 09:39:36 +02:00
|
|
|
if existing_domain_block.present? && existing_domain_block.domain == TagManager.instance.normalize_domain(@domain_block.domain.strip)
|
2023-06-01 09:37:38 +02:00
|
|
|
@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 20:36:36 +02:00
|
|
|
else
|
2023-06-01 09:37:38 +02:00
|
|
|
render :new
|
2017-04-10 21:27:03 +02:00
|
|
|
end
|
2017-04-03 18:55:06 +02:00
|
|
|
end
|
|
|
|
|
2019-08-07 20:20:23 +02:00
|
|
|
def update
|
2020-12-14 09:06:34 +01:00
|
|
|
authorize :domain_block, :update?
|
2019-08-07 20:20:23 +02:00
|
|
|
|
2023-06-01 09:37:38 +02: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 17:45:02 +01:00
|
|
|
DomainBlockWorker.perform_async(@domain_block.id, @domain_block.severity_previously_changed?)
|
2020-12-14 09:06:34 +01:00
|
|
|
log_action :update, @domain_block
|
2019-08-07 20:20:23 +02:00
|
|
|
redirect_to admin_instances_path(limited: '1'), notice: I18n.t('admin.domain_blocks.created_msg')
|
|
|
|
else
|
|
|
|
render :edit
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-04-16 12:51:30 +02:00
|
|
|
def destroy
|
2017-11-11 20:23:33 +01:00
|
|
|
authorize @domain_block, :destroy?
|
2019-05-14 19:05:02 +02:00
|
|
|
UnblockDomainService.new.call(@domain_block)
|
2017-11-24 02:05:53 +01:00
|
|
|
log_action :destroy, @domain_block
|
2019-01-08 13:39:49 +01:00
|
|
|
redirect_to admin_instances_path(limited: '1'), notice: I18n.t('admin.domain_blocks.destroyed_msg')
|
2017-04-16 12:51:30 +02:00
|
|
|
end
|
|
|
|
|
2017-04-10 21:27:03 +02:00
|
|
|
private
|
2017-04-03 18:55:06 +02:00
|
|
|
|
2017-05-06 17:03:34 +02:00
|
|
|
def set_domain_block
|
|
|
|
@domain_block = DomainBlock.find(params[:id])
|
|
|
|
end
|
|
|
|
|
2019-08-07 20:20:23 +02:00
|
|
|
def update_params
|
2024-06-11 11:40:47 +02:00
|
|
|
params
|
|
|
|
.require(:domain_block)
|
|
|
|
.slice(*PERMITTED_UPDATE_PARAMS)
|
|
|
|
.permit(*PERMITTED_UPDATE_PARAMS)
|
2019-08-07 20:20:23 +02:00
|
|
|
end
|
|
|
|
|
2017-04-10 21:27:03 +02:00
|
|
|
def resource_params
|
2024-06-11 11:40:47 +02:00
|
|
|
params
|
|
|
|
.require(:domain_block)
|
|
|
|
.slice(*PERMITTED_PARAMS)
|
|
|
|
.permit(*PERMITTED_PARAMS)
|
2017-04-30 00:25:38 +02:00
|
|
|
end
|
2022-11-17 11:05:09 +01: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 12:37:47 +01:00
|
|
|
'save' if params[:save]
|
2022-11-17 11:05:09 +01:00
|
|
|
end
|
2023-06-01 09:37:38 +02: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 13:42:10 +01:00
|
|
|
end
|
|
|
|
end
|