Sha256: d40052a438ece7866d810111712ebdfcd704ed109d0ff045aa104e0a6d09bef7

Contents?: true

Size: 1.1 KB

Versions: 16

Compression:

Stored size: 1.1 KB

Contents

module Actions
  module Katello
    module ContentView
      class Destroy < Actions::EntryAction
        middleware.use ::Actions::Middleware::RemoteAction

        def plan(content_view, options = {})
          action_subject(content_view)
          if options.fetch(:check_ready_to_destroy, true)
            content_view.check_ready_to_destroy!
          end

          sequence do
            concurrence do
              content_view.content_view_versions.each do |version|
                plan_action(ContentViewVersion::Destroy, version, options)
              end
            end

            if SmartProxy.pulp_master&.pulp3_enabled?
              plan_action(Actions::Pulp3::ContentView::DeleteRepositoryReferences, content_view, SmartProxy.pulp_master)
            end
            plan_self
          end
        end

        def finalize
          content_view = ::Katello::ContentView.find(input[:content_view][:id])
          content_view.content_view_repositories.each(&:destroy)
          content_view.destroy!
        end

        def humanized_name
          _("Delete")
        end
      end
    end
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
katello-3.16.2 app/lib/actions/katello/content_view/destroy.rb
katello-3.16.1.2 app/lib/actions/katello/content_view/destroy.rb
katello-3.16.1.1 app/lib/actions/katello/content_view/destroy.rb
katello-3.16.1 app/lib/actions/katello/content_view/destroy.rb
katello-3.17.0.rc1 app/lib/actions/katello/content_view/destroy.rb
katello-3.16.0 app/lib/actions/katello/content_view/destroy.rb
katello-3.16.0.rc5.1 app/lib/actions/katello/content_view/destroy.rb
katello-3.16.0.rc5 app/lib/actions/katello/content_view/destroy.rb
katello-3.16.0.rc4.1 app/lib/actions/katello/content_view/destroy.rb
katello-3.16.0.rc4 app/lib/actions/katello/content_view/destroy.rb
katello-3.16.0.rc3.1 app/lib/actions/katello/content_view/destroy.rb
katello-3.16.0.rc3 app/lib/actions/katello/content_view/destroy.rb
katello-3.16.0.rc2.1 app/lib/actions/katello/content_view/destroy.rb
katello-3.16.0.rc2 app/lib/actions/katello/content_view/destroy.rb
katello-3.16.0.rc1.1 app/lib/actions/katello/content_view/destroy.rb
katello-3.16.0.rc1 app/lib/actions/katello/content_view/destroy.rb