katello 4.3.0.rc4 → 4.4.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.

Files changed (458) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/katello/common/vendor.js +0 -1
  3. data/app/controllers/katello/api/v2/api_controller.rb +13 -4
  4. data/app/controllers/katello/api/v2/content_view_versions_controller.rb +4 -1
  5. data/app/controllers/katello/api/v2/content_views_controller.rb +46 -0
  6. data/app/controllers/katello/api/v2/host_packages_controller.rb +21 -1
  7. data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +30 -1
  8. data/app/controllers/katello/api/v2/organizations_controller.rb +10 -6
  9. data/app/controllers/katello/api/v2/packages_controller.rb +4 -0
  10. data/app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb +10 -1
  11. data/app/controllers/katello/api/v2/repositories_controller.rb +42 -14
  12. data/app/controllers/katello/api/v2/repository_sets_controller.rb +7 -0
  13. data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +3 -0
  14. data/app/controllers/katello/concerns/hosts_controller_extensions.rb +32 -0
  15. data/app/controllers/katello/remote_execution_controller.rb +5 -4
  16. data/app/graphql/types/host_collection.rb +18 -0
  17. data/app/helpers/katello/content_source_helper.rb +43 -0
  18. data/app/helpers/katello/hosts_and_hostgroups_helper.rb +4 -0
  19. data/app/lib/actions/katello/cdn_configuration/update.rb +5 -7
  20. data/app/lib/actions/katello/content_view/publish.rb +5 -0
  21. data/app/lib/actions/katello/content_view_version/incremental_update.rb +17 -3
  22. data/app/lib/actions/katello/repository/discover.rb +1 -14
  23. data/app/lib/actions/katello/repository/errata_mail.rb +4 -5
  24. data/app/lib/actions/katello/repository/filtered_index_content.rb +1 -1
  25. data/app/lib/actions/katello/repository/sync.rb +2 -2
  26. data/app/lib/actions/pulp3/abstract.rb +1 -1
  27. data/app/lib/actions/pulp3/abstract_async_task.rb +1 -1
  28. data/app/lib/actions/pulp3/content_view/delete_repository_references.rb +14 -4
  29. data/app/lib/actions/pulp3/content_view_version/create_import_history.rb +1 -2
  30. data/app/lib/actions/pulp3/content_view_version/import.rb +7 -0
  31. data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +7 -5
  32. data/app/lib/actions/pulp3/repository/copy_content.rb +1 -1
  33. data/app/lib/actions/pulp3/repository/reclaim_space.rb +3 -10
  34. data/app/lib/actions/pulp3/repository/save_artifact.rb +1 -0
  35. data/app/lib/katello/concerns/base_template_scope_extensions.rb +11 -0
  36. data/app/lib/katello/errors.rb +3 -3
  37. data/app/lib/katello/logging.rb +6 -1
  38. data/app/lib/katello/repo_discovery.rb +27 -19
  39. data/app/lib/katello/resources/cdn/katello_cdn.rb +41 -3
  40. data/app/lib/katello/resources/cdn.rb +4 -2
  41. data/app/lib/katello/util/deduplication_migrator.rb +105 -0
  42. data/app/lib/katello/util/pulpcore_content_filters.rb +2 -1
  43. data/app/models/katello/candlepin/repository_mapper.rb +3 -2
  44. data/app/models/katello/cdn_configuration.rb +38 -6
  45. data/app/models/katello/concerns/audit_comment_extensions.rb +17 -0
  46. data/app/models/katello/concerns/host_managed_extensions.rb +34 -2
  47. data/app/models/katello/concerns/organization_extensions.rb +5 -1
  48. data/app/models/katello/concerns/pulp_database_unit.rb +59 -173
  49. data/app/models/katello/concerns/remote_execution_proxy_selector_extensions.rb +11 -0
  50. data/app/models/katello/concerns/smart_proxy_extensions.rb +2 -1
  51. data/app/models/katello/content_view.rb +4 -4
  52. data/app/models/katello/content_view_filter.rb +1 -1
  53. data/app/models/katello/content_view_history.rb +1 -1
  54. data/app/models/katello/content_view_version.rb +6 -2
  55. data/app/models/katello/content_view_version_export_history.rb +3 -2
  56. data/app/models/katello/content_view_version_import_history.rb +4 -4
  57. data/app/models/katello/deb.rb +1 -3
  58. data/app/models/katello/docker_meta_tag.rb +1 -1
  59. data/app/models/katello/erratum.rb +0 -15
  60. data/app/models/katello/glue/provider.rb +1 -1
  61. data/app/models/katello/glue/pulp/repos.rb +3 -1
  62. data/app/models/katello/host/content_facet.rb +2 -27
  63. data/app/models/katello/host/info_provider.rb +9 -0
  64. data/app/models/katello/host/subscription_facet.rb +2 -2
  65. data/app/models/katello/host_available_module_stream.rb +10 -0
  66. data/app/models/katello/hostgroup/content_facet.rb +2 -2
  67. data/app/models/katello/installed_package.rb +1 -0
  68. data/app/models/katello/product.rb +1 -1
  69. data/app/models/katello/product_content.rb +2 -2
  70. data/app/models/katello/repository.rb +13 -12
  71. data/app/models/katello/root_repository.rb +65 -16
  72. data/app/models/katello/rpm.rb +8 -2
  73. data/app/models/setting/content.rb +15 -5
  74. data/app/services/cert/rhsm_client.rb +1 -5
  75. data/app/services/katello/component_view_presenter.rb +1 -1
  76. data/app/services/katello/content_unit_indexer.rb +166 -0
  77. data/app/services/katello/organization_creator.rb +23 -8
  78. data/app/services/katello/pulp/repository/docker.rb +1 -1
  79. data/app/services/katello/pulp/repository/yum.rb +0 -54
  80. data/app/services/katello/pulp/repository.rb +0 -6
  81. data/app/services/katello/pulp3/ansible_collection.rb +26 -10
  82. data/app/services/katello/pulp3/api/apt.rb +7 -0
  83. data/app/services/katello/pulp3/api/yum.rb +4 -0
  84. data/app/services/katello/pulp3/content_view_version/import.rb +11 -2
  85. data/app/services/katello/pulp3/content_view_version/metadata_generator.rb +1 -1
  86. data/app/services/katello/pulp3/deb.rb +10 -9
  87. data/app/services/katello/pulp3/docker_manifest.rb +6 -5
  88. data/app/services/katello/pulp3/docker_manifest_list.rb +23 -6
  89. data/app/services/katello/pulp3/docker_tag.rb +16 -7
  90. data/app/services/katello/pulp3/erratum.rb +51 -56
  91. data/app/services/katello/pulp3/file_unit.rb +9 -6
  92. data/app/services/katello/pulp3/generic_content_unit.rb +11 -12
  93. data/app/services/katello/pulp3/module_stream.rb +76 -30
  94. data/app/services/katello/pulp3/package_group.rb +5 -5
  95. data/app/services/katello/pulp3/pulp_content_unit.rb +19 -11
  96. data/app/services/katello/pulp3/repository/apt.rb +5 -3
  97. data/app/services/katello/pulp3/repository/docker.rb +14 -7
  98. data/app/services/katello/pulp3/repository/generic.rb +1 -1
  99. data/app/services/katello/pulp3/repository/yum.rb +23 -16
  100. data/app/services/katello/pulp3/repository.rb +31 -10
  101. data/app/services/katello/pulp3/repository_mirror.rb +18 -4
  102. data/app/services/katello/pulp3/rpm.rb +13 -13
  103. data/app/services/katello/pulp3/srpm.rb +10 -9
  104. data/app/services/katello/registration_manager.rb +1 -1
  105. data/app/services/katello/repository_type.rb +15 -4
  106. data/app/services/katello/repository_type_manager.rb +1 -1
  107. data/app/services/katello/ui_notifications/subscriptions/manifest_expired_warning.rb +1 -1
  108. data/app/services/katello/upstream_connection_checker.rb +2 -2
  109. data/app/views/foreman/job_templates/change_content_source.erb +1 -31
  110. data/app/views/foreman/job_templates/install_errata.erb +6 -9
  111. data/app/views/foreman/job_templates/install_errata_by_search_query.erb +26 -0
  112. data/app/views/foreman/job_templates/install_packages_by_search_query.erb +19 -0
  113. data/app/views/foreman/job_templates/remove_packages_by_search_query.erb +19 -0
  114. data/app/views/foreman/job_templates/update_packages_by_search_query.erb +19 -0
  115. data/app/views/katello/api/v2/cdn_configurations/show.json.rabl +1 -1
  116. data/app/views/katello/api/v2/content_views/base.json.rabl +8 -4
  117. data/app/views/katello/api/v2/environments/show.json.rabl +9 -0
  118. data/app/views/katello/api/v2/host_module_streams/base.json.rabl +1 -0
  119. data/app/views/katello/api/v2/repositories/base.json.rabl +1 -0
  120. data/app/views/katello/api/v2/repositories/show.json.rabl +3 -1
  121. data/app/views/katello/layouts/react.html.erb +0 -1
  122. data/app/views/katello/sync_management/_repo.html.erb +36 -25
  123. data/config/initializers/monkeys.rb +0 -1
  124. data/config/routes/api/v2.rb +1 -0
  125. data/config/routes/overrides.rb +3 -0
  126. data/config/routes.rb +2 -0
  127. data/db/migrate/20150930183738_migrate_content_hosts.rb +1 -1
  128. data/db/migrate/20180612164926_add_content_org_id.rb +2 -2
  129. data/db/migrate/20210119162528_delete_puppet_and_ostree_repos.rb +2 -0
  130. data/db/migrate/20211019192121_create_cdn_configuration.katello.rb +11 -2
  131. data/db/migrate/20211201154845_add_unique_indexes.rb +20 -0
  132. data/db/migrate/20211202172358_add_repository_mirroring_policy.rb +26 -0
  133. data/db/migrate/20211208034230_add_content_view_and_lifecycle_environment.rb +6 -0
  134. data/db/migrate/20211220185935_clean_duplicate_content_units.rb +144 -0
  135. data/db/migrate/20220110223754_update_disconnected_settings.rb +20 -0
  136. data/db/migrate/20220120163252_fix_docker_download_policy.rb +11 -0
  137. data/db/migrate/20220124191056_add_type_to_cdn_configuration.rb +22 -0
  138. data/db/migrate/20220127120843_fix_debian_download_policy.rb +11 -0
  139. data/db/migrate/20220204171908_rename_docker_tags_whitelist_and_add_exclude_tags.rb +8 -0
  140. data/db/migrate/20220207140355_change_deb_attributes_size_limit.rb +7 -0
  141. data/db/migrate/20220209205137_expand_sync_timeout_settings.rb +23 -0
  142. data/db/seeds.d/111-upgrade_tasks.rb +2 -1
  143. data/engines/bastion/app/views/bastion/layouts/application.html.erb +0 -1
  144. data/engines/bastion/app/views/bastion/layouts/assets.html.erb +0 -1
  145. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/content-credentials.controller.js +1 -1
  146. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-products.controller.js +1 -1
  147. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-repositories.controller.js +1 -1
  148. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-traces-modal.html +1 -1
  149. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment.html +26 -1
  150. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/apply-errata.controller.js +10 -3
  151. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +212 -152
  152. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/packages.controller.js +1 -0
  153. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +29 -10
  154. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-manage-content.controller.js +2 -3
  155. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +8 -3
  156. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +49 -35
  157. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/mirroring-policy.service.js +30 -0
  158. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js +29 -6
  159. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +48 -23
  160. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/discovery.controller.js +5 -4
  161. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/products.routes.js +4 -3
  162. data/lib/katello/engine.rb +4 -0
  163. data/lib/katello/permission_creator.rb +1 -1
  164. data/lib/katello/permissions/host_permissions.rb +3 -1
  165. data/lib/katello/plugin.rb +9 -1
  166. data/lib/katello/repository_types/deb.rb +0 -1
  167. data/lib/katello/repository_types/docker.rb +4 -4
  168. data/lib/katello/repository_types/file.rb +0 -1
  169. data/lib/katello/repository_types/ostree.rb +4 -6
  170. data/lib/katello/repository_types/python.rb +5 -1
  171. data/lib/katello/repository_types/yum.rb +2 -9
  172. data/lib/katello/tasks/content_view_import_only.rake +34 -0
  173. data/lib/katello/tasks/import_applicability.rake +1 -1
  174. data/lib/katello/tasks/jenkins.rake +0 -2
  175. data/lib/katello/tasks/repository.rake +4 -1
  176. data/lib/katello/tasks/upgrades/4.4/publish_import_cvvs.rake +17 -0
  177. data/lib/katello/version.rb +1 -1
  178. data/locale/action_names.rb +8 -7
  179. data/locale/bn/katello.po +1402 -650
  180. data/locale/cs/katello.po +1217 -96
  181. data/locale/de/katello.po +2359 -1347
  182. data/locale/en/katello.po +1216 -94
  183. data/locale/es/katello.po +2201 -1172
  184. data/locale/fr/katello.po +2601 -1615
  185. data/locale/gu/katello.po +1564 -814
  186. data/locale/hi/katello.po +1563 -810
  187. data/locale/it/katello.po +1311 -282
  188. data/locale/ja/katello.po +2534 -1518
  189. data/locale/katello.pot +3430 -1326
  190. data/locale/kn/katello.po +1564 -812
  191. data/locale/ko/katello.po +1441 -409
  192. data/locale/mr/katello.po +1564 -776
  193. data/locale/or/katello.po +1565 -813
  194. data/locale/pa/katello.po +1559 -792
  195. data/locale/pt/katello.po +1314 -277
  196. data/locale/pt_BR/katello.po +2226 -1181
  197. data/locale/ru/katello.po +1587 -563
  198. data/locale/ta/katello.po +1373 -619
  199. data/locale/te/katello.po +1564 -810
  200. data/locale/zh_CN/katello.po +2936 -1890
  201. data/locale/zh_TW/katello.po +1508 -606
  202. data/webpack/__mocks__/foremanReact/{redux/actions/toasts.js → components/ToastsList/index.js} +3 -2
  203. data/webpack/components/ActionableDetail.js +35 -21
  204. data/webpack/components/Content/Details/ContentDetails.js +1 -1
  205. data/webpack/components/Content/Details/__tests__/ContentDetailInfo.test.js +0 -2
  206. data/webpack/components/Content/Details/__tests__/ContentDetailRepositories.test.js +0 -2
  207. data/webpack/components/Content/Details/__tests__/ContentDetails.test.js +0 -2
  208. data/webpack/components/Content/Details/__tests__/__snapshots__/ContentDetails.test.js.snap +1 -1
  209. data/webpack/components/Content/__tests__/ContentPage.test.js +0 -2
  210. data/webpack/components/Content/__tests__/ContentTable.test.js +0 -2
  211. data/webpack/components/EditableSwitch.js +8 -2
  212. data/webpack/components/EditableTextInput/EditableTextInput.js +44 -86
  213. data/webpack/components/EditableTextInput/__tests__/editableTextInput.test.js +3 -3
  214. data/webpack/components/Errata/index.js +95 -29
  215. data/webpack/components/ErratumTypeLabel.js +16 -16
  216. data/webpack/components/MultiSelect/index.js +2 -2
  217. data/webpack/components/Packages/index.js +1 -1
  218. data/webpack/components/RoutedTabs/index.js +2 -1
  219. data/webpack/components/Search/Search.js +5 -2
  220. data/webpack/components/Search/__tests__/search.test.js +2 -3
  221. data/webpack/components/Select/Select.js +1 -1
  222. data/webpack/components/SelectOrg/SelectOrgReducer.js +15 -15
  223. data/webpack/components/SelectOrg/SetOrganization.js +2 -2
  224. data/webpack/components/Table/PageControls.js +3 -6
  225. data/webpack/components/Table/TableHooks.js +47 -7
  226. data/webpack/components/Table/TableWrapper.js +25 -7
  227. data/webpack/components/TypeAhead/TypeAhead.js +5 -1
  228. data/webpack/components/TypeAhead/helpers/commonPropTypes.js +1 -1
  229. data/webpack/components/TypeAhead/helpers/helpers.js +14 -14
  230. data/webpack/components/TypeAhead/pf3Search/TypeAheadSearch.js +1 -1
  231. data/webpack/components/TypeAhead/pf4Search/TypeAheadInput.js +4 -1
  232. data/webpack/components/TypeAhead/pf4Search/TypeAheadSearch.js +2 -1
  233. data/webpack/components/WithOrganization/withOrganization.js +3 -3
  234. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard.js +1 -1
  235. data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.js +108 -0
  236. data/webpack/components/extensions/HostDetails/Cards/__tests__/errataOverviewCard.test.js +56 -0
  237. data/webpack/components/extensions/HostDetails/HostDetailsActions.js +2 -0
  238. data/webpack/components/extensions/HostDetails/HostPackages/HostPackagesActions.js +49 -2
  239. data/webpack/components/extensions/HostDetails/HostPackages/HostPackagesConstants.js +14 -1
  240. data/webpack/components/extensions/HostDetails/Tabs/ContentTab/SecondaryTabsRoutes.js +6 -4
  241. data/webpack/components/extensions/HostDetails/Tabs/ContentTab/constants.js +1 -0
  242. data/webpack/components/extensions/HostDetails/Tabs/ContentTab/index.js +1 -0
  243. data/webpack/components/extensions/HostDetails/Tabs/{ErrataTab.js → ErrataTab/ErrataTab.js} +86 -75
  244. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/ErrataTab.scss +11 -0
  245. data/webpack/components/extensions/HostDetails/Tabs/{ErratumExpansionContents.js → ErrataTab/ErratumExpansionContents.js} +3 -3
  246. data/webpack/components/extensions/HostDetails/Tabs/{ErratumExpansionDetail.js → ErrataTab/ErratumExpansionDetail.js} +0 -0
  247. data/webpack/components/extensions/HostDetails/{HostErrata → Tabs/ErrataTab}/HostErrataActions.js +3 -3
  248. data/webpack/components/extensions/HostDetails/{HostErrata → Tabs/ErrataTab}/HostErrataConstants.js +11 -0
  249. data/webpack/components/extensions/HostDetails/{HostErrata → Tabs/ErrataTab}/HostErrataSelectors.js +0 -0
  250. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsActions.js +16 -0
  251. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsConstants.js +3 -0
  252. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsSelectors.js +19 -0
  253. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsTab.js +241 -0
  254. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/__tests__/moduleStreamsTab.test.js +108 -0
  255. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/__tests__/modules.fixtures.json +34 -0
  256. data/webpack/components/extensions/HostDetails/Tabs/PackageInstallModal.js +279 -0
  257. data/webpack/components/extensions/HostDetails/Tabs/PackageInstallModal.scss +3 -0
  258. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab.js +357 -64
  259. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab.scss +3 -7
  260. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionActions.js +103 -4
  261. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionConstants.js +6 -1
  262. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsTab.js +45 -42
  263. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsTab.scss +3 -3
  264. data/webpack/components/extensions/HostDetails/Tabs/{EnableTracerEmptyState.js → TracesTab/EnableTracerEmptyState.js} +0 -0
  265. data/webpack/components/extensions/HostDetails/Tabs/{EnableTracerModal.js → TracesTab/EnableTracerModal.js} +3 -2
  266. data/webpack/components/extensions/HostDetails/Tabs/{HostTracesActions.js → TracesTab/HostTracesActions.js} +2 -2
  267. data/webpack/components/extensions/HostDetails/Tabs/{HostTracesConstants.js → TracesTab/HostTracesConstants.js} +0 -0
  268. data/webpack/components/extensions/HostDetails/Tabs/{HostTracesSelectors.js → TracesTab/HostTracesSelectors.js} +0 -0
  269. data/webpack/components/extensions/HostDetails/Tabs/{TracesTab.js → TracesTab/TracesTab.js} +66 -61
  270. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesTab.scss +11 -0
  271. data/webpack/components/extensions/HostDetails/Tabs/__tests__/errataTab.test.js +17 -18
  272. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packageInstallModal.test.js +385 -0
  273. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packages.fixtures.json +1 -1
  274. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packagesTab.test.js +312 -11
  275. data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySetsTab.test.js +2 -2
  276. data/webpack/components/extensions/HostDetails/Tabs/__tests__/tracesTab.test.js +26 -30
  277. data/webpack/components/extensions/HostDetails/Tabs/__tests__/yumInstallablePackages.fixtures.json +72 -0
  278. data/webpack/components/extensions/HostDetails/Tabs/customizedRexUrlHelpers.js +25 -5
  279. data/webpack/components/extensions/HostDetails/YumInstallablePackages/YumInstallablePackagesActions.js +18 -0
  280. data/webpack/components/extensions/HostDetails/YumInstallablePackages/YumInstallablePackagesConstants.js +3 -0
  281. data/webpack/components/extensions/HostDetails/YumInstallablePackages/YumInstallablePackagesSelectors.js +16 -0
  282. data/webpack/components/extensions/HostDetails/hostDetailsHelpers.js +19 -0
  283. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/ActivationKeys.test.js.snap +4 -0
  284. data/webpack/components/extensions/RegistrationCommands/fields/ActivationKeys.js +1 -1
  285. data/webpack/components/extensions/RegistrationCommands/fields/LifecycleEnvironment.js +1 -1
  286. data/webpack/components/extensions/about/SystemStatuses.js +1 -1
  287. data/webpack/components/extensions/about/SystemStatusesReducer.js +10 -10
  288. data/webpack/components/pf3Table/components/Table.js +4 -5
  289. data/webpack/components/pf3Table/components/Table.test.js +0 -3
  290. data/webpack/components/pf3Table/components/TableBody.js +2 -2
  291. data/webpack/components/pf3Table/components/__snapshots__/Table.test.js.snap +9 -8
  292. data/webpack/containers/Application/config.js +6 -1
  293. data/webpack/containers/Application/overrides.scss +56 -7
  294. data/webpack/global_index.js +4 -1
  295. data/webpack/global_test_setup.js +1 -1
  296. data/webpack/index.js +7 -0
  297. data/webpack/redux/OrganizationProducts/OrganizationProductsReducer.js +15 -15
  298. data/webpack/redux/reducers/RedHatRepositories/enabled.js +43 -43
  299. data/webpack/redux/reducers/RedHatRepositories/repositorySetRepositories.js +43 -43
  300. data/webpack/redux/reducers/RedHatRepositories/sets.js +31 -31
  301. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsReducer.js +26 -26
  302. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsReducer.js +19 -19
  303. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetails.test.js +0 -2
  304. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionPage.test.js +0 -2
  305. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsTable.test.js +0 -2
  306. data/webpack/scenes/Content/ContentConfig.js +55 -5
  307. data/webpack/scenes/Content/ContentPage.js +5 -5
  308. data/webpack/scenes/Content/Details/ContentDetails.js +23 -21
  309. data/webpack/scenes/Content/Details/ContentInfo.js +2 -2
  310. data/webpack/scenes/Content/Details/ContentRepositories.js +1 -1
  311. data/webpack/scenes/Content/Details/__tests__/contentDetail.test.js +4 -4
  312. data/webpack/scenes/Content/Table/ContentTable.js +2 -2
  313. data/webpack/scenes/Content/__tests__/contentTable.test.js +3 -3
  314. data/webpack/scenes/ContentViews/ContentViewsConstants.js +5 -4
  315. data/webpack/scenes/ContentViews/ContentViewsPage.js +17 -13
  316. data/webpack/scenes/ContentViews/Copy/CopyContentViewForm.js +1 -1
  317. data/webpack/scenes/ContentViews/Create/CreateContentViewForm.js +3 -2
  318. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionReassignHostsForm.js +2 -2
  319. data/webpack/scenes/ContentViews/Delete/__tests__/contentViewDelete.test.js +6 -6
  320. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewAddModal.js +22 -11
  321. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewBulkAddModal.js +31 -18
  322. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +1 -1
  323. data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js +2 -2
  324. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +22 -28
  325. data/webpack/scenes/ContentViews/Details/ContentViewDetailReducer.js +8 -8
  326. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +5 -5
  327. data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +32 -30
  328. data/webpack/scenes/ContentViews/Details/ContentViewInfo.js +9 -4
  329. data/webpack/scenes/ContentViews/Details/DetailsContainer.js +14 -17
  330. data/webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js +3 -0
  331. data/webpack/scenes/ContentViews/Details/Filters/AffectedRepositories/AffectedRepositoryTable.js +1 -1
  332. data/webpack/scenes/ContentViews/Details/Filters/ArtifactsWithNoErrata.js +8 -8
  333. data/webpack/scenes/ContentViews/Details/Filters/CVContainerImageFilterContent.js +4 -4
  334. data/webpack/scenes/ContentViews/Details/Filters/CVErrataDateFilterContent.js +6 -6
  335. data/webpack/scenes/ContentViews/Details/Filters/CVErrataIDFilterContent.js +16 -9
  336. data/webpack/scenes/ContentViews/Details/Filters/CVFilterDetailType.js +46 -46
  337. data/webpack/scenes/ContentViews/Details/Filters/CVModuleStreamFilterContent.js +17 -17
  338. data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +17 -17
  339. data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +4 -4
  340. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetails.js +2 -2
  341. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetailsHeader.js +17 -11
  342. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +1 -1
  343. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/__tests__/CVRpmMatchContentModal.test.js +2 -2
  344. data/webpack/scenes/ContentViews/Details/Filters/Rules/Package/AddEditPackageRuleModal.js +17 -17
  345. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVContainerImageFilterContent.test.js +2 -3
  346. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVRpmFilterContent.test.js +2 -9
  347. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilterDetails.test.js +3 -5
  348. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilters.test.js +2 -10
  349. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvErrataIDFilter.test.js +2 -3
  350. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvModuleStreamFilter.test.js +2 -3
  351. data/webpack/scenes/ContentViews/Details/Histories/__tests__/contentViewHistory.test.js +2 -2
  352. data/webpack/scenes/ContentViews/Details/Repositories/ContentCounts.js +1 -1
  353. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +24 -3
  354. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +11 -5
  355. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersionContent.js +28 -28
  356. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +1 -1
  357. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVEnvironmentSelectionForm.js +18 -18
  358. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVReassignActivationKeysForm.js +3 -3
  359. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVReassignHostsForm.js +3 -3
  360. data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/cvVersionRemove.test.js +6 -6
  361. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedActivationKeys.js +1 -1
  362. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedHosts.js +1 -1
  363. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailConfig.js +31 -35
  364. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetails.js +9 -8
  365. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetails.scss +5 -2
  366. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsHeader.js +39 -40
  367. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsTable.js +46 -34
  368. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionRepositoryCell.js +66 -49
  369. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.test.js +5 -5
  370. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +3 -3
  371. data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetail.test.js +5 -3
  372. data/webpack/scenes/ContentViews/Publish/CVPublishFinish.js +2 -2
  373. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +5 -5
  374. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +3 -3
  375. data/webpack/scenes/ContentViews/components/CVBreadCrumb.js +1 -1
  376. data/webpack/scenes/ContentViews/components/ContentViewsCounter.js +1 -1
  377. data/webpack/scenes/ContentViews/components/EnvironmentLabels.js +18 -18
  378. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.js +10 -10
  379. data/webpack/scenes/ContentViews/expansions/DetailsExpansion.js +2 -2
  380. data/webpack/scenes/ContentViews/expansions/RelatedContentViewComponentsModal.js +8 -8
  381. data/webpack/scenes/Hosts/ChangeContentSource/actions.js +43 -0
  382. data/webpack/scenes/Hosts/ChangeContentSource/components/ContentSourceForm.js +87 -0
  383. data/webpack/scenes/Hosts/ChangeContentSource/components/ContentSourceTemplate.js +90 -0
  384. data/webpack/scenes/Hosts/ChangeContentSource/components/FormField.js +43 -0
  385. data/webpack/scenes/Hosts/ChangeContentSource/constants.js +3 -0
  386. data/webpack/scenes/Hosts/ChangeContentSource/helpers.js +27 -0
  387. data/webpack/scenes/Hosts/ChangeContentSource/index.js +126 -0
  388. data/webpack/scenes/Hosts/ChangeContentSource/selectors.js +42 -0
  389. data/webpack/scenes/Hosts/ChangeContentSource/styles.scss +11 -0
  390. data/webpack/scenes/ModuleStreams/Details/ModuleStreamDetailsReducer.js +18 -18
  391. data/webpack/scenes/ModuleStreams/Details/Profiles/__tests__/ModuleStreamDetailProfiles.test.js +0 -1
  392. data/webpack/scenes/ModuleStreams/Details/__tests__/ModuleStreamDetails.test.js +0 -2
  393. data/webpack/scenes/ModuleStreams/ModuleStreamsReducer.js +26 -26
  394. data/webpack/scenes/ModuleStreams/__tests__/ModuleStreamPage.test.js +0 -2
  395. data/webpack/scenes/ModuleStreams/__tests__/ModuleStreamsTable.test.js +0 -2
  396. data/webpack/scenes/Organizations/OrganizationActions.js +5 -1
  397. data/webpack/scenes/Organizations/OrganizationReducer.js +8 -8
  398. data/webpack/scenes/RedHatRepositories/RedHatRepositoriesPage.js +31 -1
  399. data/webpack/scenes/RedHatRepositories/__tests__/RedHatRepositoriesPage.test.js +16 -0
  400. data/webpack/scenes/RedHatRepositories/__tests__/__snapshots__/RedHatRepositoriesPage.test.js.snap +11 -2
  401. data/webpack/scenes/RedHatRepositories/components/EnabledRepository/EnabledRepositoryContent.js +4 -4
  402. data/webpack/scenes/RedHatRepositories/components/RepositorySetRepositories.js +1 -1
  403. data/webpack/scenes/RedHatRepositories/helpers.js +5 -5
  404. data/webpack/scenes/RedHatRepositories/index.js +11 -3
  405. data/webpack/scenes/Settings/SettingsReducer.js +14 -14
  406. data/webpack/scenes/Settings/Tables/TableReducer.js +23 -23
  407. data/webpack/scenes/Subscriptions/Details/SubscriptionDetailInfo.js +2 -2
  408. data/webpack/scenes/Subscriptions/Details/SubscriptionDetailProductContent.js +15 -15
  409. data/webpack/scenes/Subscriptions/Details/SubscriptionDetailProducts.js +1 -1
  410. data/webpack/scenes/Subscriptions/Details/SubscriptionDetailReducer.js +34 -34
  411. data/webpack/scenes/Subscriptions/Details/SubscriptionDetails.js +13 -13
  412. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/AirGappedTypeForm.js +81 -0
  413. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnConfigurationConstants.js +13 -0
  414. data/webpack/scenes/Subscriptions/Manifest/{CdnConfigurationForm.scss → CdnConfigurationTab/CdnConfigurationForm.scss} +0 -0
  415. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnTypeForm.js +106 -0
  416. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/UpstreamServerTypeForm.js +259 -0
  417. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/AirGappedTypeForm.test.js +44 -0
  418. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/CdnTypeForm.test.js +67 -0
  419. data/webpack/scenes/Subscriptions/Manifest/{__tests__/CdnConfigurationForm.test.js → CdnConfigurationTab/__tests__/UpstreamServerTypeForm.test.js} +46 -17
  420. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/index.js +97 -0
  421. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +11 -6
  422. data/webpack/scenes/Subscriptions/Manifest/ManifestHistoryReducer.js +16 -16
  423. data/webpack/scenes/Subscriptions/SubscriptionReducer.js +149 -149
  424. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsReducer.js +41 -41
  425. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/UpstreamSubscriptionsPage.test.js +0 -1
  426. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsPage.test.js +0 -1
  427. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsActions.test.js.snap +3 -2
  428. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/SubscriptionsTable.test.js +4 -0
  429. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/__snapshots__/SubscriptionsTable.test.js.snap +9 -0
  430. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/DeleteDialog.js +6 -6
  431. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Table.js +12 -12
  432. data/webpack/scenes/Tasks/TaskActions.js +1 -1
  433. data/webpack/scenes/Tasks/__tests__/__snapshots__/TaskActions.test.js.snap +3 -2
  434. data/webpack/services/api/testHelpers.js +5 -3
  435. data/webpack/services/index.js +36 -36
  436. data/webpack/utils/helpers.js +11 -8
  437. metadata +98 -60
  438. data/app/services/katello/pulp/deb.rb +0 -55
  439. data/app/services/katello/pulp/distribution.rb +0 -7
  440. data/app/services/katello/pulp/docker_blob.rb +0 -7
  441. data/app/services/katello/pulp/docker_manifest.rb +0 -13
  442. data/app/services/katello/pulp/docker_manifest_list.rb +0 -14
  443. data/app/services/katello/pulp/docker_tag.rb +0 -14
  444. data/app/services/katello/pulp/erratum.rb +0 -129
  445. data/app/services/katello/pulp/file_unit.rb +0 -21
  446. data/app/services/katello/pulp/module_stream.rb +0 -39
  447. data/app/services/katello/pulp/package_category.rb +0 -7
  448. data/app/services/katello/pulp/package_group.rb +0 -20
  449. data/app/services/katello/pulp/pulp_content_unit.rb +0 -156
  450. data/app/services/katello/pulp/rpm.rb +0 -57
  451. data/app/services/katello/pulp/srpm.rb +0 -29
  452. data/app/services/katello/pulp/yum_metadata_file.rb +0 -30
  453. data/lib/monkeys/pulp3_13_checksumfix.rb +0 -17
  454. data/webpack/__mocks__/foremanReact/components/Pagination/PaginationHooks.js +0 -2
  455. data/webpack/__mocks__/foremanReact/components/Pagination/PaginationWrapper.js +0 -2
  456. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab.scss +0 -16
  457. data/webpack/components/extensions/HostDetails/Tabs/TracesTab.scss +0 -12
  458. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationForm.js +0 -185
