mirror of
https://github.com/internetee/registry.git
synced 2025-06-07 13:15:40 +02:00
Merge pull request #1835 from internetee/1832-registrar-prefix-on-contact-info-and-check-requests
EPP: Find contact without registrar code prefix
This commit is contained in:
commit
573f23f874
4 changed files with 118 additions and 14 deletions
|
@ -14,7 +14,7 @@ module Epp
|
||||||
authorize! :check, Epp::Contact
|
authorize! :check, Epp::Contact
|
||||||
|
|
||||||
ids = params[:parsed_frame].css('id').map(&:text)
|
ids = params[:parsed_frame].css('id').map(&:text)
|
||||||
@results = Epp::Contact.check_availability(ids)
|
@results = Epp::Contact.check_availability(ids, reg: current_user.registrar.code)
|
||||||
render_epp_response '/epp/contacts/check'
|
render_epp_response '/epp/contacts/check'
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -93,7 +93,11 @@ module Epp
|
||||||
|
|
||||||
def find_contact
|
def find_contact
|
||||||
code = params[:parsed_frame].css('id').text.strip.upcase
|
code = params[:parsed_frame].css('id').text.strip.upcase
|
||||||
@contact = Epp::Contact.find_by!(code: code)
|
reg_code = current_user.registrar.code.upcase
|
||||||
|
arr = [code, "#{reg_code}:#{code}", "CID:#{code}", "CID:#{reg_code}:#{code}"]
|
||||||
|
|
||||||
|
contact = arr.find { |c| Epp::Contact.find_by(code: c).present? }
|
||||||
|
@contact = Epp::Contact.find_by!(code: contact || code)
|
||||||
end
|
end
|
||||||
|
|
||||||
#
|
#
|
||||||
|
|
|
@ -42,17 +42,12 @@ class Epp::Contact < Contact
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
def check_availability(codes)
|
def check_availability(codes, reg:)
|
||||||
codes = [codes] if codes.is_a?(String)
|
codes = [codes] if codes.is_a?(String)
|
||||||
|
|
||||||
res = []
|
res = []
|
||||||
codes.each do |x|
|
codes.map { |c| c.include?(':') ? c : "#{reg}:#{c}" }.map { |c| c.strip.upcase }.each do |x|
|
||||||
contact = find_by_epp_code(x)
|
c = find_by_epp_code(x)
|
||||||
if contact
|
res << (c ? { code: c.code, avail: 0, reason: 'in use' } : { code: x, avail: 1 })
|
||||||
res << { code: contact.code, avail: 0, reason: 'in use' }
|
|
||||||
else
|
|
||||||
res << { code: x, avail: 1 }
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
res
|
res
|
||||||
|
|
|
@ -26,7 +26,7 @@ class EppContactCheckBaseTest < EppTestCase
|
||||||
|
|
||||||
response_xml = Nokogiri::XML(response.body)
|
response_xml = Nokogiri::XML(response.body)
|
||||||
assert_epp_response :completed_successfully
|
assert_epp_response :completed_successfully
|
||||||
assert_equal 'john-001', response_xml.at_xpath('//contact:id', contact: xml_schema).text
|
assert_equal "#{@contact.registrar.code}:JOHN-001".upcase, response_xml.at_xpath('//contact:id', contact: xml_schema).text
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_contact_is_available
|
def test_contact_is_available
|
||||||
|
@ -52,7 +52,8 @@ class EppContactCheckBaseTest < EppTestCase
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_contact_is_unavailable
|
def test_contact_is_unavailable
|
||||||
assert_equal 'john-001', @contact.code
|
@contact.update_columns(code: "#{@contact.registrar.code}:JOHN-001".upcase)
|
||||||
|
assert @contact.code, "#{@contact.registrar.code}:JOHN-001".upcase
|
||||||
|
|
||||||
request_xml = <<-XML
|
request_xml = <<-XML
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
@ -98,9 +99,61 @@ class EppContactCheckBaseTest < EppTestCase
|
||||||
assert_equal 3, response_xml.xpath('//contact:cd', contact: xml_schema).size
|
assert_equal 3, response_xml.xpath('//contact:cd', contact: xml_schema).size
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def test_check_contact_with_prefix
|
||||||
|
@contact.update_columns(code: "#{@contact.registrar.code}:JOHN-001".upcase)
|
||||||
|
assert @contact.code, "#{@contact.registrar.code}:JOHN-001".upcase
|
||||||
|
|
||||||
|
request_xml = <<-XML
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<epp xmlns="https://epp.tld.ee/schema/epp-ee-1.0.xsd">
|
||||||
|
<command>
|
||||||
|
<check>
|
||||||
|
<contact:check xmlns:contact="https://epp.tld.ee/schema/contact-ee-1.1.xsd">
|
||||||
|
<contact:id>BESTNAMES:JOHN-001</contact:id>
|
||||||
|
</contact:check>
|
||||||
|
</check>
|
||||||
|
</command>
|
||||||
|
</epp>
|
||||||
|
XML
|
||||||
|
|
||||||
|
post epp_check_path, params: { frame: request_xml },
|
||||||
|
headers: { 'HTTP_COOKIE' => 'session=api_bestnames' }
|
||||||
|
|
||||||
|
response_xml = Nokogiri::XML(response.body)
|
||||||
|
assert_epp_response :completed_successfully
|
||||||
|
assert_equal "#{@contact.registrar.code}:JOHN-001".upcase, response_xml.at_xpath('//contact:id', contact: xml_schema).text
|
||||||
|
assert_equal 'in use', response_xml.at_xpath('//contact:reason', contact: xml_schema).text
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_check_contact_without_prefix
|
||||||
|
@contact.update_columns(code: "#{@contact.registrar.code}:JOHN-001".upcase)
|
||||||
|
assert @contact.code, "#{@contact.registrar.code}:JOHN-001".upcase
|
||||||
|
|
||||||
|
request_xml = <<-XML
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<epp xmlns="https://epp.tld.ee/schema/epp-ee-1.0.xsd">
|
||||||
|
<command>
|
||||||
|
<check>
|
||||||
|
<contact:check xmlns:contact="https://epp.tld.ee/schema/contact-ee-1.1.xsd">
|
||||||
|
<contact:id>JOHN-001</contact:id>
|
||||||
|
</contact:check>
|
||||||
|
</check>
|
||||||
|
</command>
|
||||||
|
</epp>
|
||||||
|
XML
|
||||||
|
|
||||||
|
post epp_check_path, params: { frame: request_xml },
|
||||||
|
headers: { 'HTTP_COOKIE' => 'session=api_bestnames' }
|
||||||
|
|
||||||
|
response_xml = Nokogiri::XML(response.body)
|
||||||
|
assert_epp_response :completed_successfully
|
||||||
|
assert_equal "#{@contact.registrar.code}:JOHN-001".upcase, response_xml.at_xpath('//contact:id', contact: xml_schema).text
|
||||||
|
assert_equal 'in use', response_xml.at_xpath('//contact:reason', contact: xml_schema).text
|
||||||
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
def xml_schema
|
def xml_schema
|
||||||
'https://epp.tld.ee/schema/contact-ee-1.1.xsd'
|
'https://epp.tld.ee/schema/contact-ee-1.1.xsd'
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -44,6 +44,58 @@ class EppContactInfoBaseTest < EppTestCase
|
||||||
contact: xml_schema).text
|
contact: xml_schema).text
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def test_get_info_about_contact_with_prefix
|
||||||
|
@contact.update_columns(code: 'TEST:JOHN-001')
|
||||||
|
assert @contact.code, 'TEST:JOHN-001'
|
||||||
|
|
||||||
|
request_xml = <<-XML
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<epp xmlns="https://epp.tld.ee/schema/epp-ee-1.0.xsd">
|
||||||
|
<command>
|
||||||
|
<info>
|
||||||
|
<contact:info xmlns:contact="https://epp.tld.ee/schema/contact-ee-1.1.xsd">
|
||||||
|
<contact:id>TEST:JOHN-001</contact:id>
|
||||||
|
</contact:info>
|
||||||
|
</info>
|
||||||
|
</command>
|
||||||
|
</epp>
|
||||||
|
XML
|
||||||
|
|
||||||
|
post epp_info_path, params: { frame: request_xml },
|
||||||
|
headers: { 'HTTP_COOKIE' => 'session=api_bestnames' }
|
||||||
|
|
||||||
|
response_xml = Nokogiri::XML(response.body)
|
||||||
|
assert_epp_response :completed_successfully
|
||||||
|
assert_equal 'TEST:JOHN-001', response_xml.at_xpath('//contact:id', contact: xml_schema).text
|
||||||
|
assert_equal '+555.555', response_xml.at_xpath('//contact:voice', contact: xml_schema).text
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_get_info_about_contact_without_prefix
|
||||||
|
@contact.update_columns(code: "#{@contact.registrar.code}:JOHN-001".upcase)
|
||||||
|
assert @contact.code, "#{@contact.registrar.code}:JOHN-001".upcase
|
||||||
|
|
||||||
|
request_xml = <<-XML
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<epp xmlns="https://epp.tld.ee/schema/epp-ee-1.0.xsd">
|
||||||
|
<command>
|
||||||
|
<info>
|
||||||
|
<contact:info xmlns:contact="https://epp.tld.ee/schema/contact-ee-1.1.xsd">
|
||||||
|
<contact:id>JOHN-001</contact:id>
|
||||||
|
</contact:info>
|
||||||
|
</info>
|
||||||
|
</command>
|
||||||
|
</epp>
|
||||||
|
XML
|
||||||
|
|
||||||
|
post epp_info_path, params: { frame: request_xml },
|
||||||
|
headers: { 'HTTP_COOKIE' => 'session=api_bestnames' }
|
||||||
|
|
||||||
|
response_xml = Nokogiri::XML(response.body)
|
||||||
|
assert_epp_response :completed_successfully
|
||||||
|
assert_equal "#{@contact.registrar.code}:JOHN-001".upcase, response_xml.at_xpath('//contact:id', contact: xml_schema).text
|
||||||
|
assert_equal '+555.555', response_xml.at_xpath('//contact:voice', contact: xml_schema).text
|
||||||
|
end
|
||||||
|
|
||||||
def test_hides_password_and_name_when_current_registrar_is_not_sponsoring
|
def test_hides_password_and_name_when_current_registrar_is_not_sponsoring
|
||||||
non_sponsoring_registrar = registrars(:goodnames)
|
non_sponsoring_registrar = registrars(:goodnames)
|
||||||
@contact.update!(registrar: non_sponsoring_registrar)
|
@contact.update!(registrar: non_sponsoring_registrar)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue