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
@@ -0,0 +1,41 @@
|
|
1
|
+
#--
|
2
|
+
# Ruby Whois
|
3
|
+
#
|
4
|
+
# An intelligent pure Ruby WHOIS client and parser.
|
5
|
+
#
|
6
|
+
# Copyright (c) 2009-2011 Simone Carletti <weppos@weppos.net>
|
7
|
+
#++
|
8
|
+
|
9
|
+
|
10
|
+
require 'whois/record/parser/scanners/base'
|
11
|
+
|
12
|
+
|
13
|
+
module Whois
|
14
|
+
class Record
|
15
|
+
class Parser
|
16
|
+
module Scanners
|
17
|
+
|
18
|
+
class WhoisTldEe < Scanners::Base
|
19
|
+
|
20
|
+
def parse_content
|
21
|
+
if @input.scan(/contact:\s+(.*)\n/)
|
22
|
+
section = @input[1].strip
|
23
|
+
content = {}
|
24
|
+
|
25
|
+
while @input.scan(/(.*?):\s+(.*?)\n/)
|
26
|
+
content[@input[1]] = @input[2]
|
27
|
+
end
|
28
|
+
|
29
|
+
@ast[section] = content
|
30
|
+
# FIXME: incomplete scanner, it skips all the properties
|
31
|
+
else
|
32
|
+
@input.scan(/(.*)\n/)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
end
|
37
|
+
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
@@ -7,69 +7,31 @@
|
|
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.aero parser
|
19
|
-
#
|
20
17
|
# Parser for the whois.aero 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 WhoisAero < Base
|
18
|
+
class WhoisAero < BaseAfilias
|
29
19
|
|
30
|
-
property_supported :status do
|
31
|
-
if content_for_scanner =~ /Domain Status:(.+?)\n/
|
32
|
-
case $1.downcase
|
33
|
-
when "ok" then :registered
|
34
|
-
else
|
35
|
-
Whois.bug!(ParserError, "Unknown status `#{$1}'.")
|
36
|
-
end
|
37
|
-
else
|
38
|
-
:available
|
39
|
-
end
|
40
|
-
end
|
41
20
|
|
42
|
-
property_supported :
|
43
|
-
(
|
44
|
-
end
|
45
|
-
|
46
|
-
property_supported :registered? do
|
47
|
-
!available?
|
21
|
+
property_supported :status do
|
22
|
+
Array.wrap(node("Domain Status"))
|
48
23
|
end
|
49
24
|
|
50
25
|
|
51
|
-
property_supported :created_on do
|
52
|
-
if content_for_scanner =~ /Created On:(.+?)\n/
|
53
|
-
Time.parse($1)
|
54
|
-
end
|
55
|
-
end
|
56
|
-
|
57
26
|
property_supported :updated_on do
|
58
|
-
|
59
|
-
Time.parse(
|
27
|
+
node("Updated On") do |value|
|
28
|
+
Time.parse(value)
|
60
29
|
end
|
61
30
|
end
|
62
31
|
|
63
32
|
property_supported :expires_on do
|
64
|
-
|
65
|
-
Time.parse(
|
66
|
-
end
|
67
|
-
end
|
68
|
-
|
69
|
-
|
70
|
-
property_supported :nameservers do
|
71
|
-
content_for_scanner.scan(/Name Server:([^\s]+)\n/).flatten.map do |name|
|
72
|
-
Record::Nameserver.new(name.downcase)
|
33
|
+
node("Expires On") do |value|
|
34
|
+
Time.parse(value)
|
73
35
|
end
|
74
36
|
end
|
75
37
|
|
@@ -7,64 +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.afilias-grs.info parser
|
19
|
-
#
|
20
17
|
# Parser for the whois.afilias-grs.info 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 WhoisAfiliasGrsInfo < Base
|
29
|
-
|
30
|
-
property_supported :status do
|
31
|
-
content_for_scanner.scan(/Status:(.*?)\n+/).flatten
|
32
|
-
end
|
33
|
-
|
34
|
-
property_supported :available? do
|
35
|
-
(content_for_scanner.strip == "NOT FOUND")
|
36
|
-
end
|
37
|
-
|
38
|
-
property_supported :registered? do
|
39
|
-
!available?
|
40
|
-
end
|
41
|
-
|
42
|
-
|
43
|
-
property_supported :created_on do
|
44
|
-
if content_for_scanner =~ /Created On:(.*?)\n/
|
45
|
-
Time.parse($1)
|
46
|
-
end
|
47
|
-
end
|
48
|
-
|
49
|
-
property_supported :updated_on do
|
50
|
-
if content_for_scanner =~ /Last Updated On:(.*?)\n/
|
51
|
-
Time.parse($1)
|
52
|
-
end
|
53
|
-
end
|
54
|
-
|
55
|
-
property_supported :expires_on do
|
56
|
-
if content_for_scanner =~ /Expiration Date:(.*?)\n/
|
57
|
-
Time.parse($1)
|
58
|
-
end
|
59
|
-
end
|
60
|
-
|
61
|
-
|
62
|
-
property_supported :nameservers do
|
63
|
-
content_for_scanner.scan(/Name Server:([^\s]+)\n/).flatten.map do |name|
|
64
|
-
Record::Nameserver.new(name.downcase)
|
65
|
-
end
|
66
|
-
end
|
67
|
-
|
18
|
+
class WhoisAfiliasGrsInfo < BaseAfilias
|
68
19
|
end
|
69
20
|
|
70
21
|
end
|
@@ -7,139 +7,15 @@
|
|
7
7
|
#++
|
8
8
|
|
9
9
|
|
10
|
-
require 'whois/record/parser/
|
11
|
-
require 'whois/record/parser/scanners/afilias'
|
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
|
-
# = whois.afilias.info parser
|
20
|
-
#
|
21
17
|
# Parser for the whois.afilias.info server.
|
22
|
-
|
23
|
-
class WhoisAfiliasInfo < 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
|
64
|
-
|
65
|
-
property_supported :updated_on do
|
66
|
-
node("Last Updated On") do |value|
|
67
|
-
Time.parse(value)
|
68
|
-
end
|
69
|
-
end
|
70
|
-
|
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
|
-
|
120
|
-
private
|
121
|
-
|
122
|
-
def contact(element, type)
|
123
|
-
node("#{element} ID") do
|
124
|
-
address = (1..3).map { |i| node("#{element} Street#{i}") }.delete_if(&:empty?).join(" ")
|
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
|
-
)
|
140
|
-
end
|
141
|
-
end
|
142
|
-
|
18
|
+
class WhoisAfiliasInfo < BaseAfilias
|
143
19
|
end
|
144
20
|
|
145
21
|
end
|
@@ -8,7 +8,7 @@
|
|
8
8
|
|
9
9
|
|
10
10
|
require 'whois/record/parser/base'
|
11
|
-
require 'whois/record/parser/scanners/
|
11
|
+
require 'whois/record/parser/scanners/whois.biz.rb'
|
12
12
|
|
13
13
|
|
14
14
|
module Whois
|
@@ -21,7 +21,7 @@ module Whois
|
|
21
21
|
# Parser for the whois.biz server.
|
22
22
|
#
|
23
23
|
class WhoisBiz < Base
|
24
|
-
include
|
24
|
+
include Scanners::Ast
|
25
25
|
|
26
26
|
# Actually the :disclaimer is supported,
|
27
27
|
# but extracting it with the current scanner
|
@@ -48,7 +48,7 @@ module Whois
|
|
48
48
|
end
|
49
49
|
|
50
50
|
property_supported :available? do
|
51
|
-
!!node("status
|
51
|
+
!!node("status:available")
|
52
52
|
end
|
53
53
|
|
54
54
|
property_supported :registered? do
|
@@ -99,13 +99,13 @@ module Whois
|
|
99
99
|
end
|
100
100
|
|
101
101
|
|
102
|
-
# Initializes a new {Scanners::
|
103
|
-
# passing the {
|
102
|
+
# Initializes a new {Scanners::WhoisBiz} instance
|
103
|
+
# passing the {#content_for_scanner}
|
104
104
|
# and calls +parse+ on it.
|
105
105
|
#
|
106
106
|
# @return [Hash]
|
107
107
|
def parse
|
108
|
-
Scanners::
|
108
|
+
Scanners::WhoisBiz.new(content_for_scanner).parse
|
109
109
|
end
|
110
110
|
|
111
111
|
|
@@ -21,7 +21,7 @@ module Whois
|
|
21
21
|
# Parser for the whois.cnnic.cn server.
|
22
22
|
#
|
23
23
|
class WhoisCnnicCn < Base
|
24
|
-
include
|
24
|
+
include Scanners::Ast
|
25
25
|
|
26
26
|
|
27
27
|
property_not_supported :disclaimer
|
@@ -46,7 +46,7 @@ module Whois
|
|
46
46
|
end
|
47
47
|
|
48
48
|
property_supported :available? do
|
49
|
-
!!node("status
|
49
|
+
!!node("status:available")
|
50
50
|
end
|
51
51
|
|
52
52
|
property_supported :registered? do
|
@@ -94,12 +94,12 @@ module Whois
|
|
94
94
|
|
95
95
|
# NEWPROPERTY
|
96
96
|
def reserved?
|
97
|
-
!!node("status
|
97
|
+
!!node("status:reserved")
|
98
98
|
end
|
99
99
|
|
100
100
|
|
101
|
-
# Initializes a new {
|
102
|
-
# passing the {
|
101
|
+
# Initializes a new {Scanners::Cnnic} instance
|
102
|
+
# passing the {#content_for_scanner}
|
103
103
|
# and calls +parse+ on it.
|
104
104
|
#
|
105
105
|
# @return [Hash]
|
@@ -21,7 +21,7 @@ module Whois
|
|
21
21
|
# Parser for the whois.crsnic.net server.
|
22
22
|
#
|
23
23
|
class WhoisCrsnicNet < Base
|
24
|
-
include
|
24
|
+
include Scanners::Ast
|
25
25
|
|
26
26
|
property_supported :disclaimer do
|
27
27
|
node("Disclaimer")
|
@@ -88,7 +88,7 @@ module Whois
|
|
88
88
|
|
89
89
|
|
90
90
|
# Initializes a new {Scanners::Verisign} instance
|
91
|
-
# passing the {
|
91
|
+
# passing the {#content_for_scanner}
|
92
92
|
# and calls +parse+ on it.
|
93
93
|
#
|
94
94
|
# @return [Hash]
|
@@ -8,7 +8,7 @@
|
|
8
8
|
|
9
9
|
|
10
10
|
require 'whois/record/parser/base'
|
11
|
-
require 'whois/record/parser/scanners/
|
11
|
+
require 'whois/record/parser/scanners/whois.denic.de.rb'
|
12
12
|
|
13
13
|
|
14
14
|
module Whois
|
@@ -24,7 +24,7 @@ module Whois
|
|
24
24
|
# @author Aaron Mueller <mail@aaron-mueller.de>
|
25
25
|
#
|
26
26
|
class WhoisDenicDe < Base
|
27
|
-
include
|
27
|
+
include Scanners::Ast
|
28
28
|
|
29
29
|
property_supported :disclaimer do
|
30
30
|
node("Disclaimer")
|
@@ -64,7 +64,7 @@ module Whois
|
|
64
64
|
end
|
65
65
|
|
66
66
|
property_supported :available? do
|
67
|
-
!invalid? && (!!node("status
|
67
|
+
!invalid? && (!!node("status:available") || node("Status") == "free")
|
68
68
|
end
|
69
69
|
|
70
70
|
property_supported :registered? do
|
@@ -130,7 +130,7 @@ module Whois
|
|
130
130
|
# % Error: 55000000002 Connection refused; access control limit reached.
|
131
131
|
#
|
132
132
|
def response_throttled?
|
133
|
-
!!node("response
|
133
|
+
!!node("response:throttled")
|
134
134
|
end
|
135
135
|
|
136
136
|
|
@@ -146,18 +146,18 @@ module Whois
|
|
146
146
|
# NEWPROPERTY
|
147
147
|
def invalid?
|
148
148
|
cached_properties_fetch :invalid? do
|
149
|
-
!!node("status
|
149
|
+
!!node("status:invalid") || node("Status") == "invalid"
|
150
150
|
end
|
151
151
|
end
|
152
152
|
|
153
153
|
|
154
|
-
# Initializes a new {
|
155
|
-
# passing the {
|
154
|
+
# Initializes a new {Scanners::WhoisDenicDe} instance
|
155
|
+
# passing the {#content_for_scanner}
|
156
156
|
# and calls +parse+ on it.
|
157
157
|
#
|
158
158
|
# @return [Hash]
|
159
159
|
def parse
|
160
|
-
|
160
|
+
Scanners::WhoisDenicDe.new(content_for_scanner).parse
|
161
161
|
end
|
162
162
|
|
163
163
|
|
@@ -171,103 +171,6 @@ module Whois
|
|
171
171
|
end
|
172
172
|
end
|
173
173
|
|
174
|
-
|
175
|
-
class Scanner < Scanners::Base
|
176
|
-
|
177
|
-
def parse_content
|
178
|
-
parse_throttled ||
|
179
|
-
parse_disclaimer ||
|
180
|
-
parse_invalid || # 1.10.0, 1.11.0
|
181
|
-
parse_available || # 1.10.0, 1.11.0
|
182
|
-
parse_pair(@ast) ||
|
183
|
-
parse_contact ||
|
184
|
-
parse_db_time || # 2.0
|
185
|
-
|
186
|
-
trim_empty_line ||
|
187
|
-
error!("Unexpected token")
|
188
|
-
end
|
189
|
-
|
190
|
-
|
191
|
-
def parse_throttled
|
192
|
-
if @input.match?(/^% Error: 55000000002/)
|
193
|
-
@ast["response-throttled"] = true
|
194
|
-
@input.skip(/^.+\n/)
|
195
|
-
end
|
196
|
-
end
|
197
|
-
|
198
|
-
def parse_disclaimer
|
199
|
-
if @input.match?(/% Copyright \(c\) *\d{4} by DENIC\n/)
|
200
|
-
@input.scan_until(/% Terms and Conditions of Use\n/)
|
201
|
-
lines = []
|
202
|
-
while @input.match?(/%/) && @input.scan(/%(.*)\n/)
|
203
|
-
lines << @input[1].strip unless @input[1].strip == ""
|
204
|
-
end
|
205
|
-
@ast["Disclaimer"] = lines.join(" ")
|
206
|
-
end
|
207
|
-
end
|
208
|
-
|
209
|
-
def parse_pair(node)
|
210
|
-
if @input.scan(/([^ \[]*):(.*)\n/)
|
211
|
-
key, value = @input[1].strip, @input[2].strip
|
212
|
-
if node[key].nil?
|
213
|
-
node[key] = value
|
214
|
-
else
|
215
|
-
node[key].is_a?(Array) || node[key] = [node[key]]
|
216
|
-
node[key] << value
|
217
|
-
end
|
218
|
-
true
|
219
|
-
end
|
220
|
-
end
|
221
|
-
|
222
|
-
def parse_contact
|
223
|
-
if @input.scan(/\[(.*)\]\n/)
|
224
|
-
contact_name = @input[1]
|
225
|
-
contact = {}
|
226
|
-
while parse_pair(contact)
|
227
|
-
end
|
228
|
-
@ast[contact_name] = {
|
229
|
-
"id" => nil,
|
230
|
-
"name" => contact['Name'],
|
231
|
-
"organization" => contact['Organisation'],
|
232
|
-
"address" => contact['Address'],
|
233
|
-
"city" => contact['City'],
|
234
|
-
# 1.10.0, 1.11.0 || 2.0
|
235
|
-
"zip" => contact['Pcode'] || contact['PostalCode'],
|
236
|
-
"state" => nil,
|
237
|
-
"country" => contact['Country'],
|
238
|
-
"country_code" => contact['CountryCode'],
|
239
|
-
"phone" => contact['Phone'],
|
240
|
-
"fax" => contact['Fax'],
|
241
|
-
"email" => contact['Email'],
|
242
|
-
"created_on" => nil,
|
243
|
-
"updated_on" => contact['Changed']
|
244
|
-
}
|
245
|
-
end
|
246
|
-
end
|
247
|
-
|
248
|
-
# Compatibility with Version: 1.11.0, 1.10.0
|
249
|
-
def parse_available
|
250
|
-
if @input.match?(/% Object ".+" not found in database\n/)
|
251
|
-
while @input.scan(/%(.*)\n/) # strip junk
|
252
|
-
end
|
253
|
-
@ast["status-available"] = true
|
254
|
-
end
|
255
|
-
end
|
256
|
-
|
257
|
-
def parse_invalid
|
258
|
-
if @input.match?(/% ".+" is not a valid domain name\n/)
|
259
|
-
@input.scan(/% "(.+?)" is not a valid domain name\n/)
|
260
|
-
@ast["Domain"] = @input[1]
|
261
|
-
@ast["status-invalid"] = true
|
262
|
-
end
|
263
|
-
end
|
264
|
-
|
265
|
-
def parse_db_time
|
266
|
-
@input.scan(/^% DB time is (.+)\n$/)
|
267
|
-
end
|
268
|
-
|
269
|
-
end
|
270
|
-
|
271
174
|
end
|
272
175
|
end
|
273
176
|
end
|