Merge pull request #2161 from internetee/2158-nameserver-bulk-addition

REPP: bulk nameservers addition
This commit is contained in:
Timo Võhmar 2021-09-29 18:41:18 +03:00 committed by GitHub
commit 61df405560
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 191 additions and 34 deletions

View file

@ -32,7 +32,8 @@ class Registrar
end
def compose_notice_message(res)
notices = ["#{t('.replaced')}. #{t('.affected_domains')}: " \
action_text = params[:old_hostname].blank? ? t('.added') : t('.replaced')
notices = ["#{action_text}. #{t('.affected_domains')}: " \
"#{res[:data][:affected_domains].join(', ')}"]
notices << "#{t('.skipped_domains')}: #{res[:data][:skipped_domains].join(', ')}" if res[:data][:skipped_domains]
@ -42,7 +43,7 @@ class Registrar
def csv_list_empty_guard
notice = 'CSV scoped domain list seems empty. Make sure that domains are added and ' \
'"domain_name" header is present.'
'"Domain" header is present.'
redirect_to(registrar_domains_url, flash: { notice: notice })
end
@ -52,9 +53,9 @@ class Registrar
domains = []
csv = CSV.read(params[:puny_file].path, headers: true)
return [] if csv['domain_name'].blank?
return [] if csv['Domain'].blank?
csv.map { |b| domains << b['domain_name'] }
csv.map { |b| domains << b['Domain'] }
domains.compact
rescue CSV::MalformedCSVError

View file

@ -8,7 +8,7 @@ module Repp
desc 'bulk nameserver change'
param :data, Hash, required: true, desc: 'Object holding nameserver changes' do
param :type, String, required: true, desc: 'Always set as "nameserver"'
param :id, String, required: true, desc: 'Hostname of replacable nameserver'
param :id, String, required: false, desc: 'Hostname of replacable nameserver'
param :domains, Array, required: false, desc: 'Array of domain names qualified for ' \
'nameserver replacement'
param :attributes, Hash, required: true, desc: 'Object holding new nameserver values' do
@ -17,11 +17,16 @@ module Repp
param :ipv6, Array, of: String, required: false, desc: 'Array of fixed IPv6 addresses'
end
end
def update
affected, errored = current_user.registrar
.replace_nameservers(hostname,
hostname_params[:data][:attributes],
domains: domains_from_params)
def update # rubocop:disable Metrics/MethodLength
affected, errored = if hostname.present?
current_user.registrar.replace_nameservers(hostname,
hostname_params[:data][:attributes],
domains: domains_from_params)
else
current_user.registrar.add_nameservers(hostname_params[:data][:attributes],
domains: domains_from_params)
end
render_success(data: data_format_for_success(affected, errored))
rescue ActiveRecord::RecordInvalid => e
@ -47,7 +52,7 @@ module Repp
end
def hostname_params
params.require(:data).require(%i[type id])
params.require(:data).require(%i[type])
params.require(:data).require(:attributes).require([:hostname])
params.permit(data: [
@ -58,10 +63,12 @@ module Repp
end
def hostname
hostname_params[:data][:id]
hostname_params[:data][:id] || nil
end
def verify_nameserver_existance
return true if hostname.blank?
current_user.registrar.nameservers.find_by!(hostname: hostname)
end
end