Sha256: 7e43fda97304310a456e3c6481af7c7e7e56426fa71e8cb11092288873eb0e03

Contents?: true

Size: 1.29 KB

Versions: 9

Compression:

Stored size: 1.29 KB

Contents

module Actions
  module ForemanVirtWhoConfigure
    module Config
      class Report < Actions::EntryAction
        middleware.use Actions::Middleware::KeepCurrentUser

        def self.subscribe
          Actions::Katello::Host::HypervisorsUpdate
        end

        def plan(hypervisors)
          plan_self(:hypervisors => hypervisors)
        end

        def run
          # this is how we could do mapping to hypervisor hosts based on UUID provided by candelpin
          # input['hypervisors'].each do |hv_attrs|
          #   # should always exist, Actions::Katello::Host::HypervisorsUpdate should create it
          #   # but we should be careful anyway
          #   hypervisor = ::Host.joins(:subscription_facet).where(:'katello_subscription_facets.uuid' => hv_attrs['uuid']).first
          # end

          config = ::ForemanVirtWhoConfigure::ServiceUser.find_by_user_id(User.current.id).try(:config)
          if config.present?
            config.virt_who_touch!
          end

          # if config was not found, the report is coming from unknown virt-who reporter, we could create a notification
          # that this plugin can be used for configuration

          # this could be used for mapping to existing compute resource
          # config.hypervisor_server
        end
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
foreman_virt_who_configure-0.1.7 app/lib/actions/foreman_virt_who_configure/config/report.rb
foreman_virt_who_configure-0.1.6 app/lib/actions/foreman_virt_who_configure/config/report.rb
foreman_virt_who_configure-0.1.5 app/lib/actions/foreman_virt_who_configure/config/report.rb
foreman_virt_who_configure-0.1.4 app/lib/actions/foreman_virt_who_configure/config/report.rb
foreman_virt_who_configure-0.1.3 app/lib/actions/foreman_virt_who_configure/config/report.rb
foreman_virt_who_configure-0.1.2 app/lib/actions/foreman_virt_who_configure/config/report.rb
foreman_virt_who_configure-0.1.1 app/lib/actions/foreman_virt_who_configure/config/report.rb
foreman_virt_who_configure-0.1.0 app/lib/actions/foreman_virt_who_configure/config/report.rb
foreman_virt_who_configure-0.0.2 app/lib/actions/foreman_virt_who_configure/config/report.rb