#-- # Ruby Whois # # An intelligent pure Ruby WHOIS client and parser. # # Copyright (c) 2009-2014 Simone Carletti #++ require 'whois/record/parser/base' require 'whois/record/scanners/whois.nc.rb' module Whois class Record class Parser # Parser for the whois.nc server. # # @see Whois::Record::Parser::Example # The Example parser for the list of all available methods. # class WhoisNc < Base include Scanners::Scannable self.scanner = Scanners::WhoisNc property_not_supported :disclaimer property_supported :domain do node("Domain") end property_not_supported :domain_id property_supported :status do if available? :available else :registered end end property_supported :available? do !!node("status:available") end property_supported :registered? do !available? end property_supported :created_on do node("Created on") { |value| Time.parse(value) } end property_supported :updated_on do node("Last updated on") { |value| Time.parse(value) } end property_supported :expires_on do node("Expires on") { |value| Time.parse(value) } end property_not_supported :registrar property_supported :registrant_contacts do node("Registrant name") do |str| address = [] index = 1 while line = node("Registrant address #{index}") address << line index += 1 end lines = address.dup country = lines[-1] =~ /(\d+)/ ? nil : lines.pop zip, city = lines.pop.match(/(\d+) (.+)/)[1, 2] Record::Contact.new( :type => Whois::Record::Contact::TYPE_REGISTRANT, :id => nil, :name => node("Registrant name"), :organization => nil, :address => lines.join("\n"), :city => city, :zip => zip, :state => nil, :country => country, :phone => nil, :fax => nil, :email => nil ) end end property_not_supported :admin_contacts property_not_supported :technical_contacts property_supported :nameservers do nameservers = [] index = 1 while line = node("Domain server #{index}") nameservers << line index += 1 end nameservers.map do |name| Record::Nameserver.new(:name => name) end end end end end end