Sha256: 506c2028cc5b374e87683fbc1b398df2402c655a6500e4cdbcfabc56619acaee
Contents?: true
Size: 1.77 KB
Versions: 9
Compression:
Stored size: 1.77 KB
Contents
#-- # Ruby Whois # # An intelligent pure Ruby WHOIS client and parser. # # Copyright (c) 2009-2013 Simone Carletti <weppos@weppos.net> #++ require 'whois/record/parser/base' module Whois class Record class Parser # # = whois.co.ca parser # # Parser for the whois.co.ca 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 WhoisCoCa < Base property_supported :status do case when available? then :available when reserved? then :reserved else :registered end end property_supported :available? do !!(content_for_scanner =~ /^(.+) is available/) end property_supported :registered? do !available? end # NEWPROPERTY def reserved? !!(content_for_scanner =~ /^Domain is not available or is reserved by the registry/) end property_supported :created_on do if content_for_scanner =~ /date_approved:\s+(.+)\n/ Time.parse($1) end end property_not_supported :updated_on property_supported :expires_on do if content_for_scanner =~ /date_renewal:\s+(.+)\n/ Time.parse($1) end end property_supported :nameservers do content_for_scanner.scan(/ns[\d]_hostname:\s+(.+)\n/).flatten.map do |name| Record::Nameserver.new(:name => name) end end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems