katello 4.4.1 → 4.5.0
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/assets/javascripts/katello/hosts/activation_key_edit.js +9 -2
- data/app/controllers/katello/api/registry/registry_proxies_controller.rb +3 -0
- data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +5 -1
- data/app/controllers/katello/api/v2/alternate_content_sources_bulk_actions_controller.rb +44 -0
- data/app/controllers/katello/api/v2/alternate_content_sources_controller.rb +121 -0
- data/app/controllers/katello/api/v2/content_export_incrementals_controller.rb +39 -3
- data/app/controllers/katello/api/v2/content_exports_controller.rb +19 -0
- data/app/controllers/katello/api/v2/content_imports_controller.rb +13 -16
- data/app/controllers/katello/api/v2/content_view_components_controller.rb +1 -1
- data/app/controllers/katello/api/v2/content_view_repositories_controller.rb +1 -1
- data/app/controllers/katello/api/v2/content_view_versions_controller.rb +0 -12
- data/app/controllers/katello/api/v2/content_views_controller.rb +13 -0
- data/app/controllers/katello/api/v2/environments_controller.rb +1 -1
- data/app/controllers/katello/api/v2/host_module_streams_controller.rb +8 -2
- data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +25 -3
- data/app/controllers/katello/api/v2/organizations_controller.rb +4 -2
- data/app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb +1 -1
- data/app/controllers/katello/api/v2/repositories_controller.rb +1 -1
- data/app/controllers/katello/api/v2/repository_sets_controller.rb +40 -7
- data/app/controllers/katello/api/v2/subscriptions_controller.rb +2 -2
- data/app/controllers/katello/concerns/api/v2/hosts_controller_extensions.rb +1 -1
- data/app/helpers/katello/concerns/smart_proxy_helper_extensions.rb +4 -0
- data/app/helpers/katello/hosts_and_hostgroups_helper.rb +21 -3
- data/app/lib/actions/katello/alternate_content_source/create.rb +24 -0
- data/app/lib/actions/katello/alternate_content_source/destroy.rb +27 -0
- data/app/lib/actions/katello/alternate_content_source/refresh.rb +27 -0
- data/app/lib/actions/katello/alternate_content_source/update.rb +41 -0
- data/app/lib/actions/katello/cdn_configuration/update.rb +3 -3
- data/app/lib/actions/katello/content_view/destroy.rb +2 -1
- data/app/lib/actions/katello/content_view/incremental_updates.rb +7 -3
- data/app/lib/actions/katello/content_view/publish.rb +8 -10
- data/app/lib/actions/katello/content_view_version/auto_create_products.rb +4 -4
- data/app/lib/actions/katello/content_view_version/auto_create_redhat_repositories.rb +6 -4
- data/app/lib/actions/katello/content_view_version/auto_create_repositories.rb +6 -4
- data/app/lib/actions/katello/content_view_version/import.rb +25 -22
- data/app/lib/actions/katello/content_view_version/import_library.rb +0 -1
- data/app/lib/actions/katello/content_view_version/import_repository.rb +21 -0
- data/app/lib/actions/katello/content_view_version/incremental_update.rb +85 -93
- data/app/lib/actions/katello/content_view_version/reset_content_view_repositories_from_metadata.rb +2 -2
- data/app/lib/actions/katello/organization/manifest_refresh.rb +1 -1
- data/app/lib/actions/katello/product/content_create.rb +10 -8
- data/app/lib/actions/katello/repository/destroy.rb +36 -12
- data/app/lib/actions/katello/repository_set/disable_repository.rb +8 -3
- data/app/lib/actions/pulp3/alternate_content_source/create.rb +20 -0
- data/app/lib/actions/pulp3/alternate_content_source/create_remote.rb +20 -0
- data/app/lib/actions/pulp3/alternate_content_source/delete.rb +16 -0
- data/app/lib/actions/pulp3/alternate_content_source/delete_remote.rb +16 -0
- data/app/lib/actions/pulp3/alternate_content_source/refresh.rb +23 -0
- data/app/lib/actions/pulp3/alternate_content_source/update.rb +16 -0
- data/app/lib/actions/pulp3/alternate_content_source/update_remote.rb +17 -0
- data/app/lib/actions/pulp3/content_view_version/{import.rb → create_import.rb} +5 -5
- data/app/lib/actions/pulp3/content_view_version/create_importer.rb +4 -3
- data/app/lib/actions/pulp3/content_view_version/destroy_importer.rb +12 -1
- data/app/lib/actions/pulp3/orchestration/alternate_content_source/create.rb +16 -0
- data/app/lib/actions/pulp3/orchestration/alternate_content_source/delete.rb +23 -0
- data/app/lib/actions/pulp3/orchestration/alternate_content_source/refresh.rb +15 -0
- data/app/lib/actions/pulp3/orchestration/alternate_content_source/update.rb +16 -0
- data/app/lib/actions/pulp3/orchestration/content_view_version/copy_version_units_to_library.rb +1 -1
- data/app/lib/actions/pulp3/orchestration/content_view_version/export_repository.rb +51 -0
- data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +5 -2
- data/app/lib/actions/pulp3/repository/save_artifact.rb +1 -1
- data/app/lib/katello/api/v2/error_handling.rb +1 -0
- data/app/lib/katello/concerns/base_template_scope_extensions.rb +24 -11
- data/app/lib/katello/resources/cdn/katello_cdn.rb +3 -1
- data/app/lib/katello/util/errata.rb +2 -3
- data/app/lib/katello/validators/alternate_content_source_path_validator.rb +29 -0
- data/app/lib/katello/validators/content_default_http_proxy_setting_validator.rb +12 -0
- data/app/lib/katello/validators/content_view_environment_validator.rb +10 -5
- data/app/models/katello/alternate_content_source.rb +71 -0
- data/app/models/katello/authorization/alternate_content_source.rb +33 -0
- data/app/models/katello/authorization/repository.rb +5 -3
- data/app/models/katello/candlepin/repository_mapper.rb +13 -6
- data/app/models/katello/cdn_configuration.rb +15 -15
- data/app/models/katello/concerns/content_facet_host_extensions.rb +25 -0
- data/app/models/katello/concerns/host_managed_extensions.rb +7 -6
- data/app/models/katello/concerns/http_proxy_extensions.rb +14 -0
- data/app/models/katello/concerns/organization_extensions.rb +4 -2
- data/app/models/katello/concerns/setting_extensions.rb +14 -0
- data/app/models/katello/concerns/smart_proxy_extensions.rb +2 -1
- data/app/models/katello/content.rb +1 -0
- data/app/models/katello/content_credential.rb +6 -0
- data/app/models/katello/content_override.rb +7 -3
- data/app/models/katello/content_view.rb +33 -2
- data/app/models/katello/content_view_erratum_filter.rb +26 -12
- data/app/models/katello/content_view_filter.rb +4 -0
- data/app/models/katello/content_view_version.rb +12 -0
- data/app/models/katello/content_view_version_export_history.rb +3 -1
- data/app/models/katello/erratum.rb +9 -5
- data/app/models/katello/events/delete_latest_content_view_version.rb +40 -0
- data/app/models/katello/host/content_facet.rb +14 -0
- data/app/models/katello/host_available_module_stream.rb +12 -0
- data/app/models/katello/product_content.rb +1 -0
- data/app/models/katello/purpose_sla_status.rb +1 -1
- data/app/models/katello/purpose_status.rb +2 -2
- data/app/models/katello/repository.rb +7 -4
- data/app/models/katello/root_repository.rb +1 -1
- data/app/models/katello/smart_proxy_alternate_content_source.rb +8 -0
- data/app/models/katello/sync_plan.rb +1 -1
- data/app/presenters/katello/product_content_presenter.rb +15 -0
- data/app/services/katello/applicable_host_queue.rb +1 -1
- data/app/services/katello/product_content_finder.rb +12 -2
- data/app/services/katello/pulp3/alternate_content_source.rb +123 -0
- data/app/services/katello/pulp3/api/file.rb +8 -0
- data/app/services/katello/pulp3/api/yum.rb +8 -0
- data/app/services/katello/pulp3/content_view_version/export.rb +27 -5
- data/app/services/katello/pulp3/content_view_version/import.rb +104 -71
- data/app/services/katello/pulp3/content_view_version/import_export_common.rb +4 -4
- data/app/services/katello/pulp3/content_view_version/import_gpg_keys.rb +13 -11
- data/app/services/katello/pulp3/content_view_version/import_validator.rb +67 -72
- data/app/services/katello/pulp3/content_view_version/importable_products.rb +40 -24
- data/app/services/katello/pulp3/content_view_version/importable_repositories.rb +102 -38
- data/app/services/katello/pulp3/content_view_version/metadata_generator.rb +2 -2
- data/app/services/katello/pulp3/content_view_version/metadata_map.rb +117 -0
- data/app/services/katello/pulp3/pulp_content_unit.rb +6 -1
- data/app/services/katello/pulp3/repository/yum.rb +70 -12
- data/app/services/katello/pulp3/repository.rb +6 -62
- data/app/services/katello/pulp3/service_common.rb +66 -0
- data/app/services/katello/pulp3/smart_proxy_mirror_repository.rb +4 -1
- data/app/services/katello/ui_notifications/content_view/delete_latest_version_failure.rb +22 -0
- data/app/views/foreman/job_templates/change_content_source.erb +1 -1
- data/app/views/foreman/job_templates/install_errata.erb +5 -5
- data/app/views/foreman/job_templates/install_errata_by_search_query.erb +10 -8
- data/app/views/foreman/job_templates/install_group.erb +4 -4
- data/app/views/foreman/job_templates/install_package.erb +4 -4
- data/app/views/foreman/job_templates/install_packages_by_search_query.erb +3 -3
- data/app/views/foreman/job_templates/remove_group.erb +4 -4
- data/app/views/foreman/job_templates/remove_package.erb +4 -4
- data/app/views/foreman/job_templates/remove_packages_by_search_query.erb +3 -3
- data/app/views/foreman/job_templates/resolve_traces.erb +2 -2
- data/app/views/foreman/job_templates/restart_services.erb +3 -3
- data/app/views/foreman/job_templates/update_group.erb +4 -4
- data/app/views/foreman/job_templates/update_package.erb +4 -4
- data/app/views/foreman/job_templates/update_packages_by_search_query.erb +3 -3
- data/app/views/katello/api/v2/alternate_content_sources/base.json.rabl +24 -0
- data/app/views/katello/api/v2/alternate_content_sources/index.json.rabl +7 -0
- data/app/views/katello/api/v2/alternate_content_sources/show.json.rabl +3 -0
- data/app/views/katello/api/v2/capsule_content/sync_status.json.rabl +1 -1
- data/app/views/katello/api/v2/content_facet/show.json.rabl +12 -0
- data/app/views/katello/api/v2/content_view_version_export_histories/show.json.rabl +2 -3
- data/app/views/katello/api/v2/content_view_versions/base.json.rabl +1 -1
- data/app/views/katello/api/v2/content_views/base.json.rabl +1 -0
- data/app/views/katello/api/v2/environments/show.json.rabl +2 -0
- data/app/views/katello/api/v2/errata/_counts.json.rabl +2 -2
- data/app/views/katello/api/v2/host_module_streams/base.json.rabl +2 -2
- data/app/views/katello/api/v2/hosts/host_collections.json.rabl +1 -1
- data/app/views/katello/api/v2/organizations/show.json.rabl +7 -1
- data/app/views/katello/api/v2/repositories/show.json.rabl +2 -1
- data/app/views/katello/api/v2/repository_sets/show.json.rabl +4 -0
- data/app/views/katello/sync_management/_repo.html.erb +8 -29
- data/config/routes/api/v2.rb +19 -0
- data/db/migrate/20150930183738_migrate_content_hosts.rb +0 -399
- data/db/migrate/20171025163149_remove_use_pulp_oauth_setting.rb +1 -1
- data/db/migrate/20171114150937_cleanup_installed_packages.rb +1 -1
- data/db/migrate/20180402160223_clean_up_force_post_sync_action_setting.rb +1 -1
- data/db/migrate/20211129200124_remove_dependency_solving_algorithm_setting.rb +1 -1
- data/db/migrate/20211220185935_clean_duplicate_content_units.rb +1 -1
- data/db/migrate/20220110223754_update_disconnected_settings.rb +5 -5
- data/db/migrate/20220117151612_add_alternate_content_sources.rb +48 -0
- data/db/migrate/20220124191056_add_type_to_cdn_configuration.rb +9 -4
- data/db/migrate/20220209203251_add_generated_for_to_content_views.rb +13 -0
- data/db/migrate/20220209205137_expand_sync_timeout_settings.rb +7 -7
- data/db/migrate/20220228173251_remove_drpm_from_ignorable_content.rb +12 -0
- data/db/migrate/20220303160220_remove_duplicate_errata.rb +1 -1
- data/db/migrate/20220404190836_delete_old_setting_data.rb +9 -0
- data/db/migrate/20220405220616_update_cdn_configuration_type.rb +11 -0
- data/db/migrate/20220419193414_content_settings_to_dsl_category.rb +5 -0
- data/db/migrate/20220428203334_add_last_refreshed_to_katello_alternate_content_sources.rb +5 -0
- data/db/seeds.d/110-content-view-autopublish.rb +13 -0
- data/db/seeds.d/150-module_job_templates.rb +1 -1
- data/engines/bastion/README.md +1 -0
- data/engines/bastion/app/assets/javascripts/bastion/components/bst-modal.directive.js +1 -0
- data/engines/bastion/app/views/bastion/layouts/assets.html.erb +1 -0
- 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/activation-key-details.controller.js +4 -2
- 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/capsule-content/capsule-content.controller.js +11 -6
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-module-streams.controller.js +1 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-packages-installed.controller.js +1 -0
- 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/content-host-traces.controller.js +1 -0
- 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/content-hosts/content-hosts.controller.js +8 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-details.controller.js +4 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +2 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/content.service.js +10 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-deb-repositories.html +26 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-debs.html +27 -0
- 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/environments.routes.js +22 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/views/environments.html +13 -7
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +63 -17
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +7 -8
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +10 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html +21 -3
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +8 -12
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js +7 -5
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +2 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/discovery-create.controller.js +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/views/discovery-create.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/products.routes.js +1 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/content-access-mode-banner.html +6 -1
- data/lib/katello/engine.rb +1 -5
- data/lib/katello/permission_creator.rb +34 -4
- data/lib/katello/plugin.rb +377 -3
- data/lib/katello/tasks/refresh_alternate_content_sources.rake +15 -0
- data/lib/katello/tasks/reset.rake.bak +67 -0
- data/lib/katello/tasks/update_content_default_http_proxy.rake +2 -3
- data/lib/katello/version.rb +1 -1
- data/locale/action_names.rb +47 -41
- data/locale/bn/LC_MESSAGES/katello.mo +0 -0
- data/locale/bn/katello.po +820 -106
- data/locale/bn/katello.po.time_stamp +0 -0
- data/locale/cs/LC_MESSAGES/katello.mo +0 -0
- data/locale/cs/katello.po +818 -104
- data/locale/cs/katello.po.time_stamp +0 -0
- data/locale/de/LC_MESSAGES/katello.mo +0 -0
- data/locale/de/katello.po +893 -179
- data/locale/de/katello.po.time_stamp +0 -0
- data/locale/en/LC_MESSAGES/katello.mo +0 -0
- data/locale/en/katello.po +817 -103
- data/locale/en/katello.po.time_stamp +0 -0
- data/locale/es/LC_MESSAGES/katello.mo +0 -0
- data/locale/es/katello.po +882 -168
- data/locale/es/katello.po.time_stamp +0 -0
- data/locale/fr/LC_MESSAGES/katello.mo +0 -0
- data/locale/fr/katello.po +1219 -505
- data/locale/fr/katello.po.time_stamp +0 -0
- data/locale/gu/LC_MESSAGES/katello.mo +0 -0
- data/locale/gu/katello.po +826 -112
- data/locale/gu/katello.po.time_stamp +0 -0
- data/locale/hi/LC_MESSAGES/katello.mo +0 -0
- data/locale/hi/katello.po +826 -112
- data/locale/hi/katello.po.time_stamp +0 -0
- data/locale/it/LC_MESSAGES/katello.mo +0 -0
- data/locale/it/katello.po +863 -148
- data/locale/it/katello.po.time_stamp +0 -0
- data/locale/ja/LC_MESSAGES/katello.mo +0 -0
- data/locale/ja/katello.po +1216 -499
- data/locale/ja/katello.po.time_stamp +0 -0
- data/locale/katello.pot +3847 -2507
- data/locale/kn/LC_MESSAGES/katello.mo +0 -0
- data/locale/kn/katello.po +826 -112
- data/locale/kn/katello.po.time_stamp +0 -0
- data/locale/ko/LC_MESSAGES/katello.mo +0 -0
- data/locale/ko/katello.po +912 -198
- data/locale/ko/katello.po.time_stamp +0 -0
- data/locale/mr/LC_MESSAGES/katello.mo +0 -0
- data/locale/mr/katello.po +826 -112
- data/locale/mr/katello.po.time_stamp +0 -0
- data/locale/or/LC_MESSAGES/katello.mo +0 -0
- data/locale/or/katello.po +826 -112
- data/locale/or/katello.po.time_stamp +0 -0
- data/locale/pa/LC_MESSAGES/katello.mo +0 -0
- data/locale/pa/katello.po +826 -112
- data/locale/pa/katello.po.time_stamp +0 -0
- data/locale/pt/LC_MESSAGES/katello.mo +0 -0
- data/locale/pt/katello.po +817 -103
- data/locale/pt/katello.po.time_stamp +0 -0
- data/locale/pt_BR/LC_MESSAGES/katello.mo +0 -0
- data/locale/pt_BR/katello.po +879 -165
- data/locale/pt_BR/katello.po.time_stamp +0 -0
- data/locale/ru/LC_MESSAGES/katello.mo +0 -0
- data/locale/ru/katello.po +927 -213
- data/locale/ru/katello.po.time_stamp +0 -0
- data/locale/ta/LC_MESSAGES/katello.mo +0 -0
- data/locale/ta/katello.po +820 -106
- data/locale/ta/katello.po.time_stamp +0 -0
- data/locale/te/LC_MESSAGES/katello.mo +0 -0
- data/locale/te/katello.po +826 -112
- data/locale/te/katello.po.time_stamp +0 -0
- data/locale/zh_CN/LC_MESSAGES/katello.mo +0 -0
- data/locale/zh_CN/katello.po +1202 -486
- data/locale/zh_CN/katello.po.time_stamp +0 -0
- data/locale/zh_TW/LC_MESSAGES/katello.mo +0 -0
- data/locale/zh_TW/katello.po +856 -142
- data/locale/zh_TW/katello.po.time_stamp +0 -0
- data/webpack/components/Bookmark/index.js +22 -14
- data/webpack/components/EditableTextInput/EditableTextInput.js +20 -5
- data/webpack/components/Errata/index.js +38 -8
- data/webpack/components/Packages/index.js +1 -4
- data/webpack/components/Search/Search.js +22 -3
- data/webpack/components/SelectAllCheckbox/index.js +1 -0
- data/webpack/components/SelectableDropdown/SelectableDropdown.js +4 -2
- data/webpack/components/Table/EmptyStateMessage.js +21 -7
- data/webpack/components/Table/MainTable.js +29 -4
- data/webpack/components/Table/MainTable.scss +5 -1
- data/webpack/components/Table/TableHooks.js +65 -20
- data/webpack/components/Table/TableWrapper.js +9 -3
- data/webpack/components/Table/components/SortableColumnHeaders.js +19 -0
- data/webpack/components/Table/components/TranslatedPlural.js +57 -0
- data/webpack/components/TypeAhead/TypeAhead.js +12 -0
- data/webpack/components/TypeAhead/pf4Search/TypeAheadInput.js +13 -11
- data/webpack/components/TypeAhead/pf4Search/TypeAheadSearch.js +7 -2
- data/webpack/components/extensions/HostDetails/ActionsBar/index.js +27 -0
- data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ChangeHostCVModal.js +250 -0
- data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ContentViewDetailsCard.js +232 -0
- data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/HostContentViewActions.js +19 -0
- data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/HostContentViewConstants.js +2 -0
- data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/__tests__/changeHostCVModal.test.js +131 -0
- data/webpack/components/extensions/HostDetails/Cards/{__tests__ → ContentViewDetailsCard/__tests__}/contentViewDetailsCard.test.js +22 -0
- data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/__tests__/contentViews.fixtures.json +443 -0
- data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/__tests__/envPaths.fixtures.json +320 -0
- data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.js +57 -33
- data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.scss +3 -0
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsActions.js +30 -0
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsCard.js +206 -0
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsConstants.js +7 -0
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsModal.js +227 -0
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsSelectors.js +18 -0
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/availableHostCollections.fixtures.json +106 -0
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsCard.test.js +118 -0
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsModal.test.js +235 -0
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/removableHostCollections.fixtures.json +45 -0
- data/webpack/components/extensions/HostDetails/Cards/__tests__/errataOverviewCard.test.js +33 -8
- data/webpack/components/extensions/HostDetails/DetailsTabCards/InstalledProductsCard.js +44 -0
- data/webpack/components/extensions/HostDetails/DetailsTabCards/RecentCommunicationCardExtensions.js +37 -0
- data/webpack/components/extensions/HostDetails/DetailsTabCards/RegistrationCard.js +107 -0
- data/webpack/components/extensions/HostDetails/DetailsTabCards/SystemPropertiesCardExtensions.js +38 -0
- data/webpack/components/extensions/HostDetails/HostDetailsActions.js +11 -0
- data/webpack/components/extensions/HostDetails/Tabs/ContentTab/SecondaryTabsRoutes.js +4 -0
- data/webpack/components/extensions/HostDetails/Tabs/ContentTab/constants.js +2 -0
- data/webpack/components/extensions/HostDetails/Tabs/ContentTab/index.js +6 -1
- data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/ErrataTab.js +176 -72
- data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/HostErrataActions.js +1 -7
- data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsActions.js +1 -3
- data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsConstants.js +28 -0
- data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsTab.js +522 -118
- data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/HostPackagesActions.js +1 -7
- data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackageInstallModal.js +6 -4
- data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.js +164 -58
- data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionActions.js +59 -49
- data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionConstants.js +1 -0
- data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionHooks.js +85 -0
- data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsActions.js +33 -54
- data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsConstants.js +20 -0
- data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsTab.js +298 -107
- data/webpack/components/extensions/HostDetails/Tabs/TracesTab/EnableTracerModal.js +14 -7
- data/webpack/components/extensions/HostDetails/Tabs/TracesTab/HostTracesActions.js +2 -1
- data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesEnabler.js +104 -0
- data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesTab.js +134 -57
- data/webpack/components/extensions/HostDetails/Tabs/__tests__/errataTab.test.js +37 -32
- data/webpack/components/extensions/HostDetails/Tabs/{ModuleStreamsTab/__tests__/modules.fixtures.json → __tests__/moduleStreams.fixtures.json} +6 -3
- data/webpack/components/extensions/HostDetails/Tabs/__tests__/moduleStreamsTab.test.js +261 -0
- data/webpack/components/extensions/HostDetails/Tabs/__tests__/packageInstallModal.test.js +21 -15
- data/webpack/components/extensions/HostDetails/Tabs/__tests__/packagesTab.test.js +44 -1
- data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySets.fixtures.json +4 -1
- data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySetsTab.test.js +105 -6
- data/webpack/components/extensions/HostDetails/Tabs/__tests__/tracesTab.test.js +25 -6
- data/webpack/components/extensions/HostDetails/Tabs/customizedRexUrlHelpers.js +6 -0
- data/webpack/components/extensions/HostDetails/hostDetailsHelpers.js +18 -0
- data/webpack/containers/Application/config.js +5 -0
- data/webpack/global_index.js +32 -9
- data/webpack/global_test_setup.js +13 -0
- data/webpack/redux/actions/RedHatRepositories/enabled.js +2 -1
- data/webpack/redux/actions/RedHatRepositories/helpers.js +13 -8
- data/webpack/scenes/AlternateContentSources/ACSActions.js +65 -0
- data/webpack/scenes/AlternateContentSources/ACSConstants.js +18 -0
- data/webpack/scenes/AlternateContentSources/ACSIndexPage.js +23 -0
- data/webpack/scenes/AlternateContentSources/ACSSelectors.js +24 -0
- data/webpack/scenes/AlternateContentSources/Create/ACSCreateContext.js +4 -0
- data/webpack/scenes/AlternateContentSources/Create/ACSCreateWizard.js +160 -0
- data/webpack/scenes/AlternateContentSources/Create/Steps/ACSCreateFinish.js +79 -0
- data/webpack/scenes/AlternateContentSources/Create/Steps/ACSCredentials.js +199 -0
- data/webpack/scenes/AlternateContentSources/Create/Steps/ACSReview.js +104 -0
- data/webpack/scenes/AlternateContentSources/Create/Steps/ACSSmartProxies.js +41 -0
- data/webpack/scenes/AlternateContentSources/Create/Steps/AcsUrlPaths.js +71 -0
- data/webpack/scenes/AlternateContentSources/Create/Steps/NameACS.js +57 -0
- data/webpack/scenes/AlternateContentSources/Create/Steps/SelectSource.js +77 -0
- data/webpack/scenes/AlternateContentSources/Create/__tests__/acsCreate.test.js +149 -0
- data/webpack/scenes/AlternateContentSources/Create/__tests__/acsCreateData.fixtures.json +3 -0
- data/webpack/scenes/AlternateContentSources/Create/__tests__/contentCredentials.fixtures.json +69 -0
- data/webpack/scenes/AlternateContentSources/Create/__tests__/smartProxy.fixtures.json +65 -0
- data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.js +162 -0
- data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsIndex.fixtures.json +91 -0
- data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsTable.test.js +67 -0
- data/webpack/scenes/AlternateContentSources/index.js +4 -0
- data/webpack/scenes/Content/Details/ContentRepositories.js +1 -0
- data/webpack/scenes/Content/Table/ContentTable.js +1 -0
- data/webpack/scenes/ContentCredentials/ContentCredentialSelectors.js +4 -1
- data/webpack/scenes/ContentViews/ContentViewsActions.js +6 -2
- data/webpack/scenes/ContentViews/ContentViewsConstants.js +11 -3
- data/webpack/scenes/ContentViews/Copy/CopyContentViewForm.js +2 -1
- data/webpack/scenes/ContentViews/Create/ContentViewFormComponents.js +10 -1
- data/webpack/scenes/ContentViews/Create/CreateContentViewForm.js +2 -1
- data/webpack/scenes/ContentViews/Delete/ContentViewDeleteWizard.js +7 -5
- data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionFinish.js +29 -21
- data/webpack/scenes/ContentViews/Delete/__tests__/contentViewDelete.test.js +15 -8
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewAddModal.js +2 -2
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewBulkAddModal.js +2 -2
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +3 -1
- data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +34 -8
- data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +33 -29
- data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +130 -79
- data/webpack/scenes/ContentViews/Details/ContentViewInfo.js +16 -2
- data/webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js +2 -1
- data/webpack/scenes/ContentViews/Details/Filters/AffectedRepositories/AffectedRepositoryTable.js +2 -1
- data/webpack/scenes/ContentViews/Details/Filters/CVContainerImageFilterContent.js +6 -1
- data/webpack/scenes/ContentViews/Details/Filters/CVErrataDateFilterContent.js +41 -21
- data/webpack/scenes/ContentViews/Details/Filters/CVErrataIDFilterContent.js +38 -20
- data/webpack/scenes/ContentViews/Details/Filters/CVModuleStreamFilterContent.js +2 -0
- data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +8 -1
- data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +9 -1
- data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +2 -1
- data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVRpmMatchContentModal.js +1 -0
- data/webpack/scenes/ContentViews/Details/Filters/Rules/ContainerTag/AddEditContainerTagRuleModal.js +27 -12
- data/webpack/scenes/ContentViews/Details/Filters/Rules/Package/AddEditPackageRuleModal.js +39 -17
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVContainerImageFilterContent.test.js +27 -10
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVRpmFilterContent.test.js +46 -23
- data/webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js +3 -2
- data/webpack/scenes/ContentViews/Details/Promote/ContentViewVersionPromote.js +5 -2
- data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +161 -108
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +7 -7
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewRepoAdd.fixture.json +1 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/ActionSummary.js +58 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/BulkDeleteContextWrapper.js +45 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/BulkDeleteHelpers.js +30 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/BulkDeleteModal.js +56 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ConfirmBulkDelete.js +126 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/FinishBulkDelete.js +61 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignActivationKeys.js +196 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignHosts.js +220 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReviewEnvironments.js +104 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/BulkDeleteModal.test.js +122 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/BulkDeleteVersions.fixtures.json +600 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/contentView.fixtures.json +1504 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/contentViewVersion.fixtures.json +936 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/environmentPaths.fixtures.json +261 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/hosts.fixtures.json +163 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/bulkDeleteSteps.js +79 -0
- data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +192 -167
- data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveCVVersionWizard.js +2 -5
- data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVVersionDeleteFinish.js +38 -53
- data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVVersionRemoveReview.js +1 -1
- data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/cvVersionRemove.test.js +6 -12
- data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedActivationKeys.js +1 -0
- data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedHosts.js +1 -0
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailConfig.js +1 -0
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetails.js +8 -20
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsHeader.js +23 -13
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsTable.js +3 -0
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.fixtures.json +4 -4
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.test.js +0 -3
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetailsEmpty.test.js +4 -4
- data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +12 -14
- data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetails.fixtures.json +1 -0
- data/webpack/scenes/ContentViews/Publish/CVPublishFinish.js +96 -117
- data/webpack/scenes/ContentViews/Publish/PublishContentViewWizard.js +13 -19
- data/webpack/scenes/ContentViews/Publish/__tests__/publishContentView.test.js +9 -20
- data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +165 -148
- data/webpack/scenes/ContentViews/Table/tableDataGenerator.js +2 -0
- data/webpack/scenes/ContentViews/components/ContentViewIcon.js +14 -3
- data/webpack/scenes/ContentViews/components/EnvironmentLabels.js +4 -3
- data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.js +10 -6
- data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.scss +6 -1
- data/webpack/scenes/ContentViews/components/TaskPresenter/TaskPresenter.js +40 -35
- data/webpack/scenes/ContentViews/expansions/RelatedCompositeContentViewsModal.js +1 -1
- data/webpack/scenes/ContentViews/expansions/RelatedContentViewComponentsModal.js +2 -2
- data/webpack/scenes/ContentViews/helpers.js +3 -0
- data/webpack/scenes/Hosts/ChangeContentSource/helpers.js +5 -0
- data/webpack/scenes/RedHatRepositories/RedHatRepositoriesPage.js +3 -3
- data/webpack/scenes/RedHatRepositories/components/EnabledRepository/EnabledRepository.js +2 -1
- data/webpack/scenes/RedHatRepositories/components/EnabledRepository/__tests__/EnabledRepository.test.js +2 -0
- data/webpack/scenes/RedHatRepositories/components/Search.js +4 -4
- data/webpack/scenes/SmartProxy/SmartProxyContentActions.js +9 -2
- data/webpack/scenes/SmartProxy/SmartProxyContentConstants.js +1 -1
- data/webpack/scenes/SmartProxy/SmartProxyContentSelectors.js +10 -1
- data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnConfigurationConstants.js +3 -3
- data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnTypeForm.js +2 -0
- data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/{AirGappedTypeForm.js → ExportSyncForm.js} +7 -6
- data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/{UpstreamServerTypeForm.js → NetworkSyncForm.js} +15 -7
- data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/{AirGappedTypeForm.test.js → ExportSyncForm.test.js} +4 -4
- data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/{UpstreamServerTypeForm.test.js → NetworkSyncForm.test.js} +8 -8
- data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/index.js +11 -11
- data/webpack/scenes/Subscriptions/SubscriptionConstants.js +1 -0
- data/webpack/scenes/Subscriptions/SubscriptionsPage.js +8 -7
- data/webpack/scenes/Tasks/TaskActions.js +6 -0
- data/webpack/scenes/Tasks/TaskSelectors.js +11 -0
- data/webpack/scenes/Tasks/helpers.js +60 -5
- data/webpack/utils/helpers.js +2 -0
- metadata +183 -38
- data/app/models/setting/content.rb +0 -201
- data/db/seeds.d/107-enable_dynflow.rb +0 -8
- data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard.js +0 -96
- data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/__tests__/moduleStreamsTab.test.js +0 -108
- data/webpack/components/extensions/HostDetails/Tabs/TracesTab/EnableTracerEmptyState.js +0 -42
- data/webpack/scenes/ContentViews/Details/DetailsContainer.js +0 -36
@@ -13,7 +13,7 @@ module Katello
|
|
13
13
|
before_action :find_authorized_host, :only => [:index, :auto_complete_search]
|
14
14
|
before_action :find_organization
|
15
15
|
before_action :find_product_content, :except => [:index, :auto_complete_search]
|
16
|
-
before_action :check_airgapped, :only => [:
|
16
|
+
before_action :check_airgapped, :only => [:available_repositories, :enable, :disable]
|
17
17
|
|
18
18
|
resource_description do
|
19
19
|
api_version "v2"
|
@@ -31,13 +31,19 @@ module Katello
|
|
31
31
|
param :host_id, :number, :desc => N_("Id of the host"), :required => false
|
32
32
|
param :content_access_mode_all, :bool, :desc => N_("Get all content available, not just that provided by subscriptions.")
|
33
33
|
param :content_access_mode_env, :bool, :desc => N_("Limit content to just that available in the host's or activation key's content view version and lifecycle environment.")
|
34
|
+
param :status, [:enabled, :disabled, :overridden],
|
35
|
+
:desc => N_("Limit content to enabled / disabled / overridden"),
|
36
|
+
:required => false
|
37
|
+
|
34
38
|
param_group :search, Api::V2::ApiController
|
35
39
|
add_scoped_search_description_for(Katello::ProductContent)
|
36
40
|
def index
|
37
41
|
collection = scoped_search(index_relation, :name, :asc, :resource_class => Katello::ProductContent)
|
38
|
-
|
39
|
-
|
40
|
-
|
42
|
+
pcf = ProductContentFinder.wrap_with_overrides(
|
43
|
+
product_contents: collection[:results],
|
44
|
+
overrides: @consumable&.content_overrides,
|
45
|
+
status: params[:status])
|
46
|
+
collection[:results] = custom_sort_results(pcf)
|
41
47
|
respond(:collection => collection)
|
42
48
|
end
|
43
49
|
|
@@ -100,6 +106,7 @@ module Katello
|
|
100
106
|
api :PUT, "/repository_sets/:id/disable", N_("Disable a repository from the set")
|
101
107
|
api :PUT, "/products/:product_id/repository_sets/:id/disable", N_("Disable a repository from the set")
|
102
108
|
param :id, :number, :required => true, :desc => N_("ID of the repository set to disable")
|
109
|
+
param :repository_id, :number, :required => false, :desc => N_("ID of the repository within the set to disable")
|
103
110
|
param :product_id, :number, :required => false, :desc => N_("ID of the product containing the repository set")
|
104
111
|
param :basearch, String, :required => false, :desc => N_("Basearch to disable")
|
105
112
|
param :releasever, String, :required => false, :desc => N_("Releasever to disable")
|
@@ -186,7 +193,7 @@ module Katello
|
|
186
193
|
end
|
187
194
|
|
188
195
|
def substitutions
|
189
|
-
params.permit(:basearch, :releasever).to_h
|
196
|
+
params.permit(:basearch, :releasever, :repository_id).to_h
|
190
197
|
end
|
191
198
|
|
192
199
|
def find_authorized_activation_key
|
@@ -212,8 +219,34 @@ module Katello
|
|
212
219
|
end
|
213
220
|
|
214
221
|
def check_airgapped
|
215
|
-
if @organization.cdn_configuration.
|
216
|
-
|
222
|
+
if @organization.cdn_configuration.export_sync?
|
223
|
+
fail HttpErrors::BadRequest, _("Repositories are not available for enablement while CDN configuration is set to Air-gapped (disconnected).")
|
224
|
+
end
|
225
|
+
end
|
226
|
+
|
227
|
+
def sort_score(pc) # sort order for enabled
|
228
|
+
score = if pc.enabled_content_override&.value == "1"
|
229
|
+
4 # overridden to enabled
|
230
|
+
elsif pc.enabled_content_override.nil? && pc.enabled
|
231
|
+
3 # enabled
|
232
|
+
elsif pc.enabled_content_override.nil? && !pc.enabled
|
233
|
+
2 # disabled
|
234
|
+
elsif pc.enabled_content_override&.value == "0"
|
235
|
+
1 # overridden to disabled
|
236
|
+
else
|
237
|
+
0
|
238
|
+
end
|
239
|
+
Rails.logger.debug [pc.product_name, pc.enabled_content_override, "Id: #{pc.id}", "Score: #{score}"]
|
240
|
+
score
|
241
|
+
end
|
242
|
+
|
243
|
+
def custom_sort_results(product_content_finder)
|
244
|
+
if params[:sort_by] == 'enabled_by_default' && params[:sort_order] == 'desc'
|
245
|
+
product_content_finder.sort { |pca, pcb| sort_score(pca) <=> sort_score(pcb) }.reverse!
|
246
|
+
elsif params[:sort_by] == 'enabled_by_default'
|
247
|
+
product_content_finder.sort { |pca, pcb| sort_score(pca) <=> sort_score(pcb) }
|
248
|
+
else
|
249
|
+
product_content_finder
|
217
250
|
end
|
218
251
|
end
|
219
252
|
end
|
@@ -43,11 +43,11 @@ module Katello
|
|
43
43
|
collection = scoped_search(*base_args, options)
|
44
44
|
csv_response(collection,
|
45
45
|
[:id, :subscription_id, :name, :cp_id, :organization_id, :sockets, :cores,
|
46
|
-
:start_date, :end_date, :
|
46
|
+
:start_date, :end_date, :consumed, :quantity, :account_number, :contract_number,
|
47
47
|
:support_level, :ram, :stacking_id, :multi_entitlement, :type, :product_id,
|
48
48
|
:unmapped_guest, :virt_only, :virt_who, :upstream?],
|
49
49
|
['Pool Id Number', 'Subscription Id', 'Name', 'Pool Id', 'Organization Id',
|
50
|
-
'Sockets', 'Cores', 'Start Date', 'End Date', '
|
50
|
+
'Sockets', 'Cores', 'Start Date', 'End Date', 'Consumed', 'Quantity', 'Account Number',
|
51
51
|
'Contract Number', 'Support Level', 'RAM', 'Stacking Id', 'Multi Entitlement', 'Type',
|
52
52
|
'Product Id', 'Unmapped Guest', 'Virt Only', 'Requires Virt Who', 'Upstream'])
|
53
53
|
end
|
@@ -24,7 +24,7 @@ module Katello
|
|
24
24
|
process_response(:object => @host)
|
25
25
|
end
|
26
26
|
|
27
|
-
api :PUT, "/hosts/:host_id/host_collections", N_("Alter a
|
27
|
+
api :PUT, "/hosts/:host_id/host_collections", N_("Alter a host's host collections")
|
28
28
|
param :host_id, :number, :required => true, :desc => N_("The id of the host to alter")
|
29
29
|
param :host_collection_ids, Array, :required => true, :desc => N_("List of host collection ids to update")
|
30
30
|
def host_collections
|
@@ -35,6 +35,10 @@ module Katello
|
|
35
35
|
:name => _("Immediate"),
|
36
36
|
:label => ::Katello::RootRepository::DOWNLOAD_IMMEDIATE
|
37
37
|
},
|
38
|
+
{
|
39
|
+
:name => _("Streamed"),
|
40
|
+
:label => SmartProxy::DOWNLOAD_STREAMED
|
41
|
+
},
|
38
42
|
{
|
39
43
|
:name => _("Inherit from Repository"),
|
40
44
|
:label => SmartProxy::DOWNLOAD_INHERIT
|
@@ -205,9 +205,7 @@ module Katello
|
|
205
205
|
return [] unless new_host.operatingsystem.is_a?(Redhat)
|
206
206
|
|
207
207
|
if (host.is_a? ::Hostgroup)
|
208
|
-
new_host.content_facet =
|
209
|
-
:content_view_id => host.inherited_content_view_id,
|
210
|
-
:content_source_id => host.inherited_content_source_id)
|
208
|
+
new_host.content_facet = hostgroup_content_facet(host, param_host)
|
211
209
|
elsif host.content_facet.present?
|
212
210
|
new_host.content_facet = ::Katello::Host::ContentFacet.new(:lifecycle_environment_id => host.content_facet.lifecycle_environment_id,
|
213
211
|
:content_view_id => host.content_facet.content_view_id,
|
@@ -270,5 +268,25 @@ module Katello
|
|
270
268
|
def hosts_change_content_source
|
271
269
|
[{ action: [_('Change Content Source'), '/change_host_content_source', false], priority: 100 }]
|
272
270
|
end
|
271
|
+
|
272
|
+
private
|
273
|
+
|
274
|
+
def hostgroup_content_facet(hostgroup, param_host)
|
275
|
+
lifecycle_environment_id = hostgroup.inherited_lifecycle_environment_id
|
276
|
+
content_view_id = hostgroup.inherited_content_view_id
|
277
|
+
content_source_id = hostgroup.inherited_content_source_id
|
278
|
+
if param_host.lifecycle_environment_id && (hostgroup.inherited_lifecycle_environment_id != param_host.lifecycle_environment_id)
|
279
|
+
lifecycle_environment_id = param_host.lifecycle_environment_id
|
280
|
+
end
|
281
|
+
if param_host.content_view_id && (hostgroup.inherited_content_view_id != param_host.content_view_id)
|
282
|
+
content_view_id = param_host.content_view_id
|
283
|
+
end
|
284
|
+
if param_host.content_source_id && (hostgroup.inherited_content_source_id != param_host.content_source_id)
|
285
|
+
content_source_id = param_host.content_source_id
|
286
|
+
end
|
287
|
+
::Katello::Host::ContentFacet.new(:lifecycle_environment_id => lifecycle_environment_id,
|
288
|
+
:content_view_id => content_view_id,
|
289
|
+
:content_source_id => content_source_id)
|
290
|
+
end
|
273
291
|
end
|
274
292
|
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
module Actions
|
2
|
+
module Katello
|
3
|
+
module AlternateContentSource
|
4
|
+
class Create < Actions::EntryAction
|
5
|
+
def plan(acs, smart_proxies)
|
6
|
+
acs.save!
|
7
|
+
action_subject(acs)
|
8
|
+
smart_proxies = smart_proxies.uniq
|
9
|
+
concurrence do
|
10
|
+
smart_proxies.each do |smart_proxy|
|
11
|
+
::Katello::SmartProxyAlternateContentSource.create(alternate_content_source_id: acs.id, smart_proxy_id: smart_proxy.id)
|
12
|
+
plan_action(Pulp3::Orchestration::AlternateContentSource::Create,
|
13
|
+
acs, smart_proxy)
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
def humanized_name
|
19
|
+
_("Create Alternate Content Source")
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
module Actions
|
2
|
+
module Katello
|
3
|
+
module AlternateContentSource
|
4
|
+
class Destroy < Actions::EntryAction
|
5
|
+
def plan(acs)
|
6
|
+
action_subject(acs)
|
7
|
+
sequence do
|
8
|
+
acs.smart_proxies.each do |smart_proxy|
|
9
|
+
plan_action(Pulp3::Orchestration::AlternateContentSource::Delete,
|
10
|
+
acs, smart_proxy)
|
11
|
+
end
|
12
|
+
plan_self(:acs_id => acs.id)
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
def finalize
|
17
|
+
acs = ::Katello::AlternateContentSource.find_by(id: input[:acs_id])
|
18
|
+
acs.destroy
|
19
|
+
end
|
20
|
+
|
21
|
+
def humanized_name
|
22
|
+
_("Destroy Alternate Content Source")
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
module Actions
|
2
|
+
module Katello
|
3
|
+
module AlternateContentSource
|
4
|
+
class Refresh < Actions::EntryAction
|
5
|
+
def plan(acs)
|
6
|
+
action_subject(acs)
|
7
|
+
concurrence do
|
8
|
+
acs.smart_proxies.each do |smart_proxy|
|
9
|
+
plan_action(Pulp3::Orchestration::AlternateContentSource::Refresh,
|
10
|
+
acs, smart_proxy)
|
11
|
+
end
|
12
|
+
end
|
13
|
+
plan_self(acs_id: acs.id)
|
14
|
+
end
|
15
|
+
|
16
|
+
def finalize
|
17
|
+
acs = ::Katello::AlternateContentSource.find_by(id: input[:acs_id])
|
18
|
+
acs.update(last_refreshed: ::DateTime.now)
|
19
|
+
end
|
20
|
+
|
21
|
+
def humanized_name
|
22
|
+
_("Refresh Alternate Content Source")
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
module Actions
|
2
|
+
module Katello
|
3
|
+
module AlternateContentSource
|
4
|
+
class Update < Actions::EntryAction
|
5
|
+
# smart_proxies ALWAYS represents the smart proxies to remain associated
|
6
|
+
# after the action runs. If smart_proxies == [], there will be none afterwards.
|
7
|
+
def plan(acs, smart_proxies, acs_params)
|
8
|
+
action_subject(acs)
|
9
|
+
acs.update!(acs_params)
|
10
|
+
|
11
|
+
smart_proxies = smart_proxies.uniq
|
12
|
+
smart_proxies_to_add = smart_proxies - acs.smart_proxies
|
13
|
+
smart_proxies_to_delete = acs.smart_proxies - smart_proxies
|
14
|
+
smart_proxies_to_update = smart_proxies & acs.smart_proxies
|
15
|
+
|
16
|
+
concurrence do
|
17
|
+
smart_proxies_to_add&.each do |smart_proxy|
|
18
|
+
::Katello::SmartProxyAlternateContentSource.create(alternate_content_source_id: acs.id, smart_proxy_id: smart_proxy.id)
|
19
|
+
plan_action(Pulp3::Orchestration::AlternateContentSource::Create,
|
20
|
+
acs, smart_proxy)
|
21
|
+
end
|
22
|
+
|
23
|
+
smart_proxies_to_delete&.each do |smart_proxy|
|
24
|
+
plan_action(Pulp3::Orchestration::AlternateContentSource::Delete,
|
25
|
+
acs, smart_proxy)
|
26
|
+
end
|
27
|
+
|
28
|
+
smart_proxies_to_update&.each do |smart_proxy|
|
29
|
+
plan_action(Pulp3::Orchestration::AlternateContentSource::Update,
|
30
|
+
acs, smart_proxy)
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
def humanized_name
|
36
|
+
_("Update Alternate Content Source")
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
@@ -5,7 +5,7 @@ module Actions
|
|
5
5
|
def plan(cdn_configuration, options)
|
6
6
|
cdn_configuration.update!(options)
|
7
7
|
|
8
|
-
if cdn_configuration.
|
8
|
+
if cdn_configuration.network_sync?
|
9
9
|
resource = ::Katello::Resources::CDN::CdnResource.create(cdn_configuration: cdn_configuration)
|
10
10
|
resource.validate!
|
11
11
|
keypair = resource.debug_certificate
|
@@ -20,8 +20,8 @@ module Actions
|
|
20
20
|
roots.each do |root|
|
21
21
|
full_path = if cdn_configuration.redhat_cdn?
|
22
22
|
root.product.repo_url(root.library_instance.generate_content_path)
|
23
|
-
elsif cdn_configuration.
|
24
|
-
resource.repository_url(content_label: root.content.label)
|
23
|
+
elsif cdn_configuration.network_sync?
|
24
|
+
resource.repository_url(content_label: root.content.label, arch: root.arch, major: root.major, minor: root.minor)
|
25
25
|
end
|
26
26
|
plan_action(::Actions::Katello::Repository::Update, root, url: full_path)
|
27
27
|
end
|
@@ -25,7 +25,8 @@ module Actions
|
|
25
25
|
end
|
26
26
|
|
27
27
|
def finalize
|
28
|
-
content_view = ::Katello::ContentView.
|
28
|
+
content_view = ::Katello::ContentView.where(id: input[:content_view][:id]).first
|
29
|
+
return if content_view.blank?
|
29
30
|
content_view.content_view_repositories.each(&:destroy)
|
30
31
|
content_view.destroy!
|
31
32
|
end
|
@@ -13,6 +13,11 @@ module Actions
|
|
13
13
|
concurrence do
|
14
14
|
version_environments.each do |version_environment|
|
15
15
|
version = version_environment[:content_view_version]
|
16
|
+
if version.content_view.generated?
|
17
|
+
fail _("Cannot perform an incremental update on a Generated Content View Version (%{name} version version %{version}") %
|
18
|
+
{:name => version.content_view.name, :version => version.version}
|
19
|
+
end
|
20
|
+
|
16
21
|
if version.content_view.composite?
|
17
22
|
fail _("Cannot perform an incremental update on a Composite Content View Version (%{name} version version %{version}") %
|
18
23
|
{:name => version.content_view.name, :version => version.version}
|
@@ -53,9 +58,8 @@ module Actions
|
|
53
58
|
|
54
59
|
action = plan_action(ContentViewVersion::IncrementalUpdate, composite_version, environments,
|
55
60
|
:new_components => new_components, :description => description)
|
56
|
-
|
57
|
-
|
58
|
-
end
|
61
|
+
|
62
|
+
output_for_version_ids << {:version_id => action.new_content_view_version_id, :output => action.output}
|
59
63
|
end
|
60
64
|
end
|
61
65
|
end
|
@@ -41,7 +41,7 @@ module Actions
|
|
41
41
|
:triggered_by => options[:triggered_by]
|
42
42
|
)
|
43
43
|
source_repositories = []
|
44
|
-
content_view.publish_repositories(options[:
|
44
|
+
content_view.publish_repositories(options[:override_components]) do |repositories|
|
45
45
|
source_repositories += [repositories]
|
46
46
|
end
|
47
47
|
|
@@ -90,19 +90,13 @@ module Actions
|
|
90
90
|
end
|
91
91
|
|
92
92
|
def run
|
93
|
-
|
94
|
-
|
95
|
-
triggered_by: input[:content_view_version_id]
|
96
|
-
}
|
97
|
-
input[:auto_publish_composite_ids].each do |composite_id|
|
98
|
-
::Katello::EventQueue.push_event(::Katello::Events::AutoPublishCompositeView::EVENT_TYPE, composite_id) do |attrs|
|
99
|
-
attrs[:metadata] = metadata
|
100
|
-
end
|
101
|
-
end
|
93
|
+
version = ::Katello::ContentViewVersion.find(input[:content_view_version_id])
|
94
|
+
version.auto_publish_composites!
|
102
95
|
|
103
96
|
output[:content_view_id] = input[:content_view_id]
|
104
97
|
output[:content_view_version_id] = input[:content_view_version_id]
|
105
98
|
output[:skip_promotion] = input[:skip_promotion]
|
99
|
+
output[:history_id] = input[:history_id]
|
106
100
|
end
|
107
101
|
|
108
102
|
def rescue_strategy_for_self
|
@@ -142,6 +136,10 @@ module Actions
|
|
142
136
|
input['content_view_version_name']
|
143
137
|
end
|
144
138
|
|
139
|
+
def history_id
|
140
|
+
input['history_id']
|
141
|
+
end
|
142
|
+
|
145
143
|
private
|
146
144
|
|
147
145
|
def include_other_components(override_components, content_view)
|
@@ -2,14 +2,14 @@ module Actions
|
|
2
2
|
module Katello
|
3
3
|
module ContentViewVersion
|
4
4
|
class AutoCreateProducts < Actions::Base
|
5
|
-
def plan(
|
5
|
+
def plan(import:)
|
6
6
|
helper = ::Katello::Pulp3::ContentViewVersion::ImportableProducts.
|
7
|
-
new(organization: organization,
|
8
|
-
|
7
|
+
new(organization: import.organization,
|
8
|
+
metadata_products: import.metadata_map.products)
|
9
9
|
helper.generate!
|
10
10
|
concurrence do
|
11
11
|
helper.creatable.each do |product|
|
12
|
-
plan_action(::Actions::Katello::Product::Create, product[:product], organization)
|
12
|
+
plan_action(::Actions::Katello::Product::Create, product[:product], import.organization)
|
13
13
|
end
|
14
14
|
helper.updatable.each do |product|
|
15
15
|
plan_action(::Actions::Katello::Product::Update, product[:product], product[:options])
|
@@ -2,11 +2,13 @@ module Actions
|
|
2
2
|
module Katello
|
3
3
|
module ContentViewVersion
|
4
4
|
class AutoCreateRedhatRepositories < Actions::Base
|
5
|
-
def plan(
|
6
|
-
helper = ::Katello::Pulp3::ContentViewVersion::ImportableRepositories.
|
7
|
-
|
8
|
-
|
5
|
+
def plan(import:)
|
6
|
+
helper = ::Katello::Pulp3::ContentViewVersion::ImportableRepositories.new(
|
7
|
+
organization: import.organization,
|
8
|
+
metadata_repositories: import.metadata_map.repositories.select { |r| r.redhat }
|
9
|
+
)
|
9
10
|
helper.generate!
|
11
|
+
|
10
12
|
sequence do
|
11
13
|
helper.creatable.each do |root|
|
12
14
|
plan_action(::Actions::Katello::RepositorySet::EnableRepository, root[:product], root[:content], root[:substitutions])
|
@@ -2,11 +2,13 @@ module Actions
|
|
2
2
|
module Katello
|
3
3
|
module ContentViewVersion
|
4
4
|
class AutoCreateRepositories < Actions::Base
|
5
|
-
def plan(
|
6
|
-
helper = ::Katello::Pulp3::ContentViewVersion::ImportableRepositories.
|
7
|
-
|
8
|
-
|
5
|
+
def plan(import:)
|
6
|
+
helper = ::Katello::Pulp3::ContentViewVersion::ImportableRepositories.new(
|
7
|
+
organization: import.organization,
|
8
|
+
metadata_repositories: import.metadata_map.repositories.select { |r| !r.redhat }
|
9
|
+
)
|
9
10
|
helper.generate!
|
11
|
+
|
10
12
|
sequence do
|
11
13
|
helper.creatable.each do |root|
|
12
14
|
plan_action(::Actions::Katello::Repository::CreateRoot, root[:repository])
|
@@ -2,38 +2,41 @@ module Actions
|
|
2
2
|
module Katello
|
3
3
|
module ContentViewVersion
|
4
4
|
class Import < Actions::EntryAction
|
5
|
-
def plan(organization:, path:, metadata
|
6
|
-
|
7
|
-
content_view = ::Katello::Pulp3::ContentViewVersion::Import.
|
8
|
-
find_or_create_import_view(organization: organization,
|
9
|
-
metadata: metadata[:content_view],
|
10
|
-
library: library)
|
11
|
-
content_view.check_ready_to_import!
|
12
|
-
::Katello::Pulp3::ContentViewVersion::Import.check!(content_view: content_view,
|
13
|
-
metadata: metadata,
|
14
|
-
path: path,
|
15
|
-
smart_proxy: SmartProxy.pulp_primary!)
|
5
|
+
def plan(organization:, path:, metadata:)
|
6
|
+
metadata_map = ::Katello::Pulp3::ContentViewVersion::MetadataMap.new(metadata: metadata)
|
16
7
|
|
17
|
-
|
18
|
-
|
19
|
-
|
8
|
+
import = ::Katello::Pulp3::ContentViewVersion::Import.new(
|
9
|
+
organization: organization,
|
10
|
+
metadata_map: metadata_map,
|
11
|
+
path: path,
|
12
|
+
smart_proxy: SmartProxy.pulp_primary!
|
13
|
+
)
|
14
|
+
|
15
|
+
import.check!
|
20
16
|
|
21
17
|
gpg_helper = ::Katello::Pulp3::ContentViewVersion::ImportGpgKeys.
|
22
18
|
new(organization: organization,
|
23
|
-
|
19
|
+
metadata_gpg_keys: metadata_map.gpg_keys)
|
24
20
|
gpg_helper.import!
|
25
21
|
|
26
22
|
sequence do
|
27
|
-
plan_action(AutoCreateProducts,
|
28
|
-
plan_action(AutoCreateRepositories,
|
29
|
-
plan_action(AutoCreateRedhatRepositories,
|
30
|
-
plan_action(ResetContentViewRepositoriesFromMetadata,
|
31
|
-
plan_action(::Actions::Katello::ContentView::Publish, content_view, description,
|
23
|
+
plan_action(AutoCreateProducts, import: import)
|
24
|
+
plan_action(AutoCreateRepositories, import: import)
|
25
|
+
plan_action(AutoCreateRedhatRepositories, import: import)
|
26
|
+
plan_action(ResetContentViewRepositoriesFromMetadata, import: import)
|
27
|
+
plan_action(::Actions::Katello::ContentView::Publish, import.content_view, metadata_map.content_view_version.description,
|
32
28
|
path: path,
|
33
29
|
metadata: metadata,
|
34
30
|
importing: true,
|
35
|
-
major: major,
|
36
|
-
minor: minor)
|
31
|
+
major: metadata_map.content_view_version.major,
|
32
|
+
minor: metadata_map.content_view_version.minor)
|
33
|
+
plan_self(content_view_id: import.content_view.id)
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
def finalize
|
38
|
+
if task.execution_plan.run_steps.any? { |s| s.action_class == ::Actions::Pulp3::ContentViewVersion::CreateImport && s.state != :success }
|
39
|
+
::Katello::EventQueue.push_event(::Katello::Events::DeleteLatestContentViewVersion::EVENT_TYPE, input[:content_view_id])
|
37
40
|
end
|
38
41
|
end
|
39
42
|
|
@@ -0,0 +1,21 @@
|
|
1
|
+
module Actions
|
2
|
+
module Katello
|
3
|
+
module ContentViewVersion
|
4
|
+
class ImportRepository < Actions::EntryAction
|
5
|
+
def plan(organization, path:, metadata:)
|
6
|
+
action_subject(organization)
|
7
|
+
sequence do
|
8
|
+
plan_action(::Actions::Katello::ContentViewVersion::Import,
|
9
|
+
organization: organization,
|
10
|
+
path: path,
|
11
|
+
metadata: metadata)
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
def humanized_name
|
16
|
+
_("Import Repository")
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|