Sha256: 6bac2807110cac0bd4bb54f9786e7ddfc2b406389bc88a2b8e30b59dafb2baae

Contents?: true

Size: 1.65 KB

Versions: 6

Compression:

Stored size: 1.65 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

      # Parser for the whois.dot.tk 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 Whois::Record::Parser::Example
      #   The Example parser for the list of all available methods.
      #
      class WhoisDotTk < Base

        property_supported :status do
          if available?
            :available
          else
            :registered
          end
        end

        property_supported :available? do
          !!(content_for_scanner =~ /domain name not known/)
        end

        property_supported :registered? do
          !available?
        end


        property_supported :created_on do
          if content_for_scanner =~ /Domain registered:\s(.+)\n/
            Time.strptime($1, "%m/%d/%Y")
          end
        end

        property_not_supported :updated_on

        property_supported :expires_on do
          if content_for_scanner =~ /Record will expire on:\s(.+)\n/
            Time.strptime($1, "%m/%d/%Y")
          end
        end


        property_supported :nameservers do
          if content_for_scanner =~ /Domain Nameservers:\n((.+\n)+)\s+\n/
            $1.split("\n").map do |name|
              Record::Nameserver.new(name: name.strip.downcase)
            end
          end
        end

      end

    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
whois-3.4.3 lib/whois/record/parser/whois.dot.tk.rb
whois-3.4.2 lib/whois/record/parser/whois.dot.tk.rb
whois-3.4.1 lib/whois/record/parser/whois.dot.tk.rb
whois-3.4.0 lib/whois/record/parser/whois.dot.tk.rb
whois-3.3.1 lib/whois/record/parser/whois.dot.tk.rb
whois-3.3.0 lib/whois/record/parser/whois.dot.tk.rb