2017-10-04 13:16:10 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Admin
|
|
|
|
class EmailDomainBlocksController < BaseController
|
|
|
|
def index
|
2017-11-11 19:23:33 +00:00
|
|
|
authorize :email_domain_block, :index?
|
2022-02-24 16:28:23 +00:00
|
|
|
|
2020-03-12 21:35:20 +00:00
|
|
|
@email_domain_blocks = EmailDomainBlock.where(parent_id: nil).includes(:children).order(id: :desc).page(params[:page])
|
2022-02-24 16:28:23 +00:00
|
|
|
@form = Form::EmailDomainBlockBatch.new
|
|
|
|
end
|
|
|
|
|
|
|
|
def batch
|
2022-07-05 00:41:40 +00:00
|
|
|
authorize :email_domain_block, :index?
|
|
|
|
|
2022-02-24 16:28:23 +00:00
|
|
|
@form = Form::EmailDomainBlockBatch.new(form_email_domain_block_batch_params.merge(current_account: current_account, action: action_from_button))
|
|
|
|
@form.save
|
|
|
|
rescue ActionController::ParameterMissing
|
|
|
|
flash[:alert] = I18n.t('admin.email_domain_blocks.no_email_domain_block_selected')
|
|
|
|
rescue Mastodon::NotPermittedError
|
2022-11-17 10:05:09 +00:00
|
|
|
flash[:alert] = I18n.t('admin.email_domain_blocks.not_permitted')
|
2022-02-24 16:28:23 +00:00
|
|
|
ensure
|
|
|
|
redirect_to admin_email_domain_blocks_path
|
2017-10-04 13:16:10 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def new
|
2017-11-11 19:23:33 +00:00
|
|
|
authorize :email_domain_block, :create?
|
2020-03-12 21:35:20 +00:00
|
|
|
@email_domain_block = EmailDomainBlock.new(domain: params[:_domain])
|
2017-10-04 13:16:10 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
2017-11-11 19:23:33 +00:00
|
|
|
authorize :email_domain_block, :create?
|
|
|
|
|
2017-10-04 13:16:10 +00:00
|
|
|
@email_domain_block = EmailDomainBlock.new(resource_params)
|
|
|
|
|
2022-02-24 16:28:23 +00:00
|
|
|
if action_from_button == 'save'
|
|
|
|
EmailDomainBlock.transaction do
|
|
|
|
@email_domain_block.save!
|
|
|
|
log_action :create, @email_domain_block
|
2020-03-12 21:35:20 +00:00
|
|
|
|
2022-02-24 16:28:23 +00:00
|
|
|
(@email_domain_block.other_domains || []).uniq.each do |domain|
|
2022-02-26 16:26:28 +00:00
|
|
|
next if EmailDomainBlock.where(domain: domain).exists?
|
|
|
|
|
2022-02-24 16:28:23 +00:00
|
|
|
other_email_domain_block = EmailDomainBlock.create!(domain: domain, parent: @email_domain_block)
|
|
|
|
log_action :create, other_email_domain_block
|
2020-03-12 21:35:20 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-10-04 13:16:10 +00:00
|
|
|
redirect_to admin_email_domain_blocks_path, notice: I18n.t('admin.email_domain_blocks.created_msg')
|
|
|
|
else
|
2022-02-24 16:28:23 +00:00
|
|
|
set_resolved_records
|
2017-10-04 13:16:10 +00:00
|
|
|
render :new
|
|
|
|
end
|
2022-02-24 16:28:23 +00:00
|
|
|
rescue ActiveRecord::RecordInvalid
|
|
|
|
set_resolved_records
|
|
|
|
render :new
|
2017-10-04 13:16:10 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2022-02-24 16:28:23 +00:00
|
|
|
def set_resolved_records
|
|
|
|
Resolv::DNS.open do |dns|
|
|
|
|
dns.timeouts = 5
|
|
|
|
@resolved_records = dns.getresources(@email_domain_block.domain, Resolv::DNS::Resource::IN::MX).to_a
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-10-04 13:16:10 +00:00
|
|
|
def resource_params
|
2022-02-24 16:28:23 +00:00
|
|
|
params.require(:email_domain_block).permit(:domain, other_domains: [])
|
|
|
|
end
|
|
|
|
|
|
|
|
def form_email_domain_block_batch_params
|
|
|
|
params.require(:form_email_domain_block_batch).permit(email_domain_block_ids: [])
|
|
|
|
end
|
|
|
|
|
|
|
|
def action_from_button
|
|
|
|
if params[:delete]
|
|
|
|
'delete'
|
|
|
|
elsif params[:save]
|
|
|
|
'save'
|
|
|
|
end
|
2017-10-04 13:16:10 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|