Sha256: ae39b464b64709dda8fb9707f84cee44e85302914a90fd7fb59c45bd0a770f52

Contents?: true

Size: 1.62 KB

Versions: 7

Compression:

Stored size: 1.62 KB

Contents

module Actions
  module Katello
    module Host
      class RemoveSubscriptions < Actions::EntryAction
        middleware.use Actions::Middleware::KeepCurrentUser

        def plan(host, pools_with_quantities_params)
          action_subject(host)
          pools_with_quantities = pools_with_quantities_params.map do |pool_with_quantity|
            ::Katello::PoolWithQuantities.fetch(pool_with_quantity)
          end
          cp_consumer = host.subscription_facet.candlepin_consumer
          entitlements = pools_with_quantities.map do |pool_with_quantities|
            cp_consumer.filter_entitlements(pool_with_quantities.pool.cp_id, pool_with_quantities.quantities)
          end

          entitlements.flatten.each do |entitlement|
            plan_action(::Actions::Candlepin::Consumer::RemoveSubscription, :uuid => host.subscription_facet.uuid,
                        :entitlement_id => entitlement['id'], :pool_id => entitlement['pool']['id'])
            plan_self(:host_name => host.name)
          end
        end

        def finalize
          ::Katello::Pool.where(:id => input[:pool_ids]).each(&:import_data)
          host = ::Host.find_by(:id => input[:managed][:id])
          host.subscription_facet.update_subscription_status
        end

        def rescue_strategy
          Dynflow::Action::Rescue::Skip
        end

        def humanized_name
          if input.try(:[], :host_name)
            _('Remove subscriptions from %s') % (input[:host_name] || _('Unknown'))
          else
            _('Remove subscriptions')
          end
        end

        def resource_locks
          :link
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
katello-3.2.1.1 app/lib/actions/katello/host/remove_subscriptions.rb
katello-3.2.1 app/lib/actions/katello/host/remove_subscriptions.rb
katello-3.2.0 app/lib/actions/katello/host/remove_subscriptions.rb
katello-3.2.0.rc3 app/lib/actions/katello/host/remove_subscriptions.rb
katello-3.2.0.rc2 app/lib/actions/katello/host/remove_subscriptions.rb
katello-3.2.0.rc1.1 app/lib/actions/katello/host/remove_subscriptions.rb
katello-3.2.0.rc1 app/lib/actions/katello/host/remove_subscriptions.rb