Sha256: 0050f32f4aca3181be34371f690e4e5e993f411066c0f781ff26d47cea2caa3e

Contents?: true

Size: 1.79 KB

Versions: 42

Compression:

Stored size: 1.79 KB

Contents

module Actions
  module Katello
    module ContentViewVersion
      class Export < Actions::EntryAction
        middleware.use Actions::Middleware::KeepCurrentUser

        def plan(content_view_version, export_to_iso, since, iso_size)
          # assemble data to feed to Pulp
          content_view = ::Katello::ContentView.find(content_view_version.content_view_id)
          org_label = ::Organization.find_by(:id => content_view.organization_id).label
          group_id = "#{org_label}-#{content_view.label}-"\
                     "v#{content_view_version.major}.#{content_view_version.minor}"
          action_subject(content_view_version)

          repos = content_view_version.archived_repos.select { |r| r.content_type == 'yum' }

          history = ::Katello::ContentViewHistory.create!(:content_view_version => content_view_version,
                                                          :user => ::User.current.login,
                                                          :status => ::Katello::ContentViewHistory::IN_PROGRESS,
                                                          :action => ::Katello::ContentViewHistory.actions[:export],
                                                          :task => self.task)

          plan_action(Katello::Repository::Export, repos, export_to_iso, since, iso_size,
                                                   group_id)
          plan_self(:history_id => history.id)
        end

        def humanized_name
          _("Export")
        end

        def finalize
          history = ::Katello::ContentViewHistory.find(input[:history_id])
          history.status = ::Katello::ContentViewHistory::SUCCESSFUL
          history.save!
        end

        def rescue_strategy
          Dynflow::Action::Rescue::Skip
        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/content_view_version/export.rb
katello-3.9.0 app/lib/actions/katello/content_view_version/export.rb
katello-3.8.1 app/lib/actions/katello/content_view_version/export.rb
katello-3.9.0.rc2 app/lib/actions/katello/content_view_version/export.rb
katello-3.9.0.rc1 app/lib/actions/katello/content_view_version/export.rb
katello-3.7.1.1 app/lib/actions/katello/content_view_version/export.rb
katello-3.7.1 app/lib/actions/katello/content_view_version/export.rb
katello-3.8.0 app/lib/actions/katello/content_view_version/export.rb
katello-3.8.0.rc3 app/lib/actions/katello/content_view_version/export.rb
katello-3.8.0.rc2 app/lib/actions/katello/content_view_version/export.rb
katello-3.7.0 app/lib/actions/katello/content_view_version/export.rb
katello-3.8.0.rc1 app/lib/actions/katello/content_view_version/export.rb
katello-3.7.0.rc2 app/lib/actions/katello/content_view_version/export.rb
katello-3.7.0.rc1 app/lib/actions/katello/content_view_version/export.rb
katello-3.5.2 app/lib/actions/katello/content_view_version/export.rb
katello-3.6.0 app/lib/actions/katello/content_view_version/export.rb
katello-3.6.0.1.rc2 app/lib/actions/katello/content_view_version/export.rb
katello-3.6.0.rc2 app/lib/actions/katello/content_view_version/export.rb
katello-3.6.0.rc1 app/lib/actions/katello/content_view_version/export.rb
katello-3.5.1.1 app/lib/actions/katello/content_view_version/export.rb