Sha256: 0a33b9b646dd3bad9bd5554947461cbdbedc90ef189b86ac353d19213fd35528
Contents?: true
Size: 1.18 KB
Versions: 2
Compression:
Stored size: 1.18 KB
Contents
# frozen_string_literal: true #-- # Ruby Whois # # An intelligent pure Ruby WHOIS client and parser. # # Copyright (c) 2009-2022 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) return unless (match = response.match(/Registrar WHOIS Server:(.+?)$/)) server = match[match.size - 1].strip server.empty? ? nil : server end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
whois-5.1.1 | lib/whois/server/adapters/afilias.rb |
whois-5.1.0 | lib/whois/server/adapters/afilias.rb |