@@ -32,6 +32,8 @@ Foreman::Application.routes.draw do
32
32
  end
33
33
  end
34
34
 
35
+ post '/change_host_content_source/data', to: 'hosts#change_content_source_data'
36
+
35
37
  namespace :api do
36
38
  scope "(:api_version)", :module => :v2, :defaults => {:api_version => 'v2'}, :api_version => /v2/, :constraints => ApiConstraints.new(:version => 2, :default => true) do
37
39
  match '/hosts/post_index' => 'hosts#index', :via => :post
@@ -80,6 +82,7 @@ Foreman::Application.routes.draw do
80
82
  match '/bulk/system_purpose' => 'hosts_bulk_actions#system_purpose', :via => :put
81
83
  match '/bulk/available_incremental_updates' => 'hosts_bulk_actions#available_incremental_updates', :via => :post
82
84
  match '/bulk/module_streams' => 'hosts_bulk_actions#module_streams', :via => :post
85
+ match '/bulk/change_content_source' => 'hosts_bulk_actions#change_content_source', :via => :put
83
86
  match '/subscriptions/' => 'host_subscriptions#create', :via => :post
84
87
  end
85
88
 
data/config/routes.rb CHANGED
@@ -42,4 +42,6 @@ Katello::Engine.routes.draw do
42
42
  match '/labs' => 'react#index', :via => [:get]
