diff --git a/app/lib/actions/katello/product/content_create.rb b/app/lib/actions/katello/product/content_create.rb index eef027f6f55..758b023b4b1 100644 --- a/app/lib/actions/katello/product/content_create.rb +++ b/app/lib/actions/katello/product/content_create.rb @@ -14,7 +14,7 @@ def plan(root) arches: root.format_arches, label: root.custom_content_label, os_versions: root.os_versions&.join(','), - content_url: root.custom_content_path) + content_url: root.format_custom_content_path) content_id = content_create.output[:response][:id] plan_action(Candlepin::Product::ContentAdd, owner: root.product.organization.label, product_id: root.product.cp_id, @@ -32,7 +32,7 @@ def plan(root) type: root.content_type, arches: root.format_arches, label: root.custom_content_label, - content_url: root.custom_content_path, + content_url: root.format_custom_content_path, gpg_key_url: root.library_instance.yum_gpg_key_url) end diff --git a/app/lib/actions/katello/repository/update.rb b/app/lib/actions/katello/repository/update.rb index f21fedcf7ab..793508339bb 100644 --- a/app/lib/actions/katello/repository/update.rb +++ b/app/lib/actions/katello/repository/update.rb @@ -24,7 +24,7 @@ def plan(root, repo_params) :owner => repository.organization.label, :content_id => root.content_id, :name => root.name, - :content_url => root.custom_content_path, + :content_url => root.format_custom_content_path, :gpg_key_url => repository.yum_gpg_key_url, :label => content.label, :type => root.content_type, diff --git a/app/models/katello/root_repository.rb b/app/models/katello/root_repository.rb index 67c63b21c64..f232aa02c1f 100644 --- a/app/models/katello/root_repository.rb +++ b/app/models/katello/root_repository.rb @@ -434,6 +434,24 @@ def format_arches end end + def format_custom_content_path + path = custom_content_path + if content_type == ::Katello::Repository::DEB_TYPE + first = true + + unless deb_components.blank? + path += "/?comp=#{deb_components.gsub(" ", ",")}" + first = false + end + + unless deb_releases.blank? + path += first ? "/?" : "&" + path += "rel=#{deb_releases.gsub(" ", ",")}" + end + end + path + end + apipie :class, desc: 'A class representing Repository object' do name 'Repository' refs 'Repository'