#-- # Ruby Whois # # An intelligent pure Ruby WHOIS client and parser. # # Copyright (c) 2009-2022 Simone Carletti #++ require_relative 'base' module Whois class Parsers # # = whois.sk-nic.sk parser # # Parser for the whois.sk-nic.sk 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 WhoisSkNicSk < Base # == Values for Status # # @see https://www.sk-nic.sk/documents/stavy_domen.html # @see http://www.inwx.de/en/sk-domain.html # property_supported :status do if content_for_scanner =~ /^Domain-status\s+(.+)\n/ case ::Regexp.last_match(1).downcase # The domain is registered and paid. when "dom_ok" :registered # The domain is registered and registration fee has to be payed (14 days). # Replacement 14-day period for domain payment. when "dom_ta" :registered # 28 days before the expiration of one year's notice is sent to the first call for an extension of domains. # The domain is still fully functional (14 days). when "dom_dakt" :registered # 14 days before the expiration of one year's notice is sent to the second call to the extension of domains. # The domain is still fully functional (14 days). when "dom_warn" :registered # The domain is expired and has not been renewed (14 days). when "dom_lnot" :registered when "dom_exp" :registered # The domain losts its registrar (28 days). when "dom_held" :redemption else Whois::Parser.bug!(ParserError, "Unknown status `#{::Regexp.last_match(1)}'.") end else :available end end property_supported :available? do !!(content_for_scanner =~ /^Not found/) end property_supported :registered? do !available? end property_not_supported :created_on property_supported :updated_on do if content_for_scanner =~ /^Last-update\s+(.+)\n/ parse_time(::Regexp.last_match(1)) end end property_supported :expires_on do if content_for_scanner =~ /^Valid-date\s+(.+)\n/ parse_time(::Regexp.last_match(1)) end end property_supported :nameservers do content_for_scanner.scan(/dns_name\s+(.+)\n/).flatten.map do |name| Parser::Nameserver.new(:name => name) end end end end end