43
43
  match '/labs/*page' => 'react#index', :via => [:get]
44
44
  match '/organization_select' => 'react#index', :via => [:get]
45
+
46
+ get '/change_host_content_source', to: 'react#index'
45
47
  end
@@ -38,7 +38,7 @@ class MigrateContentHosts < ActiveRecord::Migration[4.2]
38
38
  self.table_name = "katello_content_views"
39
39
 
40
40
  has_many :systems, :class_name => "MigrateContentHosts::System", :dependent => :restrict_with_exception
41
- has_many :content_facets, :class_name => "MigrateContentHosts::ContentFacet", :foreign_key => :content_view_id,
41
+ has_many :content_facets, :class_name => "MigrateContentHosts::ContentFacet",
42
42
  :inverse_of => :content_view, :dependent => :restrict_with_exception
43
43
  end
44
44
 
@@ -7,8 +7,8 @@ class AddContentOrgId < ActiveRecord::Migration[5.1]
7
7
 
8
8
  class FakeProductContent < Katello::Model
9
9
  self.table_name = 'katello_product_contents'
10
- belongs_to :product, :class_name => 'Katello::Product', :foreign_key => 'product_id', :inverse_of => :product_contents
11
- belongs_to :content, :class_name => 'FakeContent', :foreign_key => 'content_id', :inverse_of => :product_contents
10
+ belongs_to :product, :class_name => 'Katello::Product', :inverse_of => :product_contents
11
+ belongs_to :content, :class_name => 'FakeContent', :inverse_of => :product_contents
12
12
  end
