aboutsummaryrefslogtreecommitdiff
path: root/lib/mauve/mauve_resolv.rb
blob: c6460e39561108c57fe0fa7322e70cea333e1e73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
require 'resolv-replace'

module Mauve
  #
  # This is just a quick class to resolve a hostname to all its IPs, IPv6 and IPv4.
  #
  class MauveResolv

    class << self

      # Get all IPs for a host, both IPv6 and IPv4.  ResolvError and
      # ResolvTimeout are both rescued.
      #
      # @param [String] host The hostname 
      # @return [Array] Array of IP addresses, as Strings.
      #
      def get_ips_for(host)
        record_types = %w(A AAAA)
        ips = []

        %w(A AAAA).each do |type|
          begin
            Resolv::DNS.open do |dns|
              dns.getresources(host, Resolv::DNS::Resource::IN.const_get(type)).each do |a|
                 ips << a.address.to_s
              end
            end
          rescue Resolv::ResolvError, Resolv::ResolvTimeout => e
            logger.warn("#{host} could not be resolved because #{e.message}.")
          end
        end
        ips
      end

      # @return [Log4r::Logger]
      def logger
        @logger ||= Log4r::Logger.new(self.to_s)
      end
    end
  end
end