Sha256: d90e7fd3464bcfe80865c9ae8f787af95e538b6237ec35cdce474c73f35d3e18

Contents?: true

Size: 1.49 KB

Versions: 42

Compression:

Stored size: 1.49 KB

Contents

module Actions
  module Katello
    module Host
      module Package
        class Remove < Actions::EntryAction
          include Helpers::Presenter

          def plan(host, packages)
            action_subject(host, :packages => packages)
            plan_action(Pulp::Consumer::ContentUninstall,
                        consumer_uuid: host.content_facet.uuid,
                        type:          'rpm',
                        args:          packages)
          end

          def humanized_name
            _("Remove package")
          end

          def humanized_input
            [humanized_package_names.join(', ')] + super
          end

          def humanized_package_names
            input[:packages].inject([]) do |result, package|
              if package.is_a?(Hash)
                new_name = package.include?(:name) ? package[:name] : ""
                new_name += '-' + package[:version] if package.include?(:version)
                new_name += '.' + package[:release] if package.include?(:release)
                new_name += '.' + package[:arch] if package.include?(:arch)
                result << new_name
              else
                result << package
              end
            end
          end

          def presenter
            Helpers::Presenter::Delegated.new(
                self, planned_actions(Pulp::Consumer::ContentUninstall))
          end

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

Version data entries

42 entries across 42 versions & 1 rubygems

Version Path
katello-3.9.1 app/lib/actions/katello/host/package/remove.rb
katello-3.9.0 app/lib/actions/katello/host/package/remove.rb
katello-3.8.1 app/lib/actions/katello/host/package/remove.rb
katello-3.9.0.rc2 app/lib/actions/katello/host/package/remove.rb
katello-3.9.0.rc1 app/lib/actions/katello/host/package/remove.rb
katello-3.7.1.1 app/lib/actions/katello/host/package/remove.rb
katello-3.7.1 app/lib/actions/katello/host/package/remove.rb
katello-3.8.0 app/lib/actions/katello/host/package/remove.rb
katello-3.8.0.rc3 app/lib/actions/katello/host/package/remove.rb
katello-3.8.0.rc2 app/lib/actions/katello/host/package/remove.rb
katello-3.7.0 app/lib/actions/katello/host/package/remove.rb
katello-3.8.0.rc1 app/lib/actions/katello/host/package/remove.rb
katello-3.7.0.rc2 app/lib/actions/katello/host/package/remove.rb
katello-3.7.0.rc1 app/lib/actions/katello/host/package/remove.rb
katello-3.5.2 app/lib/actions/katello/host/package/remove.rb
katello-3.6.0 app/lib/actions/katello/host/package/remove.rb
katello-3.6.0.1.rc2 app/lib/actions/katello/host/package/remove.rb
katello-3.6.0.rc2 app/lib/actions/katello/host/package/remove.rb
katello-3.6.0.rc1 app/lib/actions/katello/host/package/remove.rb
katello-3.5.1.1 app/lib/actions/katello/host/package/remove.rb