13
13
 
14
14
  class FakeProduct < Katello::Model
@@ -39,6 +39,8 @@ class DeletePuppetAndOstreeRepos < ActiveRecord::Migration[6.0]
39
39
  FakeContentViewPuppetEnvironment.delete_all
40
40
  FakePuppetModule.delete_all
41
41
 
42
+ ::Katello::RepositoryErratum.where(:repository_id => ::Katello::Repository.where(:root_id => ::Katello::RootRepository.where(:content_type => [:ostree, :puppet]))).delete_all
43
+
42
44
  if puppet_repositories.any?
43
45
  User.as_anonymous_admin do
44
46
  ::Katello::Repository.delete(puppet_repositories)
@@ -1,4 +1,8 @@
1
1
  class CreateCdnConfiguration < ActiveRecord::Migration[6.0]
2
+ class FakeCdnConfiguration < Katello::Model
3
+ self.table_name = 'katello_cdn_configurations'
4
+ end
5
+
2
6
  def up
3
7
  create_table :katello_cdn_configurations do |t|
4
8
  t.integer :organization_id
@@ -14,17 +18,22 @@ class CreateCdnConfiguration < ActiveRecord::Migration[6.0]
14
18
  add_foreign_key :katello_cdn_configurations, :taxonomies, name: 'katello_cdn_configurations_organization_id', column: :organization_id
