Sha256: c79921f47ccd2dc359db4c34eaac5096bff5f351afe94167ee7d8ad8a21712d2

Contents?: true

Size: 1.09 KB

Versions: 5

Compression:

Stored size: 1.09 KB

Contents

#--
# Ruby Whois
#
# An intelligent pure Ruby WHOIS client and parser.
#
# Copyright (c) 2009-2015 Simone Carletti <weppos@weppos.net>
#++


module Whois
  class Server
    module Adapters

      #
      # = Afilias Adapter
      #
      # Provides ability to query Afilias WHOIS interfaces.
      #
      class Afilias < Base

        # Executes a WHOIS query to the Afilias WHOIS interface,
        # resolving any intermediate referral,
        # and appends the response to the client buffer.
        #
        # @param  [String] string
        # @return [void]
        #
        def request(string)
          response = query_the_socket(string, host)
          buffer_append response, host

          if options[:referral] != false && referral = extract_referral(response)
            response = query_the_socket(string, referral)
            buffer_append(response, referral)
          end
        end


        private

        def extract_referral(response)
          if response =~ /Domain Name:/
            response.slice(/Whois Server:(\S+)/, 1)
          end
        end

      end

    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
whois-4.0.0.pre.beta2 lib/whois/server/adapters/afilias.rb
whois-4.0.0.pre.beta1 lib/whois/server/adapters/afilias.rb
whois-3.6.5 lib/whois/server/adapters/afilias.rb
whois-3.6.4 lib/whois/server/adapters/afilias.rb
whois-3.6.3 lib/whois/server/adapters/afilias.rb