katello 4.5.0.rc2 → 4.6.0.rc2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of katello might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/app/controllers/katello/api/rhsm/candlepin_dynflow_proxy_controller.rb +10 -0
- data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +3 -0
- data/app/controllers/katello/api/v2/activation_keys_controller.rb +7 -0
- data/app/controllers/katello/api/v2/alternate_content_sources_controller.rb +52 -22
- data/app/controllers/katello/api/v2/content_exports_controller.rb +33 -3
- data/app/controllers/katello/api/v2/content_uploads_controller.rb +2 -0
- data/app/controllers/katello/api/v2/content_view_filter_rules_controller.rb +1 -1
- data/app/controllers/katello/api/v2/content_view_filters_controller.rb +1 -1
- data/app/controllers/katello/api/v2/content_views_controller.rb +1 -1
- data/app/controllers/katello/api/v2/debs_controller.rb +42 -10
- data/app/controllers/katello/api/v2/host_collections_controller.rb +5 -1
- data/app/controllers/katello/api/v2/host_errata_controller.rb +1 -0
- data/app/controllers/katello/api/v2/host_module_streams_controller.rb +9 -1
- data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +8 -1
- data/app/controllers/katello/api/v2/organizations_controller.rb +3 -1
- data/app/controllers/katello/api/v2/simple_content_access_controller.rb +8 -0
- data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +34 -11
- data/app/controllers/katello/concerns/organizations_controller_extensions.rb +7 -16
- data/app/lib/actions/katello/alternate_content_source/alternate_content_source_common.rb +16 -0
- data/app/lib/actions/katello/alternate_content_source/create.rb +11 -5
- data/app/lib/actions/katello/alternate_content_source/destroy.rb +3 -4
- data/app/lib/actions/katello/alternate_content_source/refresh.rb +3 -5
- data/app/lib/actions/katello/alternate_content_source/update.rb +57 -13
- data/app/lib/actions/katello/applicability/hosts/bulk_generate.rb +2 -2
- data/app/lib/actions/katello/content_view/promote_to_environment.rb +4 -2
- data/app/lib/actions/katello/content_view/publish.rb +5 -2
- data/app/lib/actions/katello/organization/environment_contents_refresh.rb +20 -0
- data/app/lib/actions/katello/organization/manifest_refresh.rb +10 -4
- data/app/lib/actions/katello/organization/simple_content_access/toggle.rb +1 -9
- data/app/lib/actions/katello/repository/create.rb +9 -0
- data/app/lib/actions/katello/repository/destroy.rb +21 -0
- data/app/lib/actions/katello/repository/errata_mail.rb +3 -3
- data/app/lib/actions/katello/repository/refresh_repository.rb +3 -0
- data/app/lib/actions/katello/repository/update.rb +33 -0
- data/app/lib/actions/katello/repository/update_redhat_repository.rb +1 -1
- data/app/lib/actions/pulp3/alternate_content_source/create.rb +5 -4
- data/app/lib/actions/pulp3/alternate_content_source/create_remote.rb +5 -4
- data/app/lib/actions/pulp3/alternate_content_source/delete.rb +4 -4
- data/app/lib/actions/pulp3/alternate_content_source/delete_remote.rb +4 -4
- data/app/lib/actions/pulp3/alternate_content_source/refresh.rb +4 -4
- data/app/lib/actions/pulp3/alternate_content_source/update.rb +4 -4
- data/app/lib/actions/pulp3/alternate_content_source/update_remote.rb +5 -5
- data/app/lib/actions/pulp3/capsule_content/reclaim_space.rb +1 -0
- data/app/lib/actions/pulp3/content_view_version/create_export_history.rb +3 -1
- data/app/lib/actions/pulp3/content_view_version/create_exporter.rb +9 -2
- data/app/lib/actions/pulp3/content_view_version/create_syncable_export_history.rb +45 -0
- data/app/lib/actions/pulp3/content_view_version/destroy_exporter.rb +6 -1
- data/app/lib/actions/pulp3/content_view_version/export.rb +8 -3
- data/app/lib/actions/pulp3/orchestration/alternate_content_source/create.rb +3 -3
- data/app/lib/actions/pulp3/orchestration/alternate_content_source/delete.rb +6 -7
- data/app/lib/actions/pulp3/orchestration/alternate_content_source/refresh.rb +2 -2
- data/app/lib/actions/pulp3/orchestration/alternate_content_source/refresh_remote.rb +18 -0
- data/app/lib/actions/pulp3/orchestration/alternate_content_source/update.rb +3 -3
- data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +28 -13
- data/app/lib/actions/pulp3/orchestration/content_view_version/export_library.rb +6 -4
- data/app/lib/actions/pulp3/orchestration/content_view_version/export_repository.rb +6 -3
- data/app/lib/actions/pulp3/orchestration/content_view_version/syncable_export.rb +82 -0
- data/app/lib/actions/pulp3/orchestration/repository/generate_metadata.rb +1 -1
- data/app/lib/katello/concerns/base_template_scope_extensions.rb +25 -12
- data/app/lib/katello/errors.rb +1 -1
- data/app/lib/katello/resources/candlepin/owner.rb +9 -2
- data/app/lib/katello/validators/alternate_content_source_products_validator.rb +17 -0
- data/app/models/katello/alternate_content_source.rb +39 -8
- data/app/models/katello/alternate_content_source_product.rb +13 -0
- data/app/models/katello/authorization/repository.rb +4 -2
- data/app/models/katello/concerns/host_managed_extensions.rb +12 -2
- data/app/models/katello/concerns/pulp_database_unit.rb +2 -2
- data/app/models/katello/concerns/smart_proxy_extensions.rb +5 -6
- data/app/models/katello/content_view.rb +50 -32
- data/app/models/katello/content_view_deb_filter.rb +51 -0
- data/app/models/katello/content_view_deb_filter_rule.rb +24 -0
- data/app/models/katello/content_view_filter.rb +10 -3
- data/app/models/katello/glue/candlepin/owner.rb +0 -1
- data/app/models/katello/installed_package.rb +1 -0
- data/app/models/katello/product.rb +3 -0
- data/app/models/katello/repository.rb +5 -3
- data/app/models/katello/rpm.rb +1 -0
- data/app/models/katello/smart_proxy_alternate_content_source.rb +6 -0
- data/app/services/cert/certs.rb +8 -16
- data/app/services/katello/organization_creator.rb +18 -7
- data/app/services/katello/pulp/server.rb +2 -2
- data/app/services/katello/pulp3/alternate_content_source.rb +22 -4
- data/app/services/katello/pulp3/api/apt.rb +12 -0
- data/app/services/katello/pulp3/api/core.rb +8 -0
- data/app/services/katello/pulp3/api/generic.rb +0 -4
- data/app/services/katello/pulp3/content_view_version/export.rb +61 -17
- data/app/services/katello/pulp3/content_view_version/import.rb +12 -5
- data/app/services/katello/pulp3/content_view_version/importable_repositories.rb +20 -5
- data/app/services/katello/pulp3/content_view_version/metadata_generator.rb +3 -1
- data/app/services/katello/pulp3/content_view_version/syncable_format_export.rb +34 -0
- data/app/services/katello/pulp3/deb.rb +3 -1
- data/app/services/katello/pulp3/pulp_content_unit.rb +2 -0
- data/app/services/katello/pulp3/repository/apt.rb +186 -2
- data/app/services/katello/pulp3/repository.rb +5 -4
- data/app/services/katello/pulp3/service_common.rb +1 -1
- data/app/services/katello/pulp3/smart_proxy_mirror_repository.rb +1 -1
- data/app/views/foreman/job_templates/install_errata_by_search_query.erb +4 -3
- data/app/views/foreman/smart_proxies/show.html.erb +3 -3
- data/app/views/katello/api/v2/alternate_content_sources/base.json.rabl +18 -3
- data/app/views/katello/api/v2/alternate_content_sources/show.json.rabl +20 -0
- data/app/views/katello/api/v2/ansible_collections/compare.json.rabl +10 -0
- data/app/views/katello/api/v2/capsule_content/sync_status.json.rabl +1 -1
- data/app/views/katello/api/v2/content_view_filters/base.json.rabl +5 -0
- data/app/views/katello/api/v2/module_streams/compare.json.rabl +10 -0
- data/app/views/katello/api/v2/organizations/show.json.rabl +1 -1
- data/app/views/katello/api/v2/repository_sets/show.json.rabl +4 -0
- data/app/views/katello/layouts/foreman_with_bastion.html.erb +1 -1
- data/app/views/katello/layouts/react.html.erb +1 -1
- data/app/views/overrides/organizations/_edit_override.html.erb +5 -8
- data/app/views/overrides/organizations/_index_row_override.html.erb +1 -1
- data/app/views/overrides/organizations/_step_1_override.html.erb +5 -0
- data/ca/redhat-uep.pem +18 -23
- data/config/katello.yaml.example +0 -2
- data/config/routes/api/v2.rb +2 -0
- data/config/routes/overrides.rb +1 -0
- data/db/migrate/20201116161820_create_content_view_deb_filter_rules.rb +17 -0
- data/db/migrate/20211220185935_clean_duplicate_content_units.rb +11 -9
- data/db/migrate/20220524132259_remove_last_refreshed_from_katello_alternate_content_sources.rb +5 -0
- data/db/migrate/20220601163911_add_vendor_to_katello_installed_packages.rb +5 -0
- data/db/migrate/20220610165621_add_repositories_and_products_to_acs.rb +23 -0
- data/engines/bastion/app/views/bastion/layouts/application.html.erb +1 -1
- data/engines/bastion/app/views/bastion/layouts/application_ie.html.erb +1 -1
- data/engines/bastion/app/views/bastion/layouts/assets.html.erb +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/activation-keys.routes.js +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-details.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-packages.controller.js +11 -3
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-actions.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-applicable.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/environment-content.controller.js +2 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/environment.controller.js +2 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-content-views.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.controller.js +1 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/views/environments.html +3 -3
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +4 -5
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +0 -3
- data/engines/bastion_katello/lib/bastion_katello/engine.rb +0 -1
- data/lib/katello/engine.rb +1 -2
- data/lib/katello/permission_creator.rb +2 -2
- data/lib/katello/permissions/host_permissions.rb +1 -0
- data/lib/katello/plugin.rb +6 -12
- data/lib/katello/tasks/refresh_alternate_content_sources.rake +9 -4
- data/lib/katello/tasks/refresh_repos.rake +8 -0
- data/lib/katello/version.rb +1 -1
- data/locale/action_names.rb +49 -46
- data/locale/bn/katello.po +361 -53
- data/locale/cs/katello.po +361 -53
- data/locale/de/katello.po +366 -58
- data/locale/en/katello.po +361 -53
- data/locale/es/katello.po +364 -56
- data/locale/fr/katello.po +374 -66
- data/locale/gu/katello.po +361 -53
- data/locale/hi/katello.po +361 -53
- data/locale/it/katello.po +361 -53
- data/locale/ja/katello.po +374 -66
- data/locale/katello.pot +1626 -1079
- data/locale/kn/katello.po +361 -53
- data/locale/ko/katello.po +361 -53
- data/locale/mr/katello.po +361 -53
- data/locale/or/katello.po +361 -53
- data/locale/pa/katello.po +361 -53
- data/locale/pt/katello.po +361 -53
- data/locale/pt_BR/katello.po +364 -56
- data/locale/ru/katello.po +361 -53
- data/locale/ta/katello.po +361 -53
- data/locale/te/katello.po +361 -53
- data/locale/zh_CN/katello.po +374 -66
- data/locale/zh_TW/katello.po +361 -53
- data/webpack/components/EditableTextInput/EditableTextInput.js +3 -16
- data/webpack/components/EditableTextInput/PencilEditButton.js +33 -0
- data/webpack/components/Errata/index.js +18 -3
- data/webpack/components/Loading.js +1 -1
- data/webpack/components/RoutedTabs/index.js +1 -17
- data/webpack/components/Search/Search.js +0 -1
- data/webpack/components/Search/__tests__/search.test.js +1 -2
- data/webpack/components/SelectAllCheckbox/index.js +7 -4
- data/webpack/components/SelectableDropdown/SelectableDropdown.js +1 -0
- data/webpack/components/Table/EmptyStateMessage.js +77 -2
- data/webpack/components/Table/MainTable.js +46 -4
- data/webpack/components/Table/TableHooks.js +8 -4
- data/webpack/components/Table/TableWrapper.js +14 -8
- data/webpack/components/TypeAhead/TypeAhead.js +26 -11
- data/webpack/components/TypeAhead/pf3Search/TypeAheadItems.js +1 -1
- data/webpack/components/TypeAhead/pf4Search/TypeAheadInput.js +1 -0
- data/webpack/components/extensions/HostDetails/ActionsBar/index.js +8 -1
- data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ChangeHostCVModal.js +2 -1
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsModal.js +9 -4
- data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeActions.js +37 -0
- data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeCard.js +175 -0
- data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeCard.scss +6 -0
- data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeConstants.js +6 -0
- data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeEditModal.js +301 -0
- data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeSelectors.js +25 -0
- data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/__tests__/SystemPurposeCard.test.js +109 -0
- data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/__tests__/SystemPurposeEditModal.test.js +161 -0
- data/webpack/components/extensions/HostDetails/Cards/__tests__/errataOverviewCard.test.js +12 -12
- data/webpack/components/extensions/HostDetails/DetailsTabCards/HwPropertiesCard.js +103 -0
- data/webpack/components/extensions/HostDetails/DetailsTabCards/InstalledProductsCard.js +1 -0
- data/webpack/components/extensions/HostDetails/DetailsTabCards/RegistrationCard.js +1 -0
- data/webpack/components/extensions/HostDetails/DetailsTabCards/SystemPropertiesCardExtensions.js +26 -4
- data/webpack/components/extensions/HostDetails/HostDetailsConstants.js +3 -1
- data/webpack/components/extensions/HostDetails/HostDetailsReducer.js +14 -0
- data/webpack/components/extensions/HostDetails/HostDetailsSelectors.js +8 -2
- data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/ErrataTab.js +9 -1
- data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsTab.js +23 -8
- data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.js +11 -9
- data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsTab.js +58 -8
- data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesTab.js +2 -0
- data/webpack/components/extensions/HostDetails/Tabs/__tests__/errataTab.test.js +30 -3
- data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySets.fixtures.json +3 -0
- data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySetsTab.test.js +48 -20
- data/webpack/components/extensions/HostDetails/Tabs/__tests__/tracesTab.test.js +1 -10
- data/webpack/components/extensions/HostDetails/hostDetailsHelpers.js +1 -1
- data/webpack/components/extensions/RegistrationCommands/index.js +49 -17
- data/webpack/containers/Application/config.js +5 -10
- data/webpack/global_index.js +19 -7
- data/webpack/global_test_setup.js +14 -2
- data/webpack/ouia_id_check.js +95 -0
- data/webpack/redux/actions/RedHatRepositories/helpers.js +2 -0
- data/webpack/redux/reducers/index.js +2 -4
- data/webpack/scenes/AlternateContentSources/ACSActions.js +36 -3
- data/webpack/scenes/AlternateContentSources/ACSConstants.js +3 -0
- data/webpack/scenes/AlternateContentSources/ACSSelectors.js +15 -6
- data/webpack/scenes/AlternateContentSources/Create/ACSCreateWizard.js +73 -42
- data/webpack/scenes/AlternateContentSources/Create/Steps/ACSCreateFinish.js +26 -10
- data/webpack/scenes/AlternateContentSources/Create/Steps/ACSProducts.js +44 -0
- data/webpack/scenes/AlternateContentSources/Create/Steps/ACSReview.js +59 -45
- data/webpack/scenes/AlternateContentSources/Create/Steps/ACSSmartProxies.js +4 -3
- data/webpack/scenes/AlternateContentSources/Create/Steps/AcsUrlPaths.js +0 -1
- data/webpack/scenes/AlternateContentSources/Create/Steps/SelectSource.js +35 -19
- data/webpack/scenes/AlternateContentSources/Create/__tests__/acsCreate.test.js +120 -13
- data/webpack/scenes/AlternateContentSources/Create/__tests__/products.fixtures.json +92 -0
- data/webpack/scenes/AlternateContentSources/Details/ACSExpandableDetails.js +459 -0
- data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditCredentials.js +354 -0
- data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditDetails.js +104 -0
- data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditProducts.js +120 -0
- data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditSmartProxies.js +118 -0
- data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditURLPaths.js +118 -0
- data/webpack/scenes/AlternateContentSources/Details/__tests__/ACSEdits.test.js +242 -0
- data/webpack/scenes/AlternateContentSources/Details/__tests__/ACSExpandableDetails.test.js +106 -0
- data/webpack/scenes/AlternateContentSources/Details/__tests__/acsDetails.fixtures.json +49 -0
- data/webpack/scenes/AlternateContentSources/Details/__tests__/acsProducts.fixtures.json +95 -0
- data/webpack/scenes/AlternateContentSources/Details/__tests__/simplifiedAcsDetails.fixtures.json +39 -0
- data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.js +215 -87
- data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.scss +3 -0
- data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsTable.test.js +1 -2
- data/webpack/scenes/Content/__tests__/contentTable.test.js +1 -2
- data/webpack/scenes/ContentViews/ContentViewsConstants.js +15 -4
- data/webpack/scenes/ContentViews/Delete/__tests__/contentViewDelete.test.js +1 -2
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +2 -0
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js +1 -2
- data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +113 -0
- data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +89 -0
- data/webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js +32 -9
- data/webpack/scenes/ContentViews/Details/Filters/Add/__tests__/cvFilterAdd.test.js +13 -3
- data/webpack/scenes/ContentViews/Details/Filters/CVContainerImageFilterContent.js +39 -27
- data/webpack/scenes/ContentViews/Details/Filters/CVDebFilterContent.js +236 -0
- data/webpack/scenes/ContentViews/Details/Filters/CVErrataIDFilterContent.js +1 -0
- data/webpack/scenes/ContentViews/Details/Filters/CVFilterDetailType.js +10 -0
- data/webpack/scenes/ContentViews/Details/Filters/CVModuleStreamFilterContent.js +3 -0
- data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +3 -1
- data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +17 -4
- data/webpack/scenes/ContentViews/Details/Filters/ContentType.js +1 -0
- data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +34 -22
- data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVDebMatchContentModal.js +97 -0
- data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/__tests__/CVRpmMatchContentModal.test.js +1 -2
- data/webpack/scenes/ContentViews/Details/Filters/Rules/DebPackage/AddEditDebPackageRuleModal.js +128 -0
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVContainerImageFilterContent.test.js +56 -3
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVRpmFilterContent.test.js +62 -8
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/ContentViewPackageGroupFilter.test.js +1 -5
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilterDetails.test.js +1 -2
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilters.test.js +32 -2
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvErrataIDFilter.test.js +1 -2
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvModuleStreamFilter.test.js +1 -2
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/emptyCVContainerImageFilterContent.fixtures.json +13 -0
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/emptyCVPackageFilterRules.fixtures.json +13 -0
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/emptyContentViewFilters.fixtures.json +13 -0
- data/webpack/scenes/ContentViews/Details/Histories/__tests__/contentViewHistory.test.js +1 -2
- data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +5 -1
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +1 -2
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/BulkDeleteModal.test.js +3 -0
- data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompare.js +143 -0
- data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompare.scss +51 -0
- data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareConfig.js +314 -0
- data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareHeader.js +186 -0
- data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareTable.js +74 -0
- data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/AnsibleCollectionsCompareAllContentData.fixtures.json +63 -0
- data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/CVVersionCompare.test.js +657 -0
- data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/CVVersionEmptyContentCompareData.fixtures.json +14 -0
- data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ContainerTagsCompareAllContentData.fixtures.json +95 -0
- data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/DebPackagesCompareAllContentData.fixtures.json +87 -0
- data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ErrataCompareAllContentData.fixtures.json +319 -0
- data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ErrataCompareThreeContentTypesData.fixtures.json +131 -0
- data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/FilesCompareAllContentData.fixtures.json +51 -0
- data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/FilesCompareThreeContentTypesData.fixtures.json +48 -0
- data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ModuleStreamsCompareAllContentData.fixtures.json +239 -0
- data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/PackageGroupsCompareAllContentData.fixtures.json +51 -0
- data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/PythonPackagesCompareAllContentData.fixtures.json +315 -0
- data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/RPMPackagesCompareAllContentData.fixtures.json +470 -0
- data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/RPMPackagesCompareThreeContentTypesData.fixtures.json +475 -0
- data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewDetails.fixtures.json +160 -0
- data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionOneDetials.fixtures.json +161 -0
- data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionThreeDetails.fixtures.json +154 -0
- data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionTwoDetails.fixtures.json +211 -0
- data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersions.fixtures.json +1013 -0
- data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/emptyStateCVVersionOneDetails.fixtures.json +145 -0
- data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/emptyStateCVVersionTwoDetails.fixtures.json +145 -0
- data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +102 -36
- data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/cvVersionRemove.test.js +1 -2
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailConfig.js +4 -2
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.test.js +1 -2
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetailsEmpty.test.js +1 -2
- data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +113 -40
- data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +96 -81
- data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +1 -2
- data/webpack/scenes/ContentViews/__tests__/mockDetails.fixtures.json +7 -2
- data/webpack/scenes/SmartProxy/SmartProxyContentActions.js +1 -1
- data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +0 -30
- data/webpack/test-utils/nockWrapper.js +7 -0
- metadata +83 -181
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.controller.js +0 -34
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.routes.js +0 -751
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-deletion.controller.js +0 -42
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-activation-keys.controller.js +0 -81
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-confirm.controller.js +0 -65
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-content-hosts.controller.js +0 -82
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-environments.controller.js +0 -76
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion.controller.js +0 -160
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/content-view-deletion.html +0 -58
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html +0 -94
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html +0 -76
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html +0 -88
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html +0 -73
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-component.factory.js +0 -32
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-composite-available-content-views.controller.js +0 -75
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-composite-content-views-list.controller.js +0 -68
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html +0 -81
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html +0 -81
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite.html +0 -24
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-deb-repositories.controller.js +0 -50
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-docker-repositories.controller.js +0 -42
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-file-repositories.controller.js +0 -50
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-ostree-repositories.controller.js +0 -42
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-repositories.controller.js +0 -45
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-deb-repositories-list.controller.js +0 -48
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-details.controller.js +0 -100
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-docker-repositories-list.controller.js +0 -49
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-file-repositories-list.controller.js +0 -48
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-ostree-repositories-list.controller.js +0 -49
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-promotion.controller.js +0 -129
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-publish.controller.js +0 -46
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-repositories-list.controller.js +0 -42
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-repositories.service.js +0 -91
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js +0 -240
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-errata-filter.controller.js +0 -115
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-module-stream-filter.controller.js +0 -68
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-package-group-filter.controller.js +0 -66
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/date-type-errata-filter.controller.js +0 -77
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/docker-tag-filter.controller.js +0 -137
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/edit-filter.controller.js +0 -36
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/errata-filter-list.controller.js +0 -78
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/errata-filter.controller.js +0 -74
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-content-type.filter.js +0 -21
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-details.controller.js +0 -34
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-helper.service.js +0 -30
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-repositories.controller.js +0 -86
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-rule-matching-package-modal.controller.js +0 -37
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-type.filter.js +0 -21
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter.factory.js +0 -66
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filters.controller.js +0 -85
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/module-stream-list-filter.controller.js +0 -73
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/new-filter.controller.js +0 -100
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/package-filter.controller.js +0 -179
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/package-group-list-filter.controller.js +0 -75
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/rule.factory.js +0 -21
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata-filter.html +0 -9
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata.html +0 -75
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-filter.html +0 -28
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-tag-filter-details.html +0 -65
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/edit-filter.html +0 -19
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter-details.html +0 -63
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter.html +0 -50
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-details.html +0 -9
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html +0 -121
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-rule-matching-package-modal.html +0 -43
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filters.html +0 -85
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html +0 -58
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter.html +0 -43
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/new-filter.html +0 -62
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html +0 -182
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter.html +0 -28
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter-details.html +0 -42
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter.html +0 -43
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/partials/filter-repositories-count.html +0 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.controller.js +0 -47
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.factory.js +0 -22
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/views/content-view-history.html +0 -36
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-copy.html +0 -20
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html +0 -87
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details-tasks.html +0 -4
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html +0 -144
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html +0 -114
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html +0 -87
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html +0 -63
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html +0 -87
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-promotion.html +0 -59
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-publish.html +0 -58
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html +0 -116
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html +0 -126
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/content-view-new.controller.js +0 -78
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html +0 -127
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version-content.controller.js +0 -138
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version.controller.js +0 -59
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-apt.html +0 -25
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-components.html +0 -19
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-deb.html +0 -19
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-details.html +0 -15
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-docker.html +0 -23
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-errata.html +0 -48
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-file.html +0 -21
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-module-streams.html +0 -8
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-package-groups.html +0 -21
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-packages.html +0 -27
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-yum.html +0 -42
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html +0 -83
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/views/content-views.html +0 -74
- data/lib/katello/tasks/reset.rake.bak +0 -67
- data/locale/bn/LC_MESSAGES/katello.mo +0 -0
- data/locale/cs/LC_MESSAGES/katello.mo +0 -0
- data/locale/de/LC_MESSAGES/katello.mo +0 -0
- data/locale/en/LC_MESSAGES/katello.mo +0 -0
- data/locale/es/LC_MESSAGES/katello.mo +0 -0
- data/locale/fr/LC_MESSAGES/katello.mo +0 -0
- data/locale/gu/LC_MESSAGES/katello.mo +0 -0
- data/locale/hi/LC_MESSAGES/katello.mo +0 -0
- data/locale/it/LC_MESSAGES/katello.mo +0 -0
- data/locale/ja/LC_MESSAGES/katello.mo +0 -0
- data/locale/kn/LC_MESSAGES/katello.mo +0 -0
- data/locale/ko/LC_MESSAGES/katello.mo +0 -0
- data/locale/mr/LC_MESSAGES/katello.mo +0 -0
- data/locale/or/LC_MESSAGES/katello.mo +0 -0
- data/locale/pa/LC_MESSAGES/katello.mo +0 -0
- data/locale/pt/LC_MESSAGES/katello.mo +0 -0
- data/locale/pt_BR/LC_MESSAGES/katello.mo +0 -0
- data/locale/ru/LC_MESSAGES/katello.mo +0 -0
- data/locale/ta/LC_MESSAGES/katello.mo +0 -0
- data/locale/te/LC_MESSAGES/katello.mo +0 -0
- data/locale/zh_CN/LC_MESSAGES/katello.mo +0 -0
- data/locale/zh_TW/LC_MESSAGES/katello.mo +0 -0
- data/webpack/scenes/AnsibleCollections/AnsibleCollectionsActions.js +0 -30
- data/webpack/scenes/AnsibleCollections/AnsibleCollectionsConstants.js +0 -3
- data/webpack/scenes/AnsibleCollections/AnsibleCollectionsPage.js +0 -80
- data/webpack/scenes/AnsibleCollections/AnsibleCollectionsReducer.js +0 -39
- data/webpack/scenes/AnsibleCollections/AnsibleCollectionsTableSchema.js +0 -60
- data/webpack/scenes/AnsibleCollections/AnsibleCollectionsTables.scss +0 -0
- data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetails.js +0 -94
- data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsActions.js +0 -23
- data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsConstants.js +0 -3
- data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsReducer.js +0 -30
- data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionsSchema.js +0 -35
- data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailInfo.test.js +0 -16
- data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetails.fixtures.js +0 -25
- data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetails.test.js +0 -27
- data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailsActions.test.js +0 -41
- data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailsReducer.test.js +0 -33
- data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailInfo.test.js.snap +0 -83
- data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetails.test.js.snap +0 -190
- data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailsActions.test.js.snap +0 -58
- data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailsReducer.test.js.snap +0 -50
- data/webpack/scenes/AnsibleCollections/Details/index.js +0 -17
- data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionPage.test.js +0 -23
- data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollections.fixtures.js +0 -52
- data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsActions.test.js +0 -48
- data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsReducer.test.js +0 -46
- data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsTable.test.js +0 -25
- data/webpack/scenes/AnsibleCollections/__tests__/__snapshots__/AnsibleCollectionPage.test.js.snap +0 -73
- data/webpack/scenes/AnsibleCollections/__tests__/__snapshots__/AnsibleCollectionsTable.test.js.snap +0 -81
- data/webpack/scenes/AnsibleCollections/index.js +0 -17
- data/webpack/scenes/Subscriptions/Manifest/__tests__/ManageManifestModal.test.js +0 -123
data/app/services/cert/certs.rb
CHANGED
@@ -12,28 +12,20 @@ module Cert
|
|
12
12
|
File.read(SETTINGS[:katello][:candlepin][:ca_cert_file])
|
13
13
|
end
|
14
14
|
|
15
|
-
def self.ssl_client_cert
|
16
|
-
@ssl_client_cert ||= OpenSSL::X509::Certificate.new(File.read(ssl_client_cert_filename
|
15
|
+
def self.ssl_client_cert
|
16
|
+
@ssl_client_cert ||= OpenSSL::X509::Certificate.new(File.read(ssl_client_cert_filename))
|
17
17
|
end
|
18
18
|
|
19
|
-
def self.ssl_client_cert_filename
|
20
|
-
|
21
|
-
Setting[:pulp_client_cert]
|
22
|
-
else
|
23
|
-
Setting[:ssl_certificate]
|
24
|
-
end
|
19
|
+
def self.ssl_client_cert_filename
|
20
|
+
Setting[:ssl_certificate]
|
25
21
|
end
|
26
22
|
|
27
|
-
def self.ssl_client_key
|
28
|
-
@ssl_client_key ||= OpenSSL::PKey::RSA.new(File.read(ssl_client_key_filename
|
23
|
+
def self.ssl_client_key
|
24
|
+
@ssl_client_key ||= OpenSSL::PKey::RSA.new(File.read(ssl_client_key_filename))
|
29
25
|
end
|
30
26
|
|
31
|
-
def self.ssl_client_key_filename
|
32
|
-
|
33
|
-
Setting[:pulp_client_key]
|
34
|
-
else
|
35
|
-
Setting[:ssl_priv_key]
|
36
|
-
end
|
27
|
+
def self.ssl_client_key_filename
|
28
|
+
Setting[:ssl_priv_key]
|
37
29
|
end
|
38
30
|
|
39
31
|
def self.verify_ueber_cert(organization)
|
@@ -27,15 +27,16 @@ module Katello
|
|
27
27
|
end
|
28
28
|
end
|
29
29
|
|
30
|
-
def initialize(organization)
|
30
|
+
def initialize(organization, sca: true)
|
31
31
|
@organization = organization
|
32
|
+
@content_access_mode = sca ? 'org_environment' : 'entitlement'
|
32
33
|
end
|
33
34
|
|
34
35
|
def seed!
|
35
36
|
ActiveRecord::Base.transaction do
|
36
37
|
@organization.setup_label_from_name
|
37
38
|
|
38
|
-
# existing validation errors are not resolvable here, so don't
|
39
|
+
# existing validation errors are not resolvable here, so don't validate
|
39
40
|
@organization.save(validate: false)
|
40
41
|
|
41
42
|
create_library_environment
|
@@ -66,9 +67,8 @@ module Katello
|
|
66
67
|
|
67
68
|
def create_backend_objects!
|
68
69
|
Katello::Ping.ping!(services: [:candlepin])
|
69
|
-
|
70
70
|
if needs_candlepin_organization?
|
71
|
-
::Katello::Resources::Candlepin::Owner.create(@organization.label, @organization.name)
|
71
|
+
::Katello::Resources::Candlepin::Owner.create(@organization.label, @organization.name, content_access_mode: @content_access_mode)
|
72
72
|
end
|
73
73
|
|
74
74
|
::Katello::ContentViewManager.create_candlepin_environment(
|
@@ -101,12 +101,23 @@ module Katello
|
|
101
101
|
end
|
102
102
|
|
103
103
|
def create_library_view
|
104
|
-
|
104
|
+
cv_wrong_label = Katello::ContentView.where(
|
105
105
|
default: true,
|
106
106
|
name: DEFAULT_CONTENT_VIEW_NAME,
|
107
|
-
label: DEFAULT_CONTENT_VIEW_LABEL,
|
108
107
|
organization: @organization
|
109
|
-
).
|
108
|
+
).where.not(label: DEFAULT_CONTENT_VIEW_LABEL)&.first
|
109
|
+
|
110
|
+
if cv_wrong_label
|
111
|
+
cv_wrong_label.update_attribute(:label, DEFAULT_CONTENT_VIEW_LABEL)
|
112
|
+
@library_view = cv_wrong_label
|
113
|
+
else
|
114
|
+
@library_view = Katello::ContentView.where(
|
115
|
+
default: true,
|
116
|
+
name: DEFAULT_CONTENT_VIEW_NAME,
|
117
|
+
label: DEFAULT_CONTENT_VIEW_LABEL,
|
118
|
+
organization: @organization
|
119
|
+
).first_or_create!
|
120
|
+
end
|
110
121
|
end
|
111
122
|
|
112
123
|
def create_library_cvv
|
@@ -17,8 +17,8 @@ module Katello
|
|
17
17
|
:debug => true
|
18
18
|
},
|
19
19
|
:cert_auth => {
|
20
|
-
:ssl_client_cert =>
|
21
|
-
:ssl_client_key =>
|
20
|
+
:ssl_client_cert => '/etc/pki/katello/certs/pulp-client.crt',
|
21
|
+
:ssl_client_key => '/etc/pki/katello/private/pulp-client.key'
|
22
22
|
}
|
23
23
|
}
|
24
24
|
|
@@ -5,10 +5,12 @@ module Katello
|
|
5
5
|
include Katello::Pulp3::ServiceCommon
|
6
6
|
attr_accessor :acs
|
7
7
|
attr_accessor :smart_proxy
|
8
|
+
attr_accessor :repository
|
8
9
|
|
9
|
-
def initialize(acs, smart_proxy)
|
10
|
+
def initialize(acs, smart_proxy, repository = nil)
|
10
11
|
@acs = acs
|
11
12
|
@smart_proxy = smart_proxy
|
13
|
+
@repository = repository
|
12
14
|
end
|
13
15
|
|
14
16
|
def api
|
@@ -20,10 +22,23 @@ module Katello
|
|
20
22
|
end
|
21
23
|
|
22
24
|
def smart_proxy_acs
|
23
|
-
|
25
|
+
if acs.alternate_content_source_type == 'custom'
|
26
|
+
::Katello::SmartProxyAlternateContentSource.find_by(alternate_content_source_id: acs.id, smart_proxy_id: smart_proxy.id)
|
27
|
+
else
|
28
|
+
::Katello::SmartProxyAlternateContentSource.find_by(alternate_content_source_id: acs.id, smart_proxy_id: smart_proxy.id, repository_id: repository.id)
|
29
|
+
end
|
24
30
|
end
|
25
31
|
|
26
32
|
def remote_options
|
33
|
+
if repository.present?
|
34
|
+
options = repository.backend_service(smart_proxy).remote_options
|
35
|
+
options[:policy] = 'on_demand'
|
36
|
+
options[:proxy_url] = acs.http_proxy&.url
|
37
|
+
options[:proxy_username] = acs.http_proxy&.username
|
38
|
+
options[:proxy_password] = acs.http_proxy&.password
|
39
|
+
return options
|
40
|
+
end
|
41
|
+
|
27
42
|
remote_options = {
|
28
43
|
tls_validation: acs.verify_ssl,
|
29
44
|
name: generate_backend_object_name,
|
@@ -66,8 +81,11 @@ module Katello
|
|
66
81
|
api.remotes_api.partial_update(smart_proxy_acs.remote_href, remote_options)
|
67
82
|
end
|
68
83
|
|
69
|
-
|
70
|
-
|
84
|
+
# The old repo URL is needed to determine which remote API to use.
|
85
|
+
def delete_remote(options = {})
|
86
|
+
options[:href] ||= smart_proxy_acs.remote_href
|
87
|
+
options[:old_url] ||= remote_options[:url]
|
88
|
+
ignore_404_exception { options[:old_url]&.start_with?('uln') ? api.remotes_uln_api.delete(options[:href]) : api.remotes_api.delete(options[:href]) } if options[:href]
|
71
89
|
end
|
72
90
|
|
73
91
|
def create
|
@@ -11,6 +11,18 @@ module Katello
|
|
11
11
|
def publications_verbatim_api
|
12
12
|
PulpDebClient::PublicationsVerbatimApi.new(api_client)
|
13
13
|
end
|
14
|
+
|
15
|
+
def self.copy_class
|
16
|
+
PulpDebClient::Copy
|
17
|
+
end
|
18
|
+
|
19
|
+
def self.add_remove_content_class
|
20
|
+
PulpDebClient::RepositoryAddRemoveContent
|
21
|
+
end
|
22
|
+
|
23
|
+
def copy_api
|
24
|
+
PulpDebClient::CopyApi.new(api_client)
|
25
|
+
end
|
14
26
|
end
|
15
27
|
end
|
16
28
|
end
|
@@ -89,6 +89,10 @@ module Katello
|
|
89
89
|
PulpcoreClient::RepositoriesReclaimSpaceApi.new(core_api_client)
|
90
90
|
end
|
91
91
|
|
92
|
+
def yum_exporter_api
|
93
|
+
PulpcoreClient::ExportersFilesystemApi.new(core_api_client)
|
94
|
+
end
|
95
|
+
|
92
96
|
def exporter_api
|
93
97
|
PulpcoreClient::ExportersPulpApi.new(core_api_client)
|
94
98
|
end
|
@@ -101,6 +105,10 @@ module Katello
|
|
101
105
|
PulpcoreClient::ImportersPulpImportCheckApi.new(core_api_client)
|
102
106
|
end
|
103
107
|
|
108
|
+
def yum_export_api
|
109
|
+
PulpcoreClient::ExportersFilesystemExportsApi.new(core_api_client)
|
110
|
+
end
|
111
|
+
|
104
112
|
def export_api
|
105
113
|
PulpcoreClient::ExportersPulpExportsApi.new(core_api_client)
|
106
114
|
end
|
@@ -3,16 +3,31 @@ module Katello
|
|
3
3
|
module ContentViewVersion
|
4
4
|
class Export
|
5
5
|
include ImportExportCommon
|
6
|
-
|
6
|
+
SYNCABLE = "syncable".freeze
|
7
|
+
IMPORTABLE = "importable".freeze
|
8
|
+
FORMATS = [SYNCABLE, IMPORTABLE].freeze
|
9
|
+
|
10
|
+
attr_reader :smart_proxy, :content_view_version, :destination_server, :from_content_view_version, :repository, :base_path
|
11
|
+
def self.create(options)
|
12
|
+
if options.delete(:format) == SYNCABLE
|
13
|
+
SyncableFormatExport.new(options)
|
14
|
+
else
|
15
|
+
self.new(options)
|
16
|
+
end
|
17
|
+
end
|
7
18
|
|
8
19
|
def initialize(smart_proxy:,
|
9
20
|
content_view_version: nil,
|
10
21
|
destination_server: nil,
|
11
|
-
from_content_view_version: nil
|
22
|
+
from_content_view_version: nil,
|
23
|
+
repository: nil,
|
24
|
+
base_path: nil)
|
12
25
|
@smart_proxy = smart_proxy
|
13
26
|
@content_view_version = content_view_version
|
14
27
|
@destination_server = destination_server
|
15
28
|
@from_content_view_version = from_content_view_version
|
29
|
+
@repository = repository
|
30
|
+
@base_path = base_path
|
16
31
|
end
|
17
32
|
|
18
33
|
def repository_hrefs
|
@@ -37,21 +52,27 @@ module Katello
|
|
37
52
|
end
|
38
53
|
|
39
54
|
def generate_exporter_path
|
40
|
-
|
41
|
-
"#{content_view_version.
|
55
|
+
return base_path if base_path
|
56
|
+
export_path = "#{content_view_version.content_view}/#{content_view_version.version}/"
|
57
|
+
export_path += "#{destination_server}/" unless destination_server.blank?
|
58
|
+
export_path += "#{date_dir}".gsub(/\s/, '_')
|
59
|
+
@base_path = "#{Setting['pulpcore_export_destination']}/#{content_view_version.organization.label}/#{export_path}"
|
42
60
|
end
|
43
61
|
|
44
62
|
def date_dir
|
45
63
|
DateTime.now.to_s.gsub(/\W/, '-')
|
46
64
|
end
|
47
65
|
|
48
|
-
def create_exporter
|
49
|
-
api.exporter_api
|
50
|
-
|
51
|
-
|
66
|
+
def create_exporter
|
67
|
+
exporter_api = api.exporter_api
|
68
|
+
options = { name: generate_id(content_view_version), path: generate_exporter_path }
|
69
|
+
options[:repositories] = repository_hrefs
|
70
|
+
|
71
|
+
exporter_api.create(options)
|
52
72
|
end
|
53
73
|
|
54
|
-
def create_export(
|
74
|
+
def create_export(exporter_data, chunk_size: nil)
|
75
|
+
exporter_href = exporter_data[:pulp_href]
|
55
76
|
options = { versions: version_hrefs }
|
56
77
|
options[:chunk_size] = "#{chunk_size}GB" if chunk_size
|
57
78
|
if from_content_view_version
|
@@ -77,14 +98,16 @@ module Katello
|
|
77
98
|
options[:start_versions] = start_versions
|
78
99
|
options[:full] = 'false'
|
79
100
|
end
|
80
|
-
|
101
|
+
export_api = api.export_api
|
102
|
+
[export_api.create(exporter_href, options)]
|
81
103
|
end
|
82
104
|
|
83
105
|
def fetch_export(exporter_href)
|
84
106
|
api.export_api.list(exporter_href).results.first
|
85
107
|
end
|
86
108
|
|
87
|
-
def destroy_exporter(
|
109
|
+
def destroy_exporter(exporter_data)
|
110
|
+
exporter_href = exporter_data[:pulp_href]
|
88
111
|
export_data = fetch_export(exporter_href)
|
89
112
|
api.exporter_api.partial_update(exporter_href, :last_export => nil)
|
90
113
|
api.export_api.delete(export_data.pulp_href) unless export_data.blank?
|
@@ -162,23 +185,44 @@ module Katello
|
|
162
185
|
generated_for: generated_for).send(select_method)
|
163
186
|
end
|
164
187
|
|
188
|
+
def format
|
189
|
+
is_a?(SyncableFormatExport) ? SYNCABLE : IMPORTABLE
|
190
|
+
end
|
191
|
+
|
165
192
|
def self.find_library_export_view(create_by_default: false,
|
166
193
|
destination_server:,
|
167
|
-
organization
|
194
|
+
organization:,
|
195
|
+
format: IMPORTABLE)
|
196
|
+
if format == IMPORTABLE
|
197
|
+
generated_for = :library_export
|
198
|
+
name = ::Katello::ContentView::EXPORT_LIBRARY
|
199
|
+
else
|
200
|
+
generated_for = :library_export_syncable
|
201
|
+
name = "#{::Katello::ContentView::EXPORT_LIBRARY}-SYNCABLE"
|
202
|
+
end
|
203
|
+
|
168
204
|
find_generated_export_view(create_by_default: create_by_default,
|
169
205
|
destination_server: destination_server,
|
170
206
|
organization: organization,
|
171
|
-
name:
|
172
|
-
generated_for:
|
207
|
+
name: name,
|
208
|
+
generated_for: generated_for)
|
173
209
|
end
|
174
210
|
|
175
211
|
def self.find_repository_export_view(create_by_default: false,
|
176
|
-
repository
|
212
|
+
repository:,
|
213
|
+
format: IMPORTABLE)
|
214
|
+
if format == IMPORTABLE
|
215
|
+
generated_for = :repository_export
|
216
|
+
name = "Export-#{repository.label}-#{repository.library_instance_or_self.id}"
|
217
|
+
else
|
218
|
+
generated_for = :repository_export_syncable
|
219
|
+
name = "Export-SYNCABLE-#{repository.label}-#{repository.library_instance_or_self.id}"
|
220
|
+
end
|
177
221
|
find_generated_export_view(create_by_default: create_by_default,
|
178
222
|
destination_server: nil,
|
179
223
|
organization: repository.organization,
|
180
|
-
name:
|
181
|
-
generated_for:
|
224
|
+
name: name,
|
225
|
+
generated_for: generated_for)
|
182
226
|
end
|
183
227
|
|
184
228
|
def self.generate_product_repo_strings(repositories:)
|
@@ -42,11 +42,14 @@ module Katello
|
|
42
42
|
# In other words if metadata had repos {label:foo, product: bar}
|
43
43
|
# this would match it to the repo with the label foo and product bar
|
44
44
|
# in the library.
|
45
|
-
|
46
45
|
queries = metadata_map.repositories.map do |repo|
|
47
|
-
if repo.redhat && repo.product.cp_id
|
46
|
+
if repo.redhat && repo.product.cp_id && repo.content&.id
|
48
47
|
library_repositories.where("#{Katello::Product.table_name}.cp_id": repo.product.cp_id,
|
49
|
-
"#{Katello::RootRepository.table_name}
|
48
|
+
"#{::Katello::RootRepository.table_name}" => {
|
49
|
+
content_id: repo.content.id,
|
50
|
+
arch: repo.arch,
|
51
|
+
major: repo.major,
|
52
|
+
minor: repo.minor })
|
50
53
|
else
|
51
54
|
library_repositories.where("#{Katello::Product.table_name}.label": repo.product.label,
|
52
55
|
"#{Katello::RootRepository.table_name}.label": repo.label)
|
@@ -84,9 +87,13 @@ module Katello
|
|
84
87
|
relation = content_view_version.importable_repositories.joins(:root, :product)
|
85
88
|
|
86
89
|
metadata_map.repositories.each do |metadata_repo|
|
87
|
-
if metadata_repo.redhat && metadata_repo.product.cp_id
|
90
|
+
if metadata_repo.redhat && metadata_repo.product.cp_id && metadata_repo.content&.id
|
88
91
|
repo = relation.where("#{::Katello::Product.table_name}" => {cp_id: metadata_repo.product.cp_id},
|
89
|
-
|
92
|
+
"#{::Katello::RootRepository.table_name}" => {
|
93
|
+
content_id: metadata_repo.content.id,
|
94
|
+
arch: metadata_repo.arch,
|
95
|
+
major: metadata_repo.major,
|
96
|
+
minor: metadata_repo.minor}).first
|
90
97
|
else
|
91
98
|
repo = relation.where("#{::Katello::Product.table_name}" => {label: metadata_repo.product.label},
|
92
99
|
"#{::Katello::RootRepository.table_name}" => {label: metadata_repo.label}).first
|
@@ -22,12 +22,21 @@ module Katello
|
|
22
22
|
product = product_for_metadata_repo(repo)
|
23
23
|
fail _("Unable to find product '%s' in organization '%s'" % [repo.product.label, @organization.name]) if product.blank?
|
24
24
|
|
25
|
-
root = product.root_repositories.find
|
25
|
+
root = product.root_repositories.find do |r|
|
26
|
+
if repo.content&.id && repo.redhat
|
27
|
+
r.content.cp_content_id == repo.content.id &&
|
28
|
+
r.arch == repo.arch &&
|
29
|
+
r.major == repo.major &&
|
30
|
+
r.minor == repo.minor
|
31
|
+
else
|
32
|
+
r.label == repo.label
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
26
36
|
if root
|
27
37
|
updatable << { repository: root, options: update_repo_params(repo) }
|
28
38
|
elsif repo.redhat
|
29
|
-
|
30
|
-
product_content = product_content_by_label(content.label)
|
39
|
+
product_content = fetch_product_content(repo.content, product)
|
31
40
|
substitutions = {
|
32
41
|
basearch: repo.arch,
|
33
42
|
releasever: repo.minor
|
@@ -49,8 +58,14 @@ module Katello
|
|
49
58
|
end
|
50
59
|
end
|
51
60
|
|
52
|
-
def
|
53
|
-
::Katello::Content.
|
61
|
+
def fetch_product_content(content_metadata, product)
|
62
|
+
query = ::Katello::Content.joins(:product_contents).where("#{Katello::ProductContent.table_name}.product_id": product.id)
|
63
|
+
table_name = Katello::Content.table_name
|
64
|
+
if content_metadata&.id
|
65
|
+
query.find_by("#{table_name}.cp_content_id": content_metadata.id)
|
66
|
+
else
|
67
|
+
query.find_by("#{table_name}.label": content_metadata.label)
|
68
|
+
end
|
54
69
|
end
|
55
70
|
|
56
71
|
def gpg_key_id(metadata_repo)
|
@@ -16,10 +16,12 @@ module Katello
|
|
16
16
|
|
17
17
|
def generate!
|
18
18
|
ret = { organization: organization.name,
|
19
|
+
base_path: Setting['pulpcore_export_destination'],
|
19
20
|
repositories: {},
|
20
21
|
content_view: content_view.slice(:name, :label, :description, :generated_for),
|
21
22
|
content_view_version: content_view_version.slice(:major, :minor, :description),
|
22
|
-
incremental: from_content_view_version.present
|
23
|
+
incremental: from_content_view_version.present?,
|
24
|
+
format: export_service.format
|
23
25
|
}
|
24
26
|
|
25
27
|
unless from_content_view_version.blank?
|
@@ -0,0 +1,34 @@
|
|
1
|
+
module Katello
|
2
|
+
module Pulp3
|
3
|
+
module ContentViewVersion
|
4
|
+
class SyncableFormatExport < Export
|
5
|
+
def create_exporter
|
6
|
+
api.yum_exporter_api.create(name: "#{generate_id(content_view_version)}-#{repository.id}",
|
7
|
+
path: generate_repository_exporter_path,
|
8
|
+
method: :hardlink)
|
9
|
+
end
|
10
|
+
|
11
|
+
def create_export(exporter_data, _options = {})
|
12
|
+
[api.yum_export_api.create(exporter_data[:pulp_href], publication: repository.publication_href)]
|
13
|
+
end
|
14
|
+
|
15
|
+
def fetch_export(exporter_href)
|
16
|
+
api.yum_export_api.list(exporter_href).results.first
|
17
|
+
end
|
18
|
+
|
19
|
+
def destroy_exporter(exporter_data)
|
20
|
+
exporter_href = exporter_data[:pulp_href]
|
21
|
+
export_data = fetch_export(exporter_href)
|
22
|
+
api.yum_export_api.delete(export_data.pulp_href)
|
23
|
+
api.yum_exporter_api.delete(exporter_href)
|
24
|
+
end
|
25
|
+
|
26
|
+
def generate_repository_exporter_path
|
27
|
+
_org, _content, content_path = repository.library_instance_or_self.relative_path.split("/", 3)
|
28
|
+
content_path = content_path.sub(%r|^/|, '')
|
29
|
+
"#{generate_exporter_path}/#{content_path}".gsub(/\s/, '_')
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
@@ -9,6 +9,7 @@ module Katello
|
|
9
9
|
end
|
10
10
|
|
11
11
|
def self.content_api_create(opts = {})
|
12
|
+
opts.delete(:relative_path) if opts.key?(:relative_path)
|
12
13
|
self.content_api.create(opts)
|
13
14
|
end
|
14
15
|
|
@@ -24,7 +25,8 @@ module Katello
|
|
24
25
|
end
|
25
26
|
|
26
27
|
def self.generate_model_row(unit)
|
27
|
-
|
28
|
+
unit = unit.try(:with_indifferent_access)
|
29
|
+
return {
|
28
30
|
pulp_id: unit[unit_identifier],
|
29
31
|
checksum: unit[:sha256],
|
30
32
|
filename: unit[:relative_path],
|
@@ -146,6 +146,8 @@ module Katello
|
|
146
146
|
elsif repository.generic?
|
147
147
|
duplicate_sha_path_content_list = content_backend_service.content_api(repository.repository_type, unit_type_id).list(
|
148
148
|
filter_label => checksum)
|
149
|
+
elsif unit_type_id == 'deb'
|
150
|
+
duplicate_sha_path_content_list = content_backend_service.content_api.list(filter_label => checksum)
|
149
151
|
else
|
150
152
|
duplicate_sha_path_content_list = content_backend_service.content_api.list(
|
151
153
|
filter_label => checksum,
|