Sha256: 112c47c428614aa0408f78159ae50c46b0589bc6db8e13521a9c6fcd1c1927d8

Contents?: true

Size: 1.68 KB

Versions: 11

Compression:

Stored size: 1.68 KB

Contents

module Actions
  module Katello
    module Organization
      class ManifestImport < Actions::AbstractAsyncTask
        middleware.use Actions::Middleware::PropagateCandlepinErrors

        include Helpers::Notifications

        def plan(organization, path, force)
          action_subject organization
          manifest_update = organization.products.redhat.any?

          sequence do
            plan_action(Candlepin::Owner::Import,
                        :label => organization.label,
                        :path => path,
                        :force => force)
            plan_action(Candlepin::Owner::ImportProducts, :organization_id => organization.id)

            if manifest_update
              repositories = ::Katello::Repository.in_default_view.in_product(::Katello::Product.redhat.in_org(organization))
              repositories.each do |repo|
                plan_action(Katello::Repository::RefreshRepository, repo)
              end
            end
            plan_self
          end
        end

        def failure_notification(plan)
          ::Katello::UINotifications::Subscriptions::ManifestImportError.deliver!(
            :subject => subject_organization,
            :task => get_foreman_task(plan)
          )
        end

        def success_notification(_plan)
          ::Katello::UINotifications::Subscriptions::ManifestImportSuccess.deliver!(
            subject_organization
          )
        end

        def humanized_name
          _("Import Manifest")
        end

        def finalize
          subject_organization.clear_manifest_expired_notifications
          subject_organization.audit_manifest_action(_('Manifest imported'))
        end
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
katello-4.0.3 app/lib/actions/katello/organization/manifest_import.rb
katello-4.0.2.1 app/lib/actions/katello/organization/manifest_import.rb
katello-4.0.2 app/lib/actions/katello/organization/manifest_import.rb
katello-4.0.1.2 app/lib/actions/katello/organization/manifest_import.rb
katello-4.0.1.1 app/lib/actions/katello/organization/manifest_import.rb
katello-4.0.1 app/lib/actions/katello/organization/manifest_import.rb
katello-4.0.0 app/lib/actions/katello/organization/manifest_import.rb
katello-4.0.0.rc3.1 app/lib/actions/katello/organization/manifest_import.rb
katello-4.0.0.rc3 app/lib/actions/katello/organization/manifest_import.rb
katello-4.0.0.rc2 app/lib/actions/katello/organization/manifest_import.rb
katello-4.0.0.rc1 app/lib/actions/katello/organization/manifest_import.rb