Sha256: eb4957268ed77f1a4e1ddaf28ea6fa27dfbf2a4f424a71f17b41a5f22ce59f00

Contents?: true

Size: 1.04 KB

Versions: 33

Compression:

Stored size: 1.04 KB

Contents

# frozen_string_literal: true

require 'ipaddress'
module ForemanAnsible
  # Ensures Ansible reports from hosts where the IP was used, are assigned
  # to the right hostname in Foreman
  module AnsibleReportImporter
    extend ActiveSupport::Concern
    included do
      def host
        hostname = name.downcase
        if AnsibleReportScanner.ansible_report?(raw['logs']) &&
           IPAddress.valid?(hostname) &&
           Nic::Interface.find_by(:ip => hostname)
          @host = Nic::Interface.find_by(:ip => hostname).host
        end
        super
        partial_hostname_match(hostname)
      end

      def partial_hostname_match(hostname)
        return @host unless @host.new_record?
        hosts = Host.where(Host.arel_table[:name].matches("#{hostname}.%"))
        if hosts.count > 1
          msg = "More than 1 host found for name #{hostname}, "
          msg += 'please use host FQDN when uploading reports'
          Rails.logger.warn msg
          return @host
        end
        @host = hosts.first || @host
      end
    end
  end
end

Version data entries

33 entries across 33 versions & 1 rubygems

Version Path
foreman_ansible-5.1.3 app/services/foreman_ansible/ansible_report_importer.rb
foreman_ansible-5.1.2 app/services/foreman_ansible/ansible_report_importer.rb
foreman_ansible-5.1.1 app/services/foreman_ansible/ansible_report_importer.rb
foreman_ansible-5.1.0 app/services/foreman_ansible/ansible_report_importer.rb
foreman_ansible-4.0.3.5 app/services/foreman_ansible/ansible_report_importer.rb
foreman_ansible-4.0.3.4 app/services/foreman_ansible/ansible_report_importer.rb
foreman_ansible-4.0.3.3 app/services/foreman_ansible/ansible_report_importer.rb
foreman_ansible-4.0.3.2 app/services/foreman_ansible/ansible_report_importer.rb
foreman_ansible-5.0.1 app/services/foreman_ansible/ansible_report_importer.rb
foreman_ansible-4.0.5 app/services/foreman_ansible/ansible_report_importer.rb
foreman_ansible-4.0.3.1 app/services/foreman_ansible/ansible_report_importer.rb
foreman_ansible-4.0.4 app/services/foreman_ansible/ansible_report_importer.rb
foreman_ansible-5.0.0 app/services/foreman_ansible/ansible_report_importer.rb
foreman_ansible-4.0.3 app/services/foreman_ansible/ansible_report_importer.rb
foreman_ansible-4.0.2 app/services/foreman_ansible/ansible_report_importer.rb
foreman_ansible-4.0.0 app/services/foreman_ansible/ansible_report_importer.rb
foreman_ansible-3.0.9 app/services/foreman_ansible/ansible_report_importer.rb
foreman_ansible-3.0.8 app/services/foreman_ansible/ansible_report_importer.rb
foreman_ansible-3.0.7 app/services/foreman_ansible/ansible_report_importer.rb
foreman_ansible-3.0.6 app/services/foreman_ansible/ansible_report_importer.rb