Sha256: cea95700cbed6565c51b304d680930ada3b3eff148de68ccd59eac61d570416f
Contents?: true
Size: 1.27 KB
Versions: 1
Compression:
Stored size: 1.27 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 # # = Arin Adapter # # Provides ability to query Arin WHOIS interfaces. # class Arin < Base # Executes a WHOIS query to the Arin 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("n + #{string}", host) buffer_append response, host if options[:referral] != false && (referral = extract_referral(response)) response = query_the_socket(string, referral[:host], referral[:port]) buffer_append(response, referral[:host]) end end private def extract_referral(response) return unless response =~ %r{ReferralServer:\s*r?whois://([\w.-]+)(?::(\d+))?} { host: Regexp.last_match(1), port: Regexp.last_match(2) ? Regexp.last_match(2).to_i : nil, } end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
whois-5.1.0 | lib/whois/server/adapters/arin.rb |