#-- # Ruby Whois # # An intelligent pure Ruby WHOIS client and parser. # # Copyright (c) 2009-2011 Simone Carletti #++ require 'whois/record/parser/base' module Whois class Record class Parser # # = whois.jprs.jp parser # # Parser for the whois.jprs.jp 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 WhoisNicIt parser for an explanation of all available methods # and examples. # class WhoisJprsJp < Base property_supported :status do if content_for_scanner =~ /\[Stat(?:us|e)\]\s+(.*)\n/ case $1.split(" ").first.downcase when "active" then :registered when "connected" then :registered when "reserved" then :reserved else Whois.bug!(ParserError, "Unknown status `#{$1}'.") end else :available end end property_supported :available? do !!(content_for_scanner =~ /No match!!/) end property_supported :registered? do !available? end # TODO: timezone ('Asia/Tokyo') property_supported :created_on do if content_for_scanner =~ /\[(?:Created on|Registered Date)\][ \t]+(.*)\n/ ($1.empty?) ? nil : Time.parse($1) end end # TODO: timezone ('Asia/Tokyo') property_supported :updated_on do if content_for_scanner =~ /\[Last Updated?\][ \t]+(.*)\n/ ($1.empty?) ? nil : Time.parse($1) end end # TODO: timezone ('Asia/Tokyo') property_supported :expires_on do if content_for_scanner =~ /\[Expires on\][ \t]+(.*)\n/ ($1.empty?) ? nil : Time.parse($1) end end property_supported :nameservers do content_for_scanner.scan(/\[Name Server\][\s\t]+([^\s\n]+?)\n/).flatten.map do |name| Record::Nameserver.new(name) end end end end end end