15
19
  add_foreign_key :katello_cdn_configurations, :katello_content_credentials, name: 'katello_cdn_configurations_ssl_ca_credential_id', column: :ssl_ca_credential_id
16
20
 
21
+ FakeCdnConfiguration.reset_column_information
22
+
17
23
  ::Organization.all.each do |org|
18
- Katello::CdnConfiguration.where(
19
- organization: org,
24
+ FakeCdnConfiguration.where(
25
+ organization_id: org.id,
20
26
  url: org.redhat_provider.repository_url || ::Katello::Resources::CDN::CdnResource.redhat_cdn_url
21
27
  ).first_or_create!
22
28
  end
23
29
 
24
30
  remove_column :katello_providers, :repository_url
31
+ ::Katello::Provider.reset_column_information
25
32
  end
26
33
 
27
34
  def down
35
+ add_column :katello_providers, :repository_url, :string
36
+ ::Katello::Provider.reset_column_information
28
37
  drop_table :katello_cdn_configurations
29
38
  end
30
39
  end
@@ -0,0 +1,20 @@
1
+ class AddUniqueIndexes < ActiveRecord::Migration[6.0]
2
+ def up
3
+ ::Katello::Util::DeduplicationMigrator.new.execute!
4
+ add_index :katello_capsule_lifecycle_environments, [:capsule_id, :lifecycle_environment_id], unique: true, name: 'katello_capsule_lifecycle_environments_unique_index'
5
+ add_index :katello_content_view_erratum_filter_rules, [:errata_id, :content_view_filter_id], unique: true, name: 'katello_content_view_erratum_filter_rules_unique_index'
6
+ add_index :katello_content_view_module_stream_filter_rules, [:module_stream_id, :content_view_filter_id], unique: true, name: 'katello_content_view_module_stream_filter_rules_unique_index'
7
+ add_index :katello_content_view_package_group_filter_rules, [:uuid, :content_view_filter_id], unique: true, name: 'katello_content_view_package_group_filter_rules_unique_index'
8
+ add_index :katello_content_view_repositories, [:content_view_id, :repository_id], unique: true, name: 'katello_content_view_repositories_unique_index'
9
+ add_index :katello_content_views, [:name, :organization_id], unique: true, name: 'katello_content_views_name_unique_index'
10
+ end
11
+
12
+ def down
13
+ remove_index :katello_capsule_lifecycle_environments, name: 'katello_capsule_lifecycle_environments_unique_index'
14
+ remove_index :katello_content_view_erratum_filter_rules, name: 'katello_content_view_erratum_filter_rules_unique_index'
15
+ remove_index :katello_content_view_module_stream_filter_rules, name: 'katello_content_view_module_stream_filter_rules_unique_index'
16
+ remove_index :katello_content_view_package_group_filter_rules, name: 'katello_content_view_package_group_filter_rules_unique_index'
17
+ remove_index :katello_content_view_repositories, name: 'katello_content_view_repositories_unique_index'
18
+ remove_index :katello_content_views, name: 'katello_content_views_name_unique_index'
19
+ end
20
+ end
@@ -0,0 +1,26 @@
1
+ class AddRepositoryMirroringPolicy < ActiveRecord::Migration[6.0]
2
+ def up
3
+ add_column :katello_root_repositories, :mirroring_policy, :string
4
+
5
+ #RH repos can handle COMPLETE always, but custom cannot, so lets migrate custom to 'MIRRORING_POLICY_CONTENT'
6
+ Katello::RootRepository.where(:content_type => 'yum').redhat.where(:mirror_on_sync => true).update_all(:mirroring_policy => ::Katello::RootRepository::MIRRORING_POLICY_COMPLETE)
7
+ Katello::RootRepository.where(:content_type => 'yum').custom.where(:mirror_on_sync => true).update_all(:mirroring_policy => ::Katello::RootRepository::MIRRORING_POLICY_CONTENT)
8
+
9
+ Katello::RootRepository.where.not(:content_type => 'yum').where(:mirror_on_sync => true).update_all(:mirroring_policy => ::Katello::RootRepository::MIRRORING_POLICY_CONTENT)
10
+ Katello::RootRepository.where(:mirror_on_sync => false).update_all(:mirroring_policy => ::Katello::RootRepository::MIRRORING_POLICY_ADDITIVE)
11
+
12
+ change_column :katello_root_repositories, :mirroring_policy, :string, :null => false
13
+ remove_column :katello_root_repositories, :mirror_on_sync
14
+ end
15
+
16
+ def down
17
+ add_column :katello_root_repositories, :mirror_on_sync, :boolean, default: true, null: true
18
+
19
+ Katello::RootRepository.where(:mirroring_policy => ::Katello::RootRepository::MIRRORING_POLICY_COMPLETE).update_all(:mirror_on_sync => true)
20
+ Katello::RootRepository.where(:mirroring_policy => ::Katello::RootRepository::MIRRORING_POLICY_CONTENT).update_all(:mirror_on_sync => true)
21
+ Katello::RootRepository.where(:mirroring_policy => ::Katello::RootRepository::MIRRORING_POLICY_ADDITIVE).update_all(:mirror_on_sync => false)
22
+ change_column :katello_root_repositories, :mirror_on_sync, :boolean, :null => false, :default => true
23
+
24
+ remove_column :katello_root_repositories, :mirroring_policy
25
+ end
26
+ end
@@ -0,0 +1,6 @@
1
+ class AddContentViewAndLifecycleEnvironment < ActiveRecord::Migration[6.0]
2
+ def change
3
+ add_column :katello_cdn_configurations, :upstream_content_view_label, :string
4
+ add_column :katello_cdn_configurations, :upstream_lifecycle_environment_label, :string
5
+ end
6
+ end
@@ -0,0 +1,144 @@
1
+ class CleanDuplicateContentUnits < ActiveRecord::Migration[6.0]
2
+ def find_duplicate_groups(model, fields)
3
+ model.having("count(*) > 1").group(*fields).pluck("string_agg(id::TEXT, ',') ").map do |ids|
4
+ ids.split(',').map(&:to_i)
5
+ end
6
+ end
7
+
8
+ def reassign_duplicate_associations(associated_models, duplicates, new_id, field)
9
+ associated_models.each do |associated_model, unique_by|
10
+ associated_duplicates = associated_model.where(field => duplicates)
11
+ to_delete, to_update = filter_duplicates(associated_model, associated_duplicates, new_id, field, [unique_by])
12
+ to_delete.each(&:destroy) #use destroy to destroy child models if any
13
+ associated_model.where(id: to_update).update_all(field => new_id) if to_update.any?
14
+ end
15
+ end
16
+
17
+ #returns two lists, the first of duplicates that need deleting, and
18
+ # the 2nd of duplicates that need updating to the new_id
19
+ def filter_duplicates(model_class, duplicate_models, new_id, new_id_field, unique_fields)
20
+ to_delete = []
21
+ to_update = []
22
+ duplicate_models.each do |duplicate|
23
+ query = {new_id_field => new_id}
24
+ unique_fields.each do |field|
25
+ query[field] = duplicate.send(field)
26
+ end
27
+ if model_class.where(query).any?
28
+ to_delete << duplicate
29
+ else
30
+ to_update << duplicate
31
+ end
32
+ end
33
+ return to_delete, to_update
34
+ end
35
+
36
+ def remove_children(reference_attribute_name, ids, child_models)
37
+ child_models.each do |model|
38
+ model.where(reference_attribute_name => ids).delete_all
39
+ end
40
+ end
41
+
42
+ def handle_duplicate(model, reference_attribute_name, unique_by_fields, associated_models: [], child_models: [])
43
+ find_duplicate_groups(model, unique_by_fields).each do |duplicate_ids|
44
+ to_keep = duplicate_ids.sort!.shift
45
+
46
+ remove_children(reference_attribute_name, duplicate_ids, child_models)
47
+ reassign_duplicate_associations(associated_models, duplicate_ids, to_keep, reference_attribute_name)
48
+ model.where(id: duplicate_ids).delete_all
49
+ end
50
+ end
51
+
52
+ def up
53
+ handle_null_pulp_ids
54
+ add_foreign_keys
55
+
56
+ handle_duplicate(Katello::ModuleStream,
57
+ 'module_stream_id',
58
+ [:pulp_id],
59
+ associated_models: {Katello::RepositoryModuleStream => :repository_id},
60
+ child_models: [Katello::ContentViewModuleStreamFilterRule,
61
+ Katello::ContentFacetApplicableModuleStream,
62
+ Katello::ModuleProfile,
63
+ Katello::ModuleStreamArtifact,
64
+ Katello::ModuleStreamErratumPackage,
65
+ Katello::ModuleStreamRpm])
66
+ add_index :katello_module_streams, :pulp_id, :unique => true
67
+
68
+ handle_duplicate(Katello::ModuleProfile, 'module_profile_id', [:module_stream_id, :name],
69
+ child_models: [Katello::ModuleProfileRpm])
70
+ add_index :katello_module_profiles, [:module_stream_id, :name], :unique => true
71
+
72
+ handle_duplicate(Katello::ModuleProfileRpm, 'module_profile_rpm_id', [:module_profile_id, :name])
73
+ add_index :katello_module_profile_rpms, [:module_profile_id, :name], :unique => true
74
+
75
+ handle_duplicate(Katello::AnsibleTag, 'ansible_tag_id', [:name],
76
+ associated_models: {Katello::AnsibleCollectionTag => :ansible_collection_id})
77
+ add_index :katello_ansible_tags, [:name], :unique => true
78
+
79
+ handle_duplicate(Katello::AnsibleCollectionTag, 'ansible_collection_tag_id', [:ansible_collection_id, :ansible_tag_id])
80
+ add_index :katello_ansible_collection_tags, [:ansible_collection_id, :ansible_tag_id], :unique => true,
81
+ :name => 'katello_ans_coll_tags_coll_id_tag_id'
82
+
83
+ handle_duplicate(Katello::GenericContentUnit,
84
+ 'generic_content_unit_id',
85
+ [:pulp_id],
86
+ associated_models: {Katello::RepositoryGenericContentUnit => :repository_id})
87
+ add_index :katello_generic_content_units, :pulp_id, :unique => true
88
+
89
+ handle_duplicate(Katello::DockerManifestList, 'docker_manifest_list_id', [:pulp_id],
90
+ associated_models: {
91
+ Katello::DockerManifestListManifest => :docker_manifest_id,
92
+ Katello::RepositoryDockerManifestList => :repository_id
93
+ })
94
+ add_index :katello_docker_manifest_lists, :pulp_id, :unique => true
95
+
96
+ handle_duplicate(Katello::DockerManifest, 'docker_manifest_id', [:pulp_id],
97
+ associated_models: {
98
+ Katello::DockerManifestListManifest => :docker_manifest_list_id,
99
+ Katello::RepositoryDockerManifest => :repository_id
100
+ })
101
+ add_index :katello_docker_manifests, :pulp_id, :unique => true
102
+ end
103
+
104
+ def handle_null_pulp_ids
105
+ Katello::DockerTag.where(:pulp_id => nil).destroy_all
106
+ change_column :katello_docker_tags, :pulp_id, :string, :null => false
107
+
108
+ Katello::DockerManifestList.where(:pulp_id => nil).destroy_all
109
+ change_column :katello_docker_manifest_lists, :pulp_id, :string, :null => false
110
+
111
+ Katello::DockerManifest.where(:pulp_id => nil).destroy_all
112
+ change_column :katello_docker_manifests, :pulp_id, :string, :null => false
113
+ end
114
+
115
+ def add_foreign_keys
116
+ Katello::DockerManifestListManifest.where.not(docker_manifest_list_id: Katello::DockerManifestList.pluck(:id)).delete_all
117
+ add_foreign_key :katello_docker_manifest_list_manifests, :katello_docker_manifest_lists, column: :docker_manifest_list_id
118
+
119
+ Katello::RepositoryDockerManifest.where.not(docker_manifest_id: Katello::DockerManifest.pluck(:id)).delete_all
120
+ add_foreign_key :katello_repository_docker_manifests, :katello_docker_manifests, column: :docker_manifest_id
121
+
122
+ Katello::RepositoryDockerManifestList.where.not(docker_manifest_list_id: Katello::DockerManifestList.pluck(:id)).delete_all
123
+ add_foreign_key :katello_repository_docker_manifest_lists, :katello_docker_manifest_lists, column: :docker_manifest_list_id
124
+ end
125
+
126
+ def down
127
+ remove_index :katello_module_streams, :pulp_id
128
+ remove_index :katello_module_profiles, [:module_stream_id, :name]
129
+ remove_index :katello_module_profile_rpms, [:module_profile_id, :name]
130
+ remove_index :katello_ansible_tags, :name
131
+ remove_index :katello_ansible_collection_tags, [:ansible_collection_id, :ansible_tag_id]
132
+ remove_index :katello_docker_manifests, :pulp_id
133
+ remove_index :katello_docker_manifest_lists, :pulp_id
134
+ remove_index :katello_generic_content_units, :pulp_id
135
+
136
+ remove_foreign_key :katello_repository_docker_manifest_lists, :katello_docker_manifest_lists
137
+ remove_foreign_key :katello_repository_docker_manifests, :katello_docker_manifests
138
+ remove_foreign_key :katello_docker_manifest_list_manifests, :katello_docker_manifest_lists
139
+
140
+ change_column :katello_docker_tags, :pulp_id, :string, :null => true
141
+ change_column :katello_docker_manifest_lists, :pulp_id, :string, :null => true
142
+ change_column :katello_docker_manifests, :pulp_id, :string, :null => true
143
+ end
144
+ end
@@ -0,0 +1,20 @@
1
+ class UpdateDisconnectedSettings < ActiveRecord::Migration[6.0]
2
+ def up
3
+ setting_disconnected = Setting.find_by(name: 'content_disconnected', category: 'Setting::Content')
4
+ setting = Setting.find_by(name: 'subscription_connection_enabled', category: 'Setting::Content')
5
+
6
+ setting&.update!(
7
+ value: !setting_disconnected&.value
8
+ )
9
+ Setting.where(:name => 'content_disconnected', :category => 'Setting::Content').delete_all
10
+ end
11
+
12
+ def down
13
+ remove_column :katello_cdn_configurations, :airgapped
14
+ setting_disconnected = Setting.find_by(name: 'subscription_connection_enabled', category: 'Setting::Content')
15
+ Setting.set('content_disconnected', N_("A server operating in disconnected mode does not communicate with the Red Hat CDN."),
16
+ !setting_disconnected.value, N_('Disconnected mode'))
17
+
18
+ Setting.where(:name => 'subscription_connection_enabled', :category => 'Setting::Content').delete_all
19
+ end
20
+ end
@@ -0,0 +1,11 @@
1
+ class FixDockerDownloadPolicy < ActiveRecord::Migration[6.0]
2
+ def up
3
+ Katello::RootRepository.where(content_type: "docker")
4
+ .where(download_policy: [nil, ""])
5
+ .update_all(:download_policy => "immediate")
6
+ end
7
+
8
+ def down
9
+ fail ActiveRecord::IrreversibleMigration
10
+ end
11
+ end
@@ -0,0 +1,22 @@
1
+ class AddTypeToCdnConfiguration < ActiveRecord::Migration[6.0]
2
+ def change
3
+ add_column :katello_cdn_configurations, :type, :string, default: ::Katello::CdnConfiguration::CDN_TYPE
4
+
5
+ ::Katello::CdnConfiguration.reset_column_information
6
+ ::Katello::CdnConfiguration.all.each do |config|
7
+ unless Setting[:subscription_connection_enabled]
8
+ # if subscription connection is not enabled
9
+ # the user most likely wants the type to be airgapped
10
+ config.update!(type: ::Katello::CdnConfiguration::AIRGAPPED_TYPE)
11
+ next
12
+ end
13
+
14
+ unless config.username.blank? ||
15
+ config.password.blank? ||
16
+ config.upstream_organization_label.blank? ||
17
+ config.ssl_ca_credential_id.blank?
18
+ config.update!(type: ::Katello::CdnConfiguration::UPSTREAM_SERVER_TYPE)
19
+ end
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,11 @@
1
+ class FixDebianDownloadPolicy < ActiveRecord::Migration[6.0]
2
+ def up
3
+ Katello::RootRepository.where(content_type: "deb")
4
+ .where(download_policy: [nil, ""])
5
+ .update_all(:download_policy => "immediate")
6
+ end
7
+
8
+ def down
9
+ fail ActiveRecord::IrreversibleMigration
10
+ end
11
+ end
@@ -0,0 +1,8 @@
1
+ class RenameDockerTagsWhitelistAndAddExcludeTags < ActiveRecord::Migration[6.0]
2
+ def change
3
+ change_table :katello_root_repositories do |t|
4
+ t.rename :docker_tags_whitelist, :include_tags
5
+ t.text :exclude_tags
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,7 @@
1
+ class ChangeDebAttributesSizeLimit < ActiveRecord::Migration[6.0]
2
+ def change
3
+ change_column :katello_root_repositories, :deb_releases, :text
4
+ change_column :katello_root_repositories, :deb_components, :text
5
+ change_column :katello_root_repositories, :deb_architectures, :text
6
+ end
7
+ end
@@ -0,0 +1,23 @@
1
+ class ExpandSyncTimeoutSettings < ActiveRecord::Migration[6.0]
2
+ def up
3
+ old_timeout_setting = Setting.find_by(name: 'sync_connect_timeout', category: 'Setting::Content')
4
+ if old_timeout_setting && (old_timeout_setting&.value != old_timeout_setting&.default)
5
+ Setting.find_by(name: 'sync_total_timeout')&.update(value: old_timeout_setting&.value)
6
+ Setting.find_by(name: 'sync_sock_read_timeout')&.update(value: old_timeout_setting&.value)
7
+ end
8
+ Setting.where(name: 'sync_connect_timeout', category: 'Setting::Content').delete_all
9
+ end
10
+
11
+ def down
12
+ timeout = Setting.find_by(name: 'sync_total_timeout', category: 'Setting::Content')&.value
13
+
14
+ Setting.where(name: 'sync_total_timeout', category: 'Setting::Content').delete_all
15
+ Setting.where(name: 'sync_connect_timeout_v2', category: 'Setting::Content').delete_all
16
+ Setting.where(name: 'sync_sock_connect_timeout', category: 'Setting::Content').delete_all
17
+ Setting.where(name: 'sync_sock_read_timeout', category: 'Setting::Content').delete_all
18
+
19
+ Setting.create(Setting.set('sync_connect_timeout', N_("Timeout in seconds for downloads when syncing"),
20
+ 300, N_('Sync Connection Timeout')))
21
+ Setting.find_by(name: 'sync_connect_timeout')&.update(value: timeout)
22
+ end
23
+ end
@@ -6,6 +6,7 @@ UpgradeTask.define_tasks(:katello) do
6
6
  {:name => 'katello:upgrades:4.1:sync_noarch_content'},
7
7
  {:name => 'katello:upgrades:4.1:fix_invalid_pools'},
8
8
  {:name => 'katello:upgrades:4.1:reupdate_content_import_export_perms'},
9
- {:name => 'katello:upgrades:4.2:remove_checksum_values'}
9
+ {:name => 'katello:upgrades:4.2:remove_checksum_values'},
10
+ {:name => 'katello:upgrades:4.4:publish_import_cvvs'}
10
11
  ]
