Sha256: 21c3e31e6dee558fd64216e2b46efe29b93841aad4337bdcfd0ec6d888a9a69f

Contents?: true

Size: 1001 Bytes

Versions: 15

Compression:

Stored size: 1001 Bytes

Contents

module Actions
  module Pulp
    module Repository
      class CopyUnits < Pulp::AbstractAsyncTask
        def plan(source_repo, target_repo, units, options = {})
          if units.any?
            plan_self(source_repo_id: source_repo.id,
                      target_repo_id: target_repo.id,
                      class_name: units.first.class.name,
                      unit_ids: units.pluck(:id),
                      resolve_dependencies: options[:resolve_dependencies])
          end
        end

        def invoke_external_task
          source_repo = ::Katello::Repository.find(input[:source_repo_id])
          target_repo = ::Katello::Repository.find(input[:target_repo_id])

          units = input[:class_name].constantize.where(:id => input[:unit_ids])

          override_config = ::Katello::Repository.build_override_config(input)

          source_repo.backend_service(SmartProxy.pulp_master).copy_units(target_repo, units, override_config)
        end
      end
    end
  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
katello-3.13.4 app/lib/actions/pulp/repository/copy_units.rb
katello-3.13.3 app/lib/actions/pulp/repository/copy_units.rb
katello-3.13.2 app/lib/actions/pulp/repository/copy_units.rb
katello-3.14.0.rc1 app/lib/actions/pulp/repository/copy_units.rb
katello-3.13.1 app/lib/actions/pulp/repository/copy_units.rb
katello-3.13.0 app/lib/actions/pulp/repository/copy_units.rb
katello-3.13.0.rc2.1 app/lib/actions/pulp/repository/copy_units.rb
katello-3.13.0.rc2 app/lib/actions/pulp/repository/copy_units.rb
katello-3.12.3 app/lib/actions/pulp/repository/copy_units.rb
katello-3.12.2 app/lib/actions/pulp/repository/copy_units.rb
katello-3.13.0.rc1 app/lib/actions/pulp/repository/copy_units.rb
katello-3.12.1 app/lib/actions/pulp/repository/copy_units.rb
katello-3.12.0 app/lib/actions/pulp/repository/copy_units.rb
katello-3.12.0.rc2 app/lib/actions/pulp/repository/copy_units.rb
katello-3.12.0.rc1 app/lib/actions/pulp/repository/copy_units.rb