#-- # Ruby Whois # # An intelligent pure Ruby WHOIS client and parser. # # Copyright (c) 2009-2012 Simone Carletti <weppos@weppos.net> #++ require 'whois/record/parser/base' module Whois class Record class Parser # Parser for the whois.dns.be server. # # @note This parser is just a stub and provides only a few basic methods # to check for domain availability and get domain status. # Please consider to contribute implementing missing methods. # # @see Whois::Record::Parser::Example # The Example parser for the list of all available methods. # class WhoisDnsBe < Base property_supported :status do if content_for_scanner =~ /Status:\s+(.+?)\n/ case $1.downcase when "available" then :available when "not available" then :registered when "quarantine" then :redemption when "out of service" then :redemption # old response when "registered" then :registered when "free" then :available else Whois.bug!(ParserError, "Unknown status `#{$1}'.") end else Whois.bug!(ParserError, "Unable to parse status.") end end property_supported :available? do (status == :available) end property_supported :registered? do !available? end property_supported :created_on do if content_for_scanner =~ /Registered:\s+(.+)\n/ Time.parse($1) end end property_not_supported :updated_on property_not_supported :expires_on property_supported :nameservers do if content_for_scanner =~ /Nameservers:\s((.+\n)+)\n/ $1.split("\n").map do |line| if line.strip =~ /(.+) \((.+)\)/ Record::Nameserver.new(:name => $1, :ipv4 => $2) else Record::Nameserver.new(:name => line.strip) end end end end # Checks whether the response has been throttled. # # @return [Boolean] def response_throttled? !!(content_for_scanner =~ /^% (Excessive querying|Maximum queries per hour reached)/) end # The following methods are implemented by Yang Li on 01/24/2013 # ---------------------------------------------------------------------------- property_supported :domain do return $1 if content_for_scanner =~ /Domain Name:\s+(.*)\n/i end property_supported :domain_id do return $1 if content_for_scanner =~ /Domain ID:\s+(.*)\n/i end property_supported :registrar do reg=Record::Registrar.new if content_for_scanner =~ /Registrar Technical Contacts:\n((.+\n)+)\n/ $1.scan(/^(.+?):(.+?)\n/).map do |entry| reg["name"] = entry[1].strip if entry[0] =~ /Name/i reg["organization"] = entry[1] if entry[0] =~ /Organisation/i reg["url"] = entry[1] if entry[0] =~ /Email/i end end return reg end property_supported :registrant_contacts do build_contact("Registrant", Whois::Record::Contact::TYPE_REGISTRANT) end property_not_supported :admin_contacts property_not_supported :technical_contacts property_not_supported :billing_contacts private def build_contact(element, type) reg=Record::Contact.new(:type => type) if content_for_scanner =~ /^#{element}:\n((.+\n)+)\n/i line_num=1 $1.split(%r{\n}).each do |entry| reg["name"]=entry.strip if line_num==1 reg["organization"]=entry.strip if line_num==1 line_num=line_num+1 end end return reg end # ---------------------------------------------------------------------------- end end end end