Sha256: 9724d2d0b1b32b09479364cadd2284a9f5ebf358cda12d9dc5c451eefb322d89
Contents?: true
Size: 1.95 KB
Versions: 1
Compression:
Stored size: 1.95 KB
Contents
#-- # Ruby Whois # # An intelligent pure Ruby WHOIS client and parser. # # Copyright (c) 2009-2011 Simone Carletti <weppos@weppos.net> #++ require 'whois/record/parser/base' module Whois class Record class Parser # # = whois.sgnic.sg parser # # Parser for the whois.sgnic.sg 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 WhoisSgnicSg < Base property_supported :status do content_for_scanner.scan(/^\s+Domain Status:\s+(.+?)\n/).flatten end property_supported :available? do !!(content_for_scanner.strip == "Domain Not Found") end property_supported :registered? do !available? end property_supported :created_on do if content_for_scanner =~ /^\s+Creation Date:\s+(.*)\n/ Time.parse($1) end end property_not_supported :updated_on property_supported :expires_on do if content_for_scanner =~ /^\s+Expiration Date:\s+(.*)\n/ Time.parse($1) end end property_supported :nameservers do if content_for_scanner =~ /Name Servers:\n((.+\n)+)\n/ values = case value = $1.downcase # schema-1 when /^(?:\s+([\w.-]+)\n){2,}/ value.split("\n").map(&:strip) # schema-2 when /^(?:\s+([\w.-]+)){2,}/ value.strip.split(/\s+/) else Whois.bug!("Unknown nameservers format `#{value}'") end values.map do |name| Record::Nameserver.new(name) end end end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
whois-2.0.7 | lib/whois/record/parser/whois.sgnic.sg.rb |