whois 2.0.7 → 2.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.rdoc +84 -10
- data/Rakefile +0 -7
- data/lib/core_ext.rb +9 -45
- data/lib/core_ext/array/extract_options.rb +29 -0
- data/lib/core_ext/array/wrap.rb +48 -0
- data/lib/core_ext/class/attribute.rb +115 -0
- data/lib/core_ext/date_time/conversions.rb +15 -0
- data/lib/core_ext/kernel/singleton_class.rb +13 -0
- data/lib/core_ext/module/remove_method.rb +16 -0
- data/lib/whois.rb +0 -4
- data/lib/whois/definitions/tlds.rb +10 -5
- data/lib/whois/record.rb +0 -3
- data/lib/whois/record/parser.rb +3 -3
- data/lib/whois/record/parser/NOTES.txt +15 -8
- data/lib/whois/record/parser/base.rb +12 -35
- data/lib/whois/record/parser/base_afilias.rb +156 -0
- data/lib/whois/record/parser/example.rb +8 -4
- data/lib/whois/record/parser/jobswhois.verisign-grs.com.rb +2 -2
- data/lib/whois/record/parser/scanners/afilias.rb +13 -4
- data/lib/whois/record/parser/{features → scanners}/ast.rb +1 -1
- data/lib/whois/record/parser/scanners/base.rb +9 -0
- data/lib/whois/record/parser/scanners/cnnic.rb +2 -2
- data/lib/whois/record/parser/scanners/{whoisbiz.rb → whois.biz.rb} +2 -8
- data/lib/whois/record/parser/scanners/whois.denic.de.rb +117 -0
- data/lib/whois/record/parser/scanners/whois.nic.hu.rb +187 -0
- data/lib/whois/record/parser/scanners/{whoisit.rb → whois.nic.it.rb} +2 -2
- data/lib/whois/record/parser/scanners/whois.registry.qa.rb +54 -0
- data/lib/whois/record/parser/scanners/whois.tld.ee.rb +41 -0
- data/lib/whois/record/parser/whois.aero.rb +8 -46
- data/lib/whois/record/parser/whois.afilias-grs.info.rb +2 -51
- data/lib/whois/record/parser/whois.afilias.info.rb +2 -126
- data/lib/whois/record/parser/whois.biz.rb +6 -6
- data/lib/whois/record/parser/whois.cnnic.cn.rb +5 -5
- data/lib/whois/record/parser/whois.crsnic.net.rb +2 -2
- data/lib/whois/record/parser/whois.denic.de.rb +8 -105
- data/lib/whois/record/parser/whois.dotmobiregistry.net.rb +2 -51
- data/lib/whois/record/parser/whois.godaddy.com.rb +138 -0
- data/lib/whois/record/parser/whois.iana.org.rb +2 -2
- data/lib/whois/record/parser/whois.markmonitor.com.rb +13 -12
- data/lib/whois/record/parser/whois.meregistry.net.rb +45 -30
- data/lib/whois/record/parser/whois.nic.af.rb +6 -2
- data/lib/whois/record/parser/whois.nic.ag.rb +2 -51
- data/lib/whois/record/parser/whois.nic.asia.rb +47 -38
- data/lib/whois/record/parser/whois.nic.cc.rb +2 -2
- data/lib/whois/record/parser/whois.nic.hu.rb +7 -174
- data/lib/whois/record/parser/whois.nic.it.rb +6 -6
- data/lib/whois/record/parser/whois.nic.name.rb +1 -5
- data/lib/whois/record/parser/whois.nic.travel.rb +4 -12
- data/lib/whois/record/parser/whois.nic.tv.rb +2 -2
- data/lib/whois/record/parser/whois.nic.us.rb +4 -4
- data/lib/whois/record/parser/whois.nic.xxx.rb +5 -112
- data/lib/whois/record/parser/whois.publicinterestregistry.net.rb +8 -168
- data/lib/whois/record/parser/whois.registry.in.rb +2 -60
- data/lib/whois/record/parser/whois.registry.qa.rb +117 -0
- data/lib/whois/record/parser/whois.ripn.net.rb +4 -84
- data/lib/whois/record/parser/whois.sgnic.sg.rb +13 -5
- data/lib/whois/record/parser/whois.tcinet.ru.rb +102 -0
- data/lib/whois/record/parser/whois.tld.ee.rb +5 -26
- data/lib/whois/record/parser/whois.tonic.to.rb +0 -8
- data/lib/whois/server/adapters/base.rb +23 -10
- data/lib/whois/version.rb +2 -2
- data/spec/fixtures/responses/FIND.txt +1 -0
- data/spec/fixtures/responses/whois.aero/status_available.expected +35 -1
- data/spec/fixtures/responses/whois.aero/status_registered.expected +77 -1
- data/spec/fixtures/responses/whois.afilias-grs.info/bz/status_available.expected +34 -0
- data/spec/fixtures/responses/whois.afilias-grs.info/bz/status_registered.expected +39 -2
- data/spec/fixtures/responses/whois.afilias-grs.info/bz/status_registered.txt +2 -82
- data/spec/fixtures/responses/whois.afilias-grs.info/gi/status_available.expected +34 -0
- data/spec/fixtures/responses/whois.afilias-grs.info/gi/status_registered.expected +76 -0
- data/spec/fixtures/responses/whois.afilias-grs.info/hn/status_available.expected +34 -0
- data/spec/fixtures/responses/whois.afilias-grs.info/hn/status_registered.expected +76 -0
- data/spec/fixtures/responses/whois.afilias-grs.info/lc/status_available.expected +34 -0
- data/spec/fixtures/responses/whois.afilias-grs.info/lc/status_registered.expected +76 -0
- data/spec/fixtures/responses/whois.afilias-grs.info/mn/status_available.expected +34 -0
- data/spec/fixtures/responses/whois.afilias-grs.info/mn/status_registered.expected +76 -0
- data/spec/fixtures/responses/whois.afilias-grs.info/sc/status_available.expected +57 -0
- data/spec/fixtures/responses/whois.afilias-grs.info/sc/status_registered.expected +76 -0
- data/spec/fixtures/responses/whois.afilias-grs.info/vc/status_available.expected +34 -0
- data/spec/fixtures/responses/whois.afilias-grs.info/vc/status_registered.expected +76 -0
- data/spec/fixtures/responses/whois.dotmobiregistry.net/status_available.expected +35 -0
- data/spec/fixtures/responses/whois.dotmobiregistry.net/status_available.txt +1 -25
- data/spec/fixtures/responses/whois.dotmobiregistry.net/status_registered.expected +76 -0
- data/spec/fixtures/responses/whois.educause.edu/{properties_updated_on_unknown.expected → property_updated_on_unknown.expected} +0 -0
- data/spec/fixtures/responses/whois.educause.edu/{properties_updated_on_unknown.txt → property_updated_on_unknown.txt} +0 -0
- data/spec/fixtures/responses/whois.godaddy.com/status_registered.expected +87 -0
- data/spec/fixtures/responses/whois.godaddy.com/status_registered.txt +60 -0
- data/spec/fixtures/responses/whois.markmonitor.com/{properties_empty_contacts.expected → property_contacts_are_blank.expected} +0 -0
- data/spec/fixtures/responses/whois.markmonitor.com/{properties_empty_contacts.txt → property_contacts_are_blank.txt} +0 -0
- data/spec/fixtures/responses/whois.meregistry.net/{property_nameservers_is_missing.expected → property_nameservers_is_blank.expected} +0 -0
- data/spec/fixtures/responses/whois.meregistry.net/{property_nameservers_is_missing.txt → property_nameservers_is_blank.txt} +0 -0
- data/spec/fixtures/responses/whois.meregistry.net/status_available.expected +34 -0
- data/spec/fixtures/responses/whois.meregistry.net/status_registered.expected +77 -0
- data/spec/fixtures/responses/whois.meregistry.net/status_registered.txt +1 -1
- data/spec/fixtures/responses/{whois.nic.asia/property_status_client_delete_prohibited.expected → whois.nic.af/property_status_active.expected} +0 -0
- data/spec/fixtures/responses/whois.nic.af/property_status_active.txt +56 -0
- data/spec/fixtures/responses/{whois.nic.asia/property_status_client_transfer_prohibited.expected → whois.nic.af/property_status_delegated.expected} +0 -0
- data/spec/fixtures/responses/whois.nic.af/property_status_delegated.txt +46 -0
- data/spec/fixtures/responses/whois.nic.af/property_status_not_registered.expected +8 -0
- data/spec/fixtures/responses/whois.nic.af/property_status_not_registered.txt +13 -0
- data/spec/fixtures/responses/whois.nic.ag/status_available.expected +34 -0
- data/spec/fixtures/responses/whois.nic.ag/status_registered.expected +76 -0
- data/spec/fixtures/responses/whois.nic.asia/property_status_multiple.expected +8 -0
- data/spec/fixtures/responses/whois.nic.asia/{property_status_client_delete_prohibited.txt → property_status_multiple.txt} +0 -0
- data/spec/fixtures/responses/whois.nic.asia/property_status_single.expected +8 -0
- data/spec/fixtures/responses/whois.nic.asia/{property_status_client_transfer_prohibited.txt → property_status_single.txt} +76 -76
- data/spec/fixtures/responses/whois.nic.asia/status_available.expected +35 -1
- data/spec/fixtures/responses/whois.nic.asia/status_registered.expected +78 -1
- data/spec/fixtures/responses/whois.nic.dz/{status_available.expected → dz/status_available.expected} +0 -0
- data/spec/fixtures/responses/whois.nic.dz/{status_available.txt → dz/status_available.txt} +0 -0
- data/spec/fixtures/responses/whois.nic.dz/{status_registered.expected → dz/status_registered.expected} +0 -0
- data/spec/fixtures/responses/whois.nic.dz/{status_registered.txt → dz/status_registered.txt} +0 -0
- data/spec/fixtures/responses/whois.nic.name/status_available.expected +1 -1
- data/spec/fixtures/responses/whois.nic.name/status_registered.expected +1 -1
- data/spec/fixtures/responses/whois.nic.travel/property_status_multiple.expected +2 -0
- data/spec/fixtures/responses/whois.nic.travel/property_status_multiple.txt +83 -0
- data/spec/fixtures/responses/whois.nic.travel/property_status_single.expected +2 -0
- data/spec/fixtures/responses/whois.nic.travel/property_status_single.txt +75 -0
- data/spec/fixtures/responses/whois.nic.travel/status_available.expected +1 -1
- data/spec/fixtures/responses/whois.nic.travel/status_registered.expected +1 -1
- data/spec/fixtures/responses/whois.nic.xxx/property_updated_on_blank.expected +2 -0
- data/spec/fixtures/responses/whois.nic.xxx/property_updated_on_blank.txt +98 -0
- data/spec/fixtures/responses/whois.nic.xxx/status_registered.expected +45 -46
- data/spec/fixtures/responses/whois.nic.xxx/status_registered.txt +61 -61
- data/spec/fixtures/responses/whois.publicinterestregistry.net/status_available.expected +1 -1
- data/spec/fixtures/responses/whois.publicinterestregistry.net/status_registered.expected +8 -1
- data/spec/fixtures/responses/whois.registry.in/property_status_missing.expected +1 -1
- data/spec/fixtures/responses/whois.registry.in/property_status_multiple.expected +1 -1
- data/spec/fixtures/responses/whois.registry.in/property_status_ok.expected +1 -1
- data/spec/fixtures/responses/whois.registry.in/status_available.expected +31 -1
- data/spec/fixtures/responses/whois.registry.in/status_registered.expected +70 -1
- data/spec/fixtures/responses/whois.registry.qa/qa/status_available.expected +56 -0
- data/spec/fixtures/responses/whois.registry.qa/qa/status_available.txt +1 -0
- data/spec/fixtures/responses/whois.registry.qa/qa/status_registered.expected +91 -0
- data/spec/fixtures/responses/whois.registry.qa/qa/status_registered.txt +23 -0
- data/spec/fixtures/responses/whois.sgnic.sg/property_nameservers_schema_1_with_ip.expected +12 -0
- data/spec/fixtures/responses/whois.sgnic.sg/property_nameservers_schema_1_with_ip.txt +94 -0
- data/spec/fixtures/responses/{whois.ripn.net → whois.tcinet.ru}/ru/property_nameservers_with_ip.expected +0 -0
- data/spec/fixtures/responses/{whois.ripn.net → whois.tcinet.ru}/ru/property_nameservers_with_ip.txt +0 -0
- data/spec/fixtures/responses/{whois.ripn.net → whois.tcinet.ru}/ru/status_available.expected +0 -0
- data/spec/fixtures/responses/{whois.ripn.net → whois.tcinet.ru}/ru/status_available.txt +0 -0
- data/spec/fixtures/responses/{whois.ripn.net → whois.tcinet.ru}/ru/status_registered.expected +0 -0
- data/spec/fixtures/responses/{whois.ripn.net → whois.tcinet.ru}/ru/status_registered.txt +0 -0
- data/spec/fixtures/responses/{whois.ripn.net → whois.tcinet.ru}/su/status_available.expected +0 -0
- data/spec/fixtures/responses/{whois.ripn.net → whois.tcinet.ru}/su/status_available.txt +0 -0
- data/spec/fixtures/responses/{whois.ripn.net → whois.tcinet.ru}/su/status_registered.expected +0 -0
- data/spec/fixtures/responses/{whois.ripn.net → whois.tcinet.ru}/su/status_registered.txt +0 -0
- data/spec/fixtures/responses/{whois.ripn.net → whois.tcinet.ru}/xn--p1ai/status_available.expected +0 -0
- data/spec/fixtures/responses/{whois.ripn.net → whois.tcinet.ru}/xn--p1ai/status_available.txt +0 -0
- data/spec/fixtures/responses/{whois.ripn.net → whois.tcinet.ru}/xn--p1ai/status_registered.expected +0 -0
- data/spec/fixtures/responses/{whois.ripn.net → whois.tcinet.ru}/xn--p1ai/status_registered.txt +0 -0
- data/spec/integration_spec.rb +29 -12
- data/spec/support/helpers/spec_helper.rb +0 -10
- data/spec/tlds +1 -1
- data/spec/whois/record/parser/base_spec.rb +23 -51
- data/spec/whois/record/parser/responses/whois.aero/status_available_spec.rb +49 -1
- data/spec/whois/record/parser/responses/whois.aero/status_registered_spec.rb +91 -1
- data/spec/whois/record/parser/responses/whois.afilias-grs.info/bz/status_available_spec.rb +48 -0
- data/spec/whois/record/parser/responses/whois.afilias-grs.info/bz/status_registered_spec.rb +53 -2
- data/spec/whois/record/parser/responses/whois.afilias-grs.info/gi/status_available_spec.rb +48 -0
- data/spec/whois/record/parser/responses/whois.afilias-grs.info/gi/status_registered_spec.rb +90 -0
- data/spec/whois/record/parser/responses/whois.afilias-grs.info/hn/status_available_spec.rb +48 -0
- data/spec/whois/record/parser/responses/whois.afilias-grs.info/hn/status_registered_spec.rb +90 -0
- data/spec/whois/record/parser/responses/whois.afilias-grs.info/lc/status_available_spec.rb +48 -0
- data/spec/whois/record/parser/responses/whois.afilias-grs.info/lc/status_registered_spec.rb +90 -0
- data/spec/whois/record/parser/responses/whois.afilias-grs.info/mn/status_available_spec.rb +48 -0
- data/spec/whois/record/parser/responses/whois.afilias-grs.info/mn/status_registered_spec.rb +90 -0
- data/spec/whois/record/parser/responses/whois.afilias-grs.info/sc/status_available_spec.rb +48 -0
- data/spec/whois/record/parser/responses/whois.afilias-grs.info/sc/status_registered_spec.rb +90 -0
- data/spec/whois/record/parser/responses/whois.afilias-grs.info/vc/status_available_spec.rb +48 -0
- data/spec/whois/record/parser/responses/whois.afilias-grs.info/vc/status_registered_spec.rb +90 -0
- data/spec/whois/record/parser/responses/whois.dotmobiregistry.net/status_available_spec.rb +48 -0
- data/spec/whois/record/parser/responses/whois.dotmobiregistry.net/status_registered_spec.rb +90 -0
- data/spec/whois/record/parser/responses/whois.educause.edu/{properties_updated_on_unknown_spec.rb → property_updated_on_unknown_spec.rb} +3 -3
- data/spec/whois/record/parser/responses/whois.godaddy.com/status_registered_spec.rb +131 -0
- data/spec/whois/record/parser/responses/whois.markmonitor.com/{properties_empty_contacts_spec.rb → property_contacts_are_blank_spec.rb} +3 -3
- data/spec/whois/record/parser/responses/whois.meregistry.net/{property_nameservers_is_missing_spec.rb → property_nameservers_is_blank_spec.rb} +3 -3
- data/spec/whois/record/parser/responses/whois.meregistry.net/status_available_spec.rb +48 -0
- data/spec/whois/record/parser/responses/whois.meregistry.net/status_registered_spec.rb +91 -0
- data/spec/whois/record/parser/responses/whois.nic.af/property_status_active_spec.rb +39 -0
- data/spec/whois/record/parser/responses/whois.nic.af/property_status_delegated_spec.rb +39 -0
- data/spec/whois/record/parser/responses/whois.nic.af/property_status_not_registered_spec.rb +39 -0
- data/spec/whois/record/parser/responses/whois.nic.ag/status_available_spec.rb +48 -0
- data/spec/whois/record/parser/responses/whois.nic.ag/status_registered_spec.rb +90 -0
- data/spec/whois/record/parser/responses/whois.nic.asia/{property_status_client_delete_prohibited_spec.rb → property_status_multiple_spec.rb} +4 -4
- data/spec/whois/record/parser/responses/whois.nic.asia/{property_status_client_transfer_prohibited_spec.rb → property_status_single_spec.rb} +4 -4
- data/spec/whois/record/parser/responses/whois.nic.asia/status_available_spec.rb +49 -1
- data/spec/whois/record/parser/responses/whois.nic.asia/status_registered_spec.rb +92 -1
- data/spec/whois/record/parser/responses/whois.nic.dz/{status_available_spec.rb → dz/status_available_spec.rb} +2 -2
- data/spec/whois/record/parser/responses/whois.nic.dz/{status_registered_spec.rb → dz/status_registered_spec.rb} +2 -2
- data/spec/whois/record/parser/responses/whois.nic.name/status_available_spec.rb +1 -1
- data/spec/whois/record/parser/responses/whois.nic.name/status_registered_spec.rb +1 -1
- data/spec/whois/record/parser/responses/whois.nic.travel/property_status_multiple_spec.rb +29 -0
- data/spec/whois/record/parser/responses/whois.nic.travel/property_status_single_spec.rb +29 -0
- data/spec/whois/record/parser/responses/whois.nic.travel/status_available_spec.rb +1 -1
- data/spec/whois/record/parser/responses/whois.nic.travel/status_registered_spec.rb +1 -1
- data/spec/whois/record/parser/responses/whois.nic.xxx/property_updated_on_blank_spec.rb +29 -0
- data/spec/whois/record/parser/responses/whois.nic.xxx/status_registered_spec.rb +45 -46
- data/spec/whois/record/parser/responses/whois.publicinterestregistry.net/status_available_spec.rb +1 -1
- data/spec/whois/record/parser/responses/whois.publicinterestregistry.net/status_registered_spec.rb +11 -1
- data/spec/whois/record/parser/responses/whois.registry.in/property_status_missing_spec.rb +1 -1
- data/spec/whois/record/parser/responses/whois.registry.in/property_status_multiple_spec.rb +1 -1
- data/spec/whois/record/parser/responses/whois.registry.in/property_status_ok_spec.rb +1 -1
- data/spec/whois/record/parser/responses/whois.registry.in/status_available_spec.rb +44 -1
- data/spec/whois/record/parser/responses/whois.registry.in/status_registered_spec.rb +83 -1
- data/spec/whois/record/parser/responses/whois.registry.qa/qa/status_available_spec.rb +107 -0
- data/spec/whois/record/parser/responses/whois.registry.qa/qa/status_registered_spec.rb +142 -0
- data/spec/whois/record/parser/responses/whois.sgnic.sg/property_nameservers_schema_1_with_ip_spec.rb +39 -0
- data/spec/whois/record/parser/responses/{whois.ripn.net → whois.tcinet.ru}/ru/property_nameservers_with_ip_spec.rb +4 -4
- data/spec/whois/record/parser/responses/{whois.ripn.net/su → whois.tcinet.ru/ru}/status_available_spec.rb +4 -4
- data/spec/whois/record/parser/responses/{whois.ripn.net → whois.tcinet.ru}/ru/status_registered_spec.rb +4 -4
- data/spec/whois/record/parser/responses/{whois.ripn.net/ru → whois.tcinet.ru/su}/status_available_spec.rb +4 -4
- data/spec/whois/record/parser/responses/{whois.ripn.net → whois.tcinet.ru}/su/status_registered_spec.rb +4 -4
- data/spec/whois/record/parser/responses/{whois.ripn.net → whois.tcinet.ru}/xn--p1ai/status_available_spec.rb +4 -4
- data/spec/whois/record/parser/responses/{whois.ripn.net → whois.tcinet.ru}/xn--p1ai/status_registered_spec.rb +4 -4
- data/spec/whois/record_spec.rb +4 -4
- data/spec/whois/server/adapters/afilias_spec.rb +3 -3
- data/spec/whois/server/adapters/base_spec.rb +50 -10
- data/spec/whois/server/adapters/formatted_spec.rb +4 -4
- data/spec/whois/server/adapters/pir_spec.rb +3 -3
- data/spec/whois/server/adapters/standard_spec.rb +4 -4
- data/spec/whois/server/adapters/verisign_spec.rb +7 -7
- data/whois.gemspec +4 -4
- metadata +101 -57
- data/lib/whois/answer.rb +0 -14
@@ -21,7 +21,7 @@ module Whois
|
|
21
21
|
# Parser for the whois.nic.tv server.
|
22
22
|
#
|
23
23
|
class WhoisNicTv < Base
|
24
|
-
include
|
24
|
+
include Scanners::Ast
|
25
25
|
|
26
26
|
property_supported :disclaimer do
|
27
27
|
node("Disclaimer")
|
@@ -86,7 +86,7 @@ module Whois
|
|
86
86
|
|
87
87
|
|
88
88
|
# Initializes a new {Scanners::Verisign} instance
|
89
|
-
# passing the {
|
89
|
+
# passing the {#content_for_scanner}
|
90
90
|
# and calls +parse+ on it.
|
91
91
|
#
|
92
92
|
# @return [Hash]
|
@@ -28,7 +28,7 @@ module Whois
|
|
28
28
|
class WhoisNicUs < Base
|
29
29
|
|
30
30
|
property_supported :status do
|
31
|
-
content_for_scanner.scan(/Domain Status:\s+(
|
31
|
+
content_for_scanner.scan(/Domain Status:\s+(.+?)\n/).flatten
|
32
32
|
end
|
33
33
|
|
34
34
|
property_supported :available? do
|
@@ -41,19 +41,19 @@ module Whois
|
|
41
41
|
|
42
42
|
|
43
43
|
property_supported :created_on do
|
44
|
-
if content_for_scanner =~ /Domain Registration Date:\s+(
|
44
|
+
if content_for_scanner =~ /Domain Registration Date:\s+(.+?)\n/
|
45
45
|
Time.parse($1)
|
46
46
|
end
|
47
47
|
end
|
48
48
|
|
49
49
|
property_supported :updated_on do
|
50
|
-
if content_for_scanner =~ /Domain Last Updated Date:\s+(
|
50
|
+
if content_for_scanner =~ /Domain Last Updated Date:\s+(.+?)\n/
|
51
51
|
Time.parse($1)
|
52
52
|
end
|
53
53
|
end
|
54
54
|
|
55
55
|
property_supported :expires_on do
|
56
|
-
if content_for_scanner =~ /Domain Expiration Date:\s+(
|
56
|
+
if content_for_scanner =~ /Domain Expiration Date:\s+(.+?)\n/
|
57
57
|
Time.parse($1)
|
58
58
|
end
|
59
59
|
end
|
@@ -15,128 +15,21 @@ module Whois
|
|
15
15
|
class Record
|
16
16
|
class Parser
|
17
17
|
|
18
|
-
#
|
19
|
-
# = whois.nic.xxx parser
|
20
|
-
#
|
21
18
|
# Parser for the whois.nic.xxx server.
|
22
|
-
|
23
|
-
class WhoisNicXxx < Base
|
24
|
-
include Features::Ast
|
25
|
-
|
26
|
-
|
27
|
-
property_supported :disclaimer do
|
28
|
-
node("property-disclaimer")
|
29
|
-
end
|
30
|
-
|
31
|
-
|
32
|
-
property_supported :domain do
|
33
|
-
node("Domain Name", &:downcase)
|
34
|
-
end
|
35
|
-
|
36
|
-
property_supported :domain_id do
|
37
|
-
node("Domain ID")
|
38
|
-
end
|
39
|
-
|
40
|
-
|
41
|
-
property_not_supported :referral_whois
|
42
|
-
|
43
|
-
property_not_supported :referral_url
|
44
|
-
|
45
|
-
|
46
|
-
property_supported :status do
|
47
|
-
node("Status") || []
|
48
|
-
end
|
49
|
-
|
50
|
-
property_supported :available? do
|
51
|
-
!!node("status-available")
|
52
|
-
end
|
53
|
-
|
54
|
-
property_supported :registered? do
|
55
|
-
!available?
|
56
|
-
end
|
57
|
-
|
58
|
-
|
59
|
-
property_supported :created_on do
|
60
|
-
node("Created On") do |value|
|
61
|
-
Time.parse(value)
|
62
|
-
end
|
63
|
-
end
|
19
|
+
class WhoisNicXxx < BaseAfilias
|
64
20
|
|
65
21
|
property_supported :updated_on do
|
66
22
|
node("Last Updated On") do |value|
|
67
|
-
Time.parse(value)
|
23
|
+
Time.parse(value) unless value.empty?
|
68
24
|
end
|
69
25
|
end
|
70
26
|
|
71
|
-
property_supported :expires_on do
|
72
|
-
node("Expiration Date") do |value|
|
73
|
-
Time.parse(value)
|
74
|
-
end
|
75
|
-
end
|
76
|
-
|
77
|
-
|
78
|
-
property_supported :registrar do
|
79
|
-
node("Sponsoring Registrar") do |value|
|
80
|
-
value =~ /(.+?) \((.+?)\)/ || Whois.bug!("Unknown registrar format `#{value}'")
|
81
|
-
Record::Registrar.new(
|
82
|
-
:id => $2,
|
83
|
-
:name => $1,
|
84
|
-
:organization => $1
|
85
|
-
)
|
86
|
-
end
|
87
|
-
end
|
88
|
-
|
89
|
-
property_supported :registrant_contacts do
|
90
|
-
contact("Registrant", Whois::Record::Contact::TYPE_REGISTRANT)
|
91
|
-
end
|
92
|
-
|
93
|
-
property_supported :admin_contacts do
|
94
|
-
contact("Admin", Whois::Record::Contact::TYPE_ADMIN)
|
95
|
-
end
|
96
|
-
|
97
|
-
property_supported :technical_contacts do
|
98
|
-
contact("Tech", Whois::Record::Contact::TYPE_TECHNICAL)
|
99
|
-
end
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
property_supported :nameservers do
|
104
|
-
Array.wrap(node("Name Server")).reject(&:empty?).map do |name|
|
105
|
-
Nameserver.new(name.downcase)
|
106
|
-
end
|
107
|
-
end
|
108
|
-
|
109
|
-
|
110
|
-
# Initializes a new {Scanner} instance
|
111
|
-
# passing the {Whois::Record::Parser::Base#content_for_scanner}
|
112
|
-
# and calls +parse+ on it.
|
113
|
-
#
|
114
|
-
# @return [Hash]
|
115
|
-
def parse
|
116
|
-
Scanners::Afilias.new(content_for_scanner).parse
|
117
|
-
end
|
118
|
-
|
119
27
|
|
120
28
|
private
|
121
29
|
|
122
|
-
def
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
Record::Contact.new(
|
127
|
-
:type => type,
|
128
|
-
:id => node("#{element} ID"),
|
129
|
-
:name => node("#{element} Name"),
|
130
|
-
:organization => node("#{element} Organization"),
|
131
|
-
:address => address,
|
132
|
-
:city => node("#{element} City"),
|
133
|
-
:zip => node("#{element} Postal Code"),
|
134
|
-
:state => node("#{element} State/Province"),
|
135
|
-
:country_code => node("#{element} Country"),
|
136
|
-
:phone => node("#{element} Phone"),
|
137
|
-
:fax => node("#{element} FAX"),
|
138
|
-
:email => node("#{element} Email")
|
139
|
-
)
|
30
|
+
def decompose_registrar(value)
|
31
|
+
if value =~ /(.+?) \((.+?)\)/
|
32
|
+
[$1, $2]
|
140
33
|
end
|
141
34
|
end
|
142
35
|
|
@@ -7,97 +7,15 @@
|
|
7
7
|
#++
|
8
8
|
|
9
9
|
|
10
|
-
require 'whois/record/parser/
|
11
|
-
require 'whois/record/parser/scanners/base'
|
10
|
+
require 'whois/record/parser/base_afilias'
|
12
11
|
|
13
12
|
|
14
13
|
module Whois
|
15
14
|
class Record
|
16
15
|
class Parser
|
17
16
|
|
18
|
-
#
|
19
|
-
|
20
|
-
#
|
21
|
-
# Parser for the whois.publicinterestregistry.net server.
|
22
|
-
#
|
23
|
-
class WhoisPublicinterestregistryNet < Base
|
24
|
-
include Features::Ast
|
25
|
-
|
26
|
-
property_supported :disclaimer do
|
27
|
-
node("Disclaimer")
|
28
|
-
end
|
29
|
-
|
30
|
-
|
31
|
-
property_supported :domain do
|
32
|
-
node("Domain Name") { |value| value.downcase }
|
33
|
-
end
|
34
|
-
|
35
|
-
property_supported :domain_id do
|
36
|
-
node("Domain ID")
|
37
|
-
end
|
38
|
-
|
39
|
-
|
40
|
-
property_supported :status do
|
41
|
-
node("Status")
|
42
|
-
end
|
43
|
-
|
44
|
-
property_supported :available? do
|
45
|
-
!!node("status-available")
|
46
|
-
end
|
47
|
-
|
48
|
-
property_supported :registered? do
|
49
|
-
!available?
|
50
|
-
end
|
51
|
-
|
52
|
-
|
53
|
-
property_supported :created_on do
|
54
|
-
node("Created On") { |value| Time.parse(value) }
|
55
|
-
end
|
56
|
-
|
57
|
-
property_supported :updated_on do
|
58
|
-
node("Last Updated On") { |value| Time.parse(value) }
|
59
|
-
end
|
60
|
-
|
61
|
-
property_supported :expires_on do
|
62
|
-
node("Expiration Date") { |value| Time.parse(value) }
|
63
|
-
end
|
64
|
-
|
65
|
-
|
66
|
-
property_supported :registrar do
|
67
|
-
node("Sponsoring Registrar") do |registrar|
|
68
|
-
id, name = if registrar =~ /(.*?)\((.*?)\)/
|
69
|
-
[$2.strip, $1.strip]
|
70
|
-
else
|
71
|
-
[nil, registrar]
|
72
|
-
end
|
73
|
-
Whois::Record::Registrar.new(
|
74
|
-
:id => id,
|
75
|
-
:name => name
|
76
|
-
)
|
77
|
-
end
|
78
|
-
end
|
79
|
-
|
80
|
-
property_supported :registrant_contacts do
|
81
|
-
contact("Registrant", Whois::Record::Contact::TYPE_REGISTRANT)
|
82
|
-
end
|
83
|
-
|
84
|
-
property_supported :admin_contacts do
|
85
|
-
contact("Admin", Whois::Record::Contact::TYPE_ADMIN)
|
86
|
-
end
|
87
|
-
|
88
|
-
property_supported :technical_contacts do
|
89
|
-
contact("Tech", Whois::Record::Contact::TYPE_TECHNICAL)
|
90
|
-
end
|
91
|
-
|
92
|
-
|
93
|
-
property_supported :nameservers do
|
94
|
-
node("Name Server") do |server|
|
95
|
-
server.reject(&:empty?).map do |name|
|
96
|
-
Record::Nameserver.new(name.downcase)
|
97
|
-
end
|
98
|
-
end
|
99
|
-
end
|
100
|
-
|
17
|
+
# Parser for the whois.publicinternetregistry.net server.
|
18
|
+
class WhoisPublicinterestregistryNet < BaseAfilias
|
101
19
|
|
102
20
|
# Checks whether the response has been throttled.
|
103
21
|
#
|
@@ -107,95 +25,17 @@ module Whois
|
|
107
25
|
# WHOIS LIMIT EXCEEDED - SEE WWW.PIR.ORG/WHOIS FOR DETAILS
|
108
26
|
#
|
109
27
|
def response_throttled?
|
110
|
-
!!node("response
|
111
|
-
end
|
112
|
-
|
113
|
-
|
114
|
-
# Initializes a new {Scanner} instance
|
115
|
-
# passing the {Whois::Record::Parser::Base#content_for_scanner}
|
116
|
-
# and calls +parse+ on it.
|
117
|
-
#
|
118
|
-
# @return [Hash]
|
119
|
-
def parse
|
120
|
-
Scanner.new(content_for_scanner).parse
|
28
|
+
!!node("response:throttled")
|
121
29
|
end
|
122
30
|
|
31
|
+
private
|
123
32
|
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
node("#{element} ID") do |registrant_id|
|
128
|
-
Whois::Record::Contact.new(
|
129
|
-
:id => registrant_id,
|
130
|
-
:type => type,
|
131
|
-
:name => node("#{element} Name"),
|
132
|
-
:organization => node("#{element} Organization"),
|
133
|
-
:address => [node("#{element} Street1"),
|
134
|
-
node("#{element} Street2"),
|
135
|
-
node("#{element} Street3")].reject { |value| value.to_s.empty? }.join(" "),
|
136
|
-
:city => node("#{element} City"),
|
137
|
-
:zip => node("#{element} Postal Code"),
|
138
|
-
:state => node("#{element} State/Province"),
|
139
|
-
:country_code => node("#{element} Country"),
|
140
|
-
:phone => node("#{element} Phone"),
|
141
|
-
:fax => node("#{element} FAX"),
|
142
|
-
:email => node("#{element} Email")
|
143
|
-
)
|
33
|
+
def decompose_registrar(value)
|
34
|
+
if value =~ /(.+?) \((.+?)\)/
|
35
|
+
[$2, $1]
|
144
36
|
end
|
145
37
|
end
|
146
38
|
|
147
|
-
|
148
|
-
class Scanner < Scanners::Base
|
149
|
-
|
150
|
-
def parse_content
|
151
|
-
parse_available ||
|
152
|
-
parse_throttled ||
|
153
|
-
parse_disclaimer ||
|
154
|
-
parse_pair ||
|
155
|
-
|
156
|
-
trim_empty_line ||
|
157
|
-
error!("Unexpected token")
|
158
|
-
end
|
159
|
-
|
160
|
-
|
161
|
-
def parse_available
|
162
|
-
if @input.match?(/^NOT FOUND\n/)
|
163
|
-
@ast["status-available"] = true
|
164
|
-
@input.skip(/^.+\n/)
|
165
|
-
end
|
166
|
-
end
|
167
|
-
|
168
|
-
def parse_throttled
|
169
|
-
if @input.match?(/^WHOIS LIMIT EXCEEDED/)
|
170
|
-
@ast["response-throttled"] = true
|
171
|
-
@input.skip(/^.+\n/)
|
172
|
-
end
|
173
|
-
end
|
174
|
-
|
175
|
-
def parse_disclaimer
|
176
|
-
if @input.match?(/^NOTICE:/)
|
177
|
-
lines = []
|
178
|
-
while !@input.match?(/\n/) && @input.scan(/(.*)\n/)
|
179
|
-
lines << @input[1].strip
|
180
|
-
end
|
181
|
-
@ast["Disclaimer"] = lines.join(" ")
|
182
|
-
end
|
183
|
-
end
|
184
|
-
|
185
|
-
def parse_pair
|
186
|
-
if @input.scan(/(.+?):(.*?)\n/)
|
187
|
-
key, value = @input[1].strip, @input[2].strip
|
188
|
-
if @ast[key].nil?
|
189
|
-
@ast[key] = value
|
190
|
-
else
|
191
|
-
@ast[key].is_a?(Array) || @ast[key] = [@ast[key]]
|
192
|
-
@ast[key] << value
|
193
|
-
end
|
194
|
-
end
|
195
|
-
end
|
196
|
-
|
197
|
-
end
|
198
|
-
|
199
39
|
end
|
200
40
|
|
201
41
|
end
|
@@ -7,73 +7,15 @@
|
|
7
7
|
#++
|
8
8
|
|
9
9
|
|
10
|
-
require 'whois/record/parser/
|
10
|
+
require 'whois/record/parser/base_afilias'
|
11
11
|
|
12
12
|
|
13
13
|
module Whois
|
14
14
|
class Record
|
15
15
|
class Parser
|
16
16
|
|
17
|
-
#
|
18
|
-
# = whois.registry.in parser
|
19
|
-
#
|
20
17
|
# Parser for the whois.registry.in server.
|
21
|
-
|
22
|
-
# NOTE: This parser is just a stub and provides only a few basic methods
|
23
|
-
# to check for domain availability and get domain status.
|
24
|
-
# Please consider to contribute implementing missing methods.
|
25
|
-
# See WhoisNicIt parser for an explanation of all available methods
|
26
|
-
# and examples.
|
27
|
-
#
|
28
|
-
class WhoisRegistryIn < Base
|
29
|
-
|
30
|
-
property_supported :status do
|
31
|
-
if content_for_scanner =~ /Status:(.+?)\n/
|
32
|
-
content_for_scanner.scan(/Status:(.+?)\n/).flatten.map(&:downcase)
|
33
|
-
end
|
34
|
-
end
|
35
|
-
|
36
|
-
property_supported :available? do
|
37
|
-
(content_for_scanner.strip == "NOT FOUND")
|
38
|
-
end
|
39
|
-
|
40
|
-
property_supported :registered? do
|
41
|
-
!available?
|
42
|
-
end
|
43
|
-
|
44
|
-
|
45
|
-
property_supported :created_on do
|
46
|
-
if content_for_scanner =~ /Created On:(.*?)\n/
|
47
|
-
Time.parse($1)
|
48
|
-
end
|
49
|
-
end
|
50
|
-
|
51
|
-
property_supported :updated_on do
|
52
|
-
if content_for_scanner =~ /Last Updated On:(.*?)\n/
|
53
|
-
Time.parse($1)
|
54
|
-
end
|
55
|
-
end
|
56
|
-
|
57
|
-
property_supported :expires_on do
|
58
|
-
if content_for_scanner =~ /Expiration Date:(.*?)\n/
|
59
|
-
Time.parse($1)
|
60
|
-
end
|
61
|
-
end
|
62
|
-
|
63
|
-
|
64
|
-
property_supported :registrar do
|
65
|
-
if content_for_scanner =~ /Sponsoring Registrar:(.+)\s+\((R[0-9]+-AFIN)\)\n/
|
66
|
-
Record::Registrar.new(:id => $2, :name => $1)
|
67
|
-
end
|
68
|
-
end
|
69
|
-
|
70
|
-
|
71
|
-
property_supported :nameservers do
|
72
|
-
content_for_scanner.scan(/Name Server:([^\s]+)\n/).flatten.map do |name|
|
73
|
-
Record::Nameserver.new(name.downcase)
|
74
|
-
end
|
75
|
-
end
|
76
|
-
|
18
|
+
class WhoisRegistryIn < BaseAfilias
|
77
19
|
end
|
78
20
|
|
79
21
|
end
|