11
12
  end
@@ -1,6 +1,5 @@
1
1
 
2
2
  <% content_for(:content) do %>
3
- <%= notifications %>
4
3
  <div id="content" class="article maincontent bastion" data-no-turbolink="true">
5
4
  <section class="container-fluid">
6
5
  <div ui-view></div>
@@ -22,7 +22,6 @@
22
22
  angular.module('Bastion').value('foreman', tfm);
23
23
  angular.module('Bastion').value('repositoryTypes', angular.fromJson('<%= Katello::RepositoryTypeManager.enabled_repository_types.values.to_json.html_safe %>'));
24
24
  angular.module('Bastion').value('deleteHostOnUnregister', angular.fromJson('<%= Setting[:unregister_delete_host] %>'));
25
- angular.module('Bastion').value('contentDisconnected', angular.fromJson('<%= Setting[:content_disconnected] %>'));
26
25
  angular.module('Bastion').value('globalContentProxy', angular.fromJson('<%= Setting[:content_default_http_proxy].empty? ? nil.to_json : Setting[:content_default_http_proxy].to_json.html_safe %>'));
27
26
  angular.module('Bastion').value('entriesPerPage', "<%= Setting[:entries_per_page] %>");
28
27
  angular.module('Bastion').value('contentViewSolveDependencies', "<%= Setting[:content_view_solve_dependencies] %>");
