Sha256: c93cba8017eb3eb113c080738a73f0b997d6b6bb536e253a9a965d08e59ec234

Contents?: true

Size: 1.12 KB

Versions: 10

Compression:

Stored size: 1.12 KB

Contents

module Katello
  module Pulp3
    class Repository
      class Generic < ::Katello::Pulp3::Repository
        def copy_content_for_source(source_repository, _options = {})
          copy_units_by_href(source_repository.generic_content_units&.pluck(:pulp_id))
        end

        def distribution_options(path)
          options = {
            base_path: path,
            name: "#{generate_backend_object_name}"
          }

          if ::Katello::RepositoryTypeManager.find(repo.content_type).pulp3_skip_publication
            options.merge!(repository_version: repo.version_href)
          else
            options.merge!(publication: repo.publication_href)
          end

          options
        end

        def remote_options
          generic_remote_options = JSON.parse(root.generic_remote_options)
          if generic_remote_options.any?
            common_remote_options.merge(generic_remote_options).symbolize_keys
          else
            common_remote_options
          end
        end

        def partial_repo_path
          "/pulp/content/#{repo.relative_path}/".sub('//', '/')
        end
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
katello-4.14.2 app/services/katello/pulp3/repository/generic.rb
katello-4.14.1 app/services/katello/pulp3/repository/generic.rb
katello-4.14.0 app/services/katello/pulp3/repository/generic.rb
katello-4.14.0.rc3 app/services/katello/pulp3/repository/generic.rb
katello-4.14.0.rc2 app/services/katello/pulp3/repository/generic.rb
katello-4.14.0.rc1.1 app/services/katello/pulp3/repository/generic.rb
katello-4.14.0.rc1 app/services/katello/pulp3/repository/generic.rb
katello-4.13.1 app/services/katello/pulp3/repository/generic.rb
katello-4.13.0 app/services/katello/pulp3/repository/generic.rb
katello-4.13.0.rc1 app/services/katello/pulp3/repository/generic.rb