class Facter::Resolvers::Hostname

Private Class Methods

construct_fact_list(hostname, domain, fqdn) click to toggle source
# File lib/facter/resolvers/hostname.rb, line 85
def construct_fact_list(hostname, domain, fqdn)
  @fact_list[:hostname] = hostname
  @fact_list[:domain] = domain
  @fact_list[:fqdn] = construct_fqdn(@fact_list[:hostname], @fact_list[:domain], fqdn)
end
construct_fqdn(host, domain, fqdn) click to toggle source
# File lib/facter/resolvers/hostname.rb, line 78
def construct_fqdn(host, domain, fqdn)
  return fqdn if exists_and_not_empty?(fqdn)
  return if host.nil? || host.empty?

  exists_and_not_empty?(domain) ? "#{host}.#{domain}" : host
end
exists_and_not_empty?(variable) click to toggle source
# File lib/facter/resolvers/hostname.rb, line 91
def exists_and_not_empty?(variable)
  variable && !variable.empty?
end
exists_and_valid_fqdn?(fqdn, hostname) click to toggle source
# File lib/facter/resolvers/hostname.rb, line 61
def exists_and_valid_fqdn?(fqdn, hostname)
  exists_and_not_empty?(fqdn) && fqdn.start_with?("#{hostname}.")
end
hostname_and_no_domain?(hostname, domain) click to toggle source
# File lib/facter/resolvers/hostname.rb, line 65
def hostname_and_no_domain?(hostname, domain)
  domain.empty? && !hostname.empty?
end
post_resolve(fact_name, _options) click to toggle source
# File lib/facter/resolvers/hostname.rb, line 15
def post_resolve(fact_name, _options)
  @fact_list.fetch(fact_name) { retrieve_info(fact_name) }
end
read_domain() click to toggle source
# File lib/facter/resolvers/hostname.rb, line 69
def read_domain
  file_content = Facter::Util::FileHelper.safe_read('/etc/resolv.conf')
  if file_content =~ /^domain\s+([^.]\S+)/
    Regexp.last_match(1)
  elsif file_content =~ /^search\s+([^.]\S+)/
    Regexp.last_match(1)
  end
end
retrieve_from_fqdn(output) click to toggle source
# File lib/facter/resolvers/hostname.rb, line 39
def retrieve_from_fqdn(output)
  if output =~ /(.*?)\.(.+$)/
    log.debug("Managed to read hostname: #{Regexp.last_match(1)} and domain: #{Regexp.last_match(2)}")
    [Regexp.last_match(1), Regexp.last_match(2)]
  else
    log.debug("Only managed to read hostname: #{output}, no domain was found.")
    [output, '']
  end
end
retrieve_info(fact_name) click to toggle source
# File lib/facter/resolvers/hostname.rb, line 19
def retrieve_info(fact_name)
  require 'socket'
  output = Socket.gethostname
  unless output
    log.debug('Socket.gethostname failed to return hostname')
    return
  end

  hostname, domain = retrieve_from_fqdn(output)

  fqdn = retrieve_with_addrinfo(hostname) if hostname_and_no_domain?(hostname, domain)

  _, domain = retrieve_from_fqdn(fqdn) if exists_and_valid_fqdn?(fqdn, hostname)

  domain = read_domain unless exists_and_not_empty?(domain)

  construct_fact_list(hostname, domain, fqdn)
  @fact_list[fact_name]
end
retrieve_with_addrinfo(host) click to toggle source
# File lib/facter/resolvers/hostname.rb, line 49
def retrieve_with_addrinfo(host)
  begin
    name = Socket.getaddrinfo(host, 0, Socket::AF_UNSPEC, Socket::SOCK_STREAM, nil, Socket::AI_CANONNAME)[0]
  rescue StandardError => e
    @log.debug("Socket.getaddrinfo failed to retrieve fqdn for hostname #{host} with: #{e}")
    return
  end
  return if name.nil? || name.empty? || host == name[2] || name[2] == name[3]

  name[2]
end