@@ -25,7 +25,7 @@ angular.module('Bastion.content-credentials').controller('ContentCredentialsCont
25
25
  };
26
26
 
27
27
  var nutupane = new Nutupane(ContentCredential, params);
28
- $scope.controllerName = 'katello_gpg_keys';
28
+ $scope.controllerName = 'katello_content_credentials';
29
29
  $scope.table = nutupane.table;
30
30
  $scope.panel = {loading: false};
31
31
  $scope.removeRow = nutupane.removeRow;
@@ -15,7 +15,7 @@
15
15
  var nutupane = new Nutupane(ContentCredential, {
16
16
  id: $scope.$stateParams.contentCredentialId
17
17
  }, 'products');
18
- $scope.controllerName = 'katello_gpg_keys';
18
+ $scope.controllerName = 'katello_content_credentials';
19
19
  nutupane.primaryOnly = true;
20
20
 
21
21
  $scope.panel = $scope.panel || {error: false, loading: false};
@@ -15,7 +15,7 @@
15
15
  var nutupane = new Nutupane(ContentCredential, {
16
16
  id: $scope.$stateParams.contentCredentialId
17
17
  }, 'repositories');
18
- $scope.controllerName = 'katello_gpg_keys';
18
+ $scope.controllerName = 'katello_content_credentials';
19
19
  nutupane.primaryOnly = true;
