Sha256: 3c3be2b3471579496bfd190d58517a46d518f358a11478f1a25b9fc5dd17155b
Contents?: true
Size: 1.77 KB
Versions: 15
Compression:
Stored size: 1.77 KB
Contents
#-- # Ruby Whois # # An intelligent pure Ruby WHOIS client and parser. # # Copyright (c) 2009-2014 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 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 # NEWPROPERTY def reserved? !!(content_for_scanner =~ /^Domain is not available or is reserved by the registry/) end end end end end
Version data entries
15 entries across 15 versions & 1 rubygems