Sha256: 345e452aad72f3bae0f91816eef1f0692192bd8a3a77af41e75623b291ae0c3a

Contents?: true

Size: 1.56 KB

Versions: 15

Compression:

Stored size: 1.56 KB

Contents

#
# = Ruby Whois
#
# An intelligent pure Ruby WHOIS client and parser.
#
#
# Category::    Net
# Package::     Whois
# Author::      Simone Carletti <weppos@weppos.net>
# License::     MIT License
#
#--
#
#++


require 'whois/answer/parser/base'


module Whois
  class Answer
    class Parser

      #
      # = whois.dns.pt parser
      #
      # Parser for the whois.dns.pt 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 WhoisDnsPt < Base

        property_supported :status do
          @status ||= if content_for_scanner =~ / Status:\s+(.*)\n/
            $1
          end
        end

        property_supported :available? do
          @available ||= !!(content_for_scanner =~ /^.* no match$/)
        end

        property_supported :registered? do
          @registered ||= !available?
        end


        property_supported :created_on do
          @created_on ||= if content_for_scanner =~ / Creation Date .+?:\s+(.*)\n/
            DateTime.strptime($1, "%d/%m/%Y").to_time
          end
        end

        property_not_supported :updated_on

        property_not_supported :expires_on


        property_supported :nameservers do
          @nameservers ||= content_for_scanner.scan(/Nameserver:\s+(.+)\n/).flatten.map { |value| value.chomp(".") }
        end

      end

    end
  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
whois-1.3.10 lib/whois/answer/parser/whois.dns.pt.rb
whois-1.3.9 lib/whois/answer/parser/whois.dns.pt.rb
whois-1.3.8 lib/whois/answer/parser/whois.dns.pt.rb
whois-1.3.7 lib/whois/answer/parser/whois.dns.pt.rb
whois-1.3.6 lib/whois/answer/parser/whois.dns.pt.rb
whois-1.3.5 lib/whois/answer/parser/whois.dns.pt.rb
whois-1.3.4 lib/whois/answer/parser/whois.dns.pt.rb
whois-1.3.3 lib/whois/answer/parser/whois.dns.pt.rb
whois-1.3.2 lib/whois/answer/parser/whois.dns.pt.rb
whois-1.3.1 lib/whois/answer/parser/whois.dns.pt.rb
whois-1.3.0 lib/whois/answer/parser/whois.dns.pt.rb
whois-1.2.2 lib/whois/answer/parser/whois.dns.pt.rb
whois-1.2.1 lib/whois/answer/parser/whois.dns.pt.rb
whois-1.2.0 lib/whois/answer/parser/whois.dns.pt.rb
whois-1.1.8 lib/whois/answer/parser/whois.dns.pt.rb