20
20
 
21
21
  $scope.panel = $scope.panel || {error: false, loading: false};
@@ -23,7 +23,7 @@
23
23
  <div data-block="modal-body">
24
24
  <span translate>Are you sure you want to restart the services on the selected content hosts?</span>
25
25
  <span ng-show="rebootRequired()">
26
- <strong translate>Resolving the selected Traces will reboot this host.</strong>
26
+ <strong translate>Resolving the selected Traces will reboot the selected content hosts.</strong>
27
27
  </span>
28
28
  </div>
29
29
  <span data-block="modal-confirm-button">
@@ -7,11 +7,36 @@
7
7
 
8
8
  <div data-block="item-actions">
9
9
  <button ng-show="!environment.library"
10
- ng-click="remove(environment)"
10
+ ng-click="openModal()"
11
11
  type="button"
12
12
  class="btn btn-default">
13
13
  <span translate>Remove Environment</span>
14
14
  </button>
15
+ <div bst-modal="remove(environment)" model="environment">
16
+ <div data-block="modal-header" translate>Remove environment {{ environment.name }}?</div>
17
+ <div data-block="modal-body">
18
+ <div ng-show="environment.content_views.length" style="margin-bottom: 1em">
19
+ <span translate>Environment will also be removed from the following published content views!</span>
20
+ <table class="table table-striped table-bordered" style="margin-top: 1em">
21
+ <thead>
22
+ <tr>
23
+ <th translate>Content View</th>
24
+ </tr>
25
+ </thead>
26
+ <tbody>
27
+ <tr ng-repeat="cv in environment.content_views">
28
+ <td class="align-center">
29
+ <a href="/content_views/{{cv['id']}}" target="_blank">
30
+ {{cv['name']}}
31
+ </a>
32
+ </td>
33
+ </tr>
34
+ </tbody>
35
+ </table>
36
+ </div>
37
+ <span translate>Are you sure you want to remove environment {{ environment.name }}?</span>
38
+ </div>
39
+ </div>
15
40
  </div>
16
41
 
17
42
  <nav data-block="navigation">
@@ -10,13 +10,14 @@
10
10
  * @requires ContentViewVersion
11
11
  * @requires CurrentOrganization
12
12
  * @requires Notification
13
+ * @requires BastionConfig
13
14
  *
14
15
  * @description
15
16
  * Display confirmation screen and apply Errata.
16
17
  */
17
18
  angular.module('Bastion.errata').controller('ApplyErrataController',
18
- ['$scope', '$window', 'translate', 'IncrementalUpdate', 'HostBulkAction', 'ContentViewVersion', 'CurrentOrganization', 'Notification',
19
- function ($scope, $window, translate, IncrementalUpdate, HostBulkAction, ContentViewVersion, CurrentOrganization, Notification) {
19
+ ['$scope', '$window', 'translate', 'IncrementalUpdate', 'HostBulkAction', 'ContentViewVersion', 'CurrentOrganization', 'Notification', 'BastionConfig',
20
+ function ($scope, $window, translate, IncrementalUpdate, HostBulkAction, ContentViewVersion, CurrentOrganization, Notification, BastionConfig) {
20
21
  var applyErrata, incrementalUpdate;
21
22
 
22
23
  function transitionToTask(task) {
@@ -31,6 +32,8 @@ angular.module('Bastion.errata').controller('ApplyErrataController',
31
32
 
32
33
  $scope.applyingErrata = false;
33
34
 
35
+ $scope.remoteExecutionPresent = BastionConfig.remoteExecutionPresent;
36
+ $scope.remoteExecutionByDefault = BastionConfig.remoteExecutionByDefault;
34
37
  $scope.errataActionFormValues = {
35
38
  authenticityToken: $window.AUTH_TOKEN.replace(/&quot;/g, ''),
36
39
  errata: IncrementalUpdate.getErrataIds().join(','),
@@ -133,7 +136,11 @@ angular.module('Bastion.errata').controller('ApplyErrataController',
133
136
  $scope.confirmApply = function() {
134
137
  $scope.applyingErrata = true;
135
138
  if ($scope.updates.length === 0) {
136
- applyErrata();
139
+ if ($scope.remoteExecutionPresent && $scope.remoteExecutionByDefault) {
140
+ angular.element('#errataActionForm').submit();
141
+ } else {
142
+ applyErrata();
143
+ }
137
144
  } else {
138
145
  incrementalUpdate();
139
146
  }