katello 4.5.0 → 4.6.0.rc1

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/controllers/katello/api/rhsm/candlepin_dynflow_proxy_controller.rb +10 -0
  3. data/app/controllers/katello/api/v2/activation_keys_controller.rb +7 -0
  4. data/app/controllers/katello/api/v2/alternate_content_sources_controller.rb +52 -22
  5. data/app/controllers/katello/api/v2/content_exports_controller.rb +33 -3
  6. data/app/controllers/katello/api/v2/content_uploads_controller.rb +2 -0
  7. data/app/controllers/katello/api/v2/content_view_filter_rules_controller.rb +1 -1
  8. data/app/controllers/katello/api/v2/content_view_filters_controller.rb +1 -1
  9. data/app/controllers/katello/api/v2/debs_controller.rb +42 -10
  10. data/app/controllers/katello/api/v2/host_collections_controller.rb +5 -1
  11. data/app/controllers/katello/api/v2/host_errata_controller.rb +1 -0
  12. data/app/controllers/katello/api/v2/host_module_streams_controller.rb +9 -1
  13. data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +8 -1
  14. data/app/controllers/katello/api/v2/organizations_controller.rb +3 -1
  15. data/app/controllers/katello/api/v2/simple_content_access_controller.rb +8 -0
  16. data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +34 -11
  17. data/app/controllers/katello/concerns/organizations_controller_extensions.rb +7 -16
  18. data/app/lib/actions/katello/alternate_content_source/alternate_content_source_common.rb +16 -0
  19. data/app/lib/actions/katello/alternate_content_source/create.rb +11 -5
  20. data/app/lib/actions/katello/alternate_content_source/destroy.rb +3 -4
  21. data/app/lib/actions/katello/alternate_content_source/refresh.rb +3 -5
  22. data/app/lib/actions/katello/alternate_content_source/update.rb +57 -13
  23. data/app/lib/actions/katello/applicability/hosts/bulk_generate.rb +2 -2
  24. data/app/lib/actions/katello/content_view/promote_to_environment.rb +4 -2
  25. data/app/lib/actions/katello/content_view/publish.rb +5 -2
  26. data/app/lib/actions/katello/organization/environment_contents_refresh.rb +20 -0
  27. data/app/lib/actions/katello/organization/manifest_refresh.rb +10 -4
  28. data/app/lib/actions/katello/organization/simple_content_access/toggle.rb +1 -9
  29. data/app/lib/actions/katello/repository/create.rb +9 -0
  30. data/app/lib/actions/katello/repository/destroy.rb +21 -0
  31. data/app/lib/actions/katello/repository/errata_mail.rb +3 -3
  32. data/app/lib/actions/katello/repository/refresh_repository.rb +3 -0
  33. data/app/lib/actions/katello/repository/update.rb +33 -0
  34. data/app/lib/actions/katello/repository/update_redhat_repository.rb +1 -1
  35. data/app/lib/actions/pulp3/alternate_content_source/create.rb +5 -4
  36. data/app/lib/actions/pulp3/alternate_content_source/create_remote.rb +5 -4
  37. data/app/lib/actions/pulp3/alternate_content_source/delete.rb +4 -4
  38. data/app/lib/actions/pulp3/alternate_content_source/delete_remote.rb +4 -4
  39. data/app/lib/actions/pulp3/alternate_content_source/refresh.rb +4 -4
  40. data/app/lib/actions/pulp3/alternate_content_source/update.rb +4 -4
  41. data/app/lib/actions/pulp3/alternate_content_source/update_remote.rb +5 -5
  42. data/app/lib/actions/pulp3/capsule_content/reclaim_space.rb +1 -0
  43. data/app/lib/actions/pulp3/content_view_version/create_export_history.rb +3 -1
  44. data/app/lib/actions/pulp3/content_view_version/create_exporter.rb +9 -2
  45. data/app/lib/actions/pulp3/content_view_version/create_syncable_export_history.rb +45 -0
  46. data/app/lib/actions/pulp3/content_view_version/destroy_exporter.rb +6 -1
  47. data/app/lib/actions/pulp3/content_view_version/export.rb +8 -3
  48. data/app/lib/actions/pulp3/orchestration/alternate_content_source/create.rb +3 -3
  49. data/app/lib/actions/pulp3/orchestration/alternate_content_source/delete.rb +6 -7
  50. data/app/lib/actions/pulp3/orchestration/alternate_content_source/refresh.rb +2 -2
  51. data/app/lib/actions/pulp3/orchestration/alternate_content_source/refresh_remote.rb +18 -0
  52. data/app/lib/actions/pulp3/orchestration/alternate_content_source/update.rb +3 -3
  53. data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +28 -13
  54. data/app/lib/actions/pulp3/orchestration/content_view_version/export_library.rb +4 -2
  55. data/app/lib/actions/pulp3/orchestration/content_view_version/export_repository.rb +4 -2
  56. data/app/lib/actions/pulp3/orchestration/content_view_version/syncable_export.rb +82 -0
  57. data/app/lib/actions/pulp3/orchestration/repository/generate_metadata.rb +1 -1
  58. data/app/lib/katello/concerns/base_template_scope_extensions.rb +1 -1
  59. data/app/lib/katello/errors.rb +1 -1
  60. data/app/lib/katello/resources/candlepin/owner.rb +9 -2
  61. data/app/lib/katello/validators/alternate_content_source_products_validator.rb +17 -0
  62. data/app/models/katello/alternate_content_source.rb +39 -8
  63. data/app/models/katello/alternate_content_source_product.rb +13 -0
  64. data/app/models/katello/concerns/host_managed_extensions.rb +13 -2
  65. data/app/models/katello/concerns/pulp_database_unit.rb +2 -2
  66. data/app/models/katello/concerns/smart_proxy_extensions.rb +5 -6
  67. data/app/models/katello/content_view.rb +41 -29
  68. data/app/models/katello/content_view_deb_filter.rb +51 -0
  69. data/app/models/katello/content_view_deb_filter_rule.rb +24 -0
  70. data/app/models/katello/content_view_filter.rb +10 -3
  71. data/app/models/katello/glue/candlepin/owner.rb +0 -1
  72. data/app/models/katello/installed_package.rb +1 -0
  73. data/app/models/katello/product.rb +3 -0
  74. data/app/models/katello/repository.rb +2 -0
  75. data/app/models/katello/smart_proxy_alternate_content_source.rb +6 -0
  76. data/app/services/cert/certs.rb +8 -16
  77. data/app/services/katello/organization_creator.rb +18 -7
  78. data/app/services/katello/pulp/server.rb +2 -2
  79. data/app/services/katello/pulp3/alternate_content_source.rb +22 -4
  80. data/app/services/katello/pulp3/api/apt.rb +12 -0
  81. data/app/services/katello/pulp3/api/core.rb +8 -0
  82. data/app/services/katello/pulp3/content_view_version/export.rb +38 -11
  83. data/app/services/katello/pulp3/content_view_version/metadata_generator.rb +3 -1
  84. data/app/services/katello/pulp3/content_view_version/syncable_format_export.rb +34 -0
  85. data/app/services/katello/pulp3/deb.rb +3 -1
  86. data/app/services/katello/pulp3/pulp_content_unit.rb +2 -0
  87. data/app/services/katello/pulp3/repository/apt.rb +186 -2
  88. data/app/services/katello/pulp3/repository.rb +4 -3
  89. data/app/services/katello/pulp3/service_common.rb +1 -1
  90. data/app/services/katello/pulp3/smart_proxy_mirror_repository.rb +1 -1
  91. data/app/views/foreman/smart_proxies/show.html.erb +3 -3
  92. data/app/views/katello/api/v2/alternate_content_sources/base.json.rabl +18 -3
  93. data/app/views/katello/api/v2/alternate_content_sources/show.json.rabl +20 -0
  94. data/app/views/katello/api/v2/ansible_collections/compare.json.rabl +10 -0
  95. data/app/views/katello/api/v2/content_view_filters/base.json.rabl +5 -0
  96. data/app/views/katello/api/v2/module_streams/compare.json.rabl +10 -0
  97. data/app/views/katello/api/v2/repository_sets/show.json.rabl +4 -0
  98. data/app/views/katello/layouts/foreman_with_bastion.html.erb +1 -1
  99. data/app/views/katello/layouts/react.html.erb +1 -1
  100. data/app/views/overrides/organizations/_edit_override.html.erb +5 -8
  101. data/app/views/overrides/organizations/_index_row_override.html.erb +1 -1
  102. data/app/views/overrides/organizations/_step_1_override.html.erb +5 -0
  103. data/ca/redhat-uep.pem +18 -23
  104. data/config/katello.yaml.example +0 -2
  105. data/config/routes/api/v2.rb +2 -0
  106. data/config/routes/overrides.rb +1 -0
  107. data/db/migrate/20201116161820_create_content_view_deb_filter_rules.rb +17 -0
  108. data/db/migrate/20211220185935_clean_duplicate_content_units.rb +11 -9
  109. data/db/migrate/20220524132259_remove_last_refreshed_from_katello_alternate_content_sources.rb +5 -0
  110. data/db/migrate/20220601163911_add_vendor_to_katello_installed_packages.rb +5 -0
  111. data/db/migrate/20220610165621_add_repositories_and_products_to_acs.rb +23 -0
  112. data/engines/bastion/app/views/bastion/layouts/application.html.erb +1 -1
  113. data/engines/bastion/app/views/bastion/layouts/application_ie.html.erb +1 -1
  114. data/engines/bastion/app/views/bastion/layouts/assets.html.erb +1 -1
  115. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/environment-content.controller.js +2 -0
  116. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/environment.controller.js +2 -0
  117. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-content-views.html +1 -1
  118. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.controller.js +1 -0
  119. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/views/environments.html +3 -3
  120. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +4 -5
  121. data/engines/bastion_katello/lib/bastion_katello/engine.rb +0 -1
  122. data/lib/katello/engine.rb +1 -2
  123. data/lib/katello/permission_creator.rb +2 -2
  124. data/lib/katello/permissions/host_permissions.rb +1 -0
  125. data/lib/katello/plugin.rb +6 -12
  126. data/lib/katello/version.rb +1 -1
  127. data/locale/action_names.rb +49 -46
  128. data/locale/bn/katello.po +361 -53
  129. data/locale/cs/katello.po +361 -53
  130. data/locale/de/katello.po +366 -58
  131. data/locale/en/katello.po +361 -53
  132. data/locale/es/katello.po +364 -56
  133. data/locale/fr/katello.po +374 -66
  134. data/locale/gu/katello.po +361 -53
  135. data/locale/hi/katello.po +361 -53
  136. data/locale/it/katello.po +361 -53
  137. data/locale/ja/katello.po +374 -66
  138. data/locale/katello.pot +1626 -1079
  139. data/locale/kn/katello.po +361 -53
  140. data/locale/ko/katello.po +361 -53
  141. data/locale/mr/katello.po +361 -53
  142. data/locale/or/katello.po +361 -53
  143. data/locale/pa/katello.po +361 -53
  144. data/locale/pt/katello.po +361 -53
  145. data/locale/pt_BR/katello.po +364 -56
  146. data/locale/ru/katello.po +361 -53
  147. data/locale/ta/katello.po +361 -53
  148. data/locale/te/katello.po +361 -53
  149. data/locale/zh_CN/katello.po +374 -66
  150. data/locale/zh_TW/katello.po +361 -53
  151. data/webpack/components/EditableTextInput/EditableTextInput.js +3 -16
  152. data/webpack/components/EditableTextInput/PencilEditButton.js +33 -0
  153. data/webpack/components/Errata/index.js +18 -3
  154. data/webpack/components/Loading.js +1 -1
  155. data/webpack/components/RoutedTabs/index.js +1 -17
  156. data/webpack/components/Search/Search.js +0 -1
  157. data/webpack/components/Search/__tests__/search.test.js +1 -2
  158. data/webpack/components/SelectAllCheckbox/index.js +7 -4
  159. data/webpack/components/SelectableDropdown/SelectableDropdown.js +1 -0
  160. data/webpack/components/Table/EmptyStateMessage.js +77 -2
  161. data/webpack/components/Table/MainTable.js +46 -4
  162. data/webpack/components/Table/TableHooks.js +8 -4
  163. data/webpack/components/Table/TableWrapper.js +14 -8
  164. data/webpack/components/TypeAhead/TypeAhead.js +26 -11
  165. data/webpack/components/TypeAhead/pf3Search/TypeAheadItems.js +1 -1
  166. data/webpack/components/TypeAhead/pf4Search/TypeAheadInput.js +1 -0
  167. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ChangeHostCVModal.js +2 -1
  168. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsModal.js +9 -4
  169. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeActions.js +37 -0
  170. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeCard.js +173 -0
  171. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeCard.scss +6 -0
  172. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeConstants.js +6 -0
  173. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeEditModal.js +301 -0
  174. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeSelectors.js +25 -0
  175. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/__tests__/SystemPurposeCard.test.js +108 -0
  176. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/__tests__/SystemPurposeEditModal.test.js +161 -0
  177. data/webpack/components/extensions/HostDetails/Cards/__tests__/errataOverviewCard.test.js +12 -12
  178. data/webpack/components/extensions/HostDetails/DetailsTabCards/HwPropertiesCard.js +100 -0
  179. data/webpack/components/extensions/HostDetails/DetailsTabCards/SystemPropertiesCardExtensions.js +26 -4
  180. data/webpack/components/extensions/HostDetails/HostDetailsConstants.js +3 -1
  181. data/webpack/components/extensions/HostDetails/HostDetailsReducer.js +14 -0
  182. data/webpack/components/extensions/HostDetails/HostDetailsSelectors.js +8 -2
  183. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/ErrataTab.js +9 -1
  184. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsTab.js +23 -8
  185. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.js +11 -9
  186. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsTab.js +58 -8
  187. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesTab.js +2 -0
  188. data/webpack/components/extensions/HostDetails/Tabs/__tests__/errataTab.test.js +30 -3
  189. data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySets.fixtures.json +3 -0
  190. data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySetsTab.test.js +48 -20
  191. data/webpack/components/extensions/HostDetails/Tabs/__tests__/tracesTab.test.js +1 -10
  192. data/webpack/components/extensions/HostDetails/hostDetailsHelpers.js +1 -1
  193. data/webpack/components/extensions/RegistrationCommands/index.js +49 -17
  194. data/webpack/containers/Application/config.js +5 -10
  195. data/webpack/global_index.js +19 -7
  196. data/webpack/global_test_setup.js +14 -2
  197. data/webpack/ouia_id_check.js +95 -0
  198. data/webpack/redux/actions/RedHatRepositories/helpers.js +2 -0
  199. data/webpack/redux/reducers/index.js +2 -4
  200. data/webpack/scenes/AlternateContentSources/ACSActions.js +36 -3
  201. data/webpack/scenes/AlternateContentSources/ACSConstants.js +3 -0
  202. data/webpack/scenes/AlternateContentSources/ACSSelectors.js +15 -6
  203. data/webpack/scenes/AlternateContentSources/Create/ACSCreateWizard.js +73 -42
  204. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSCreateFinish.js +26 -10
  205. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSProducts.js +44 -0
  206. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSReview.js +59 -45
  207. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSSmartProxies.js +4 -3
  208. data/webpack/scenes/AlternateContentSources/Create/Steps/AcsUrlPaths.js +0 -1
  209. data/webpack/scenes/AlternateContentSources/Create/Steps/SelectSource.js +35 -19
  210. data/webpack/scenes/AlternateContentSources/Create/__tests__/acsCreate.test.js +120 -13
  211. data/webpack/scenes/AlternateContentSources/Create/__tests__/products.fixtures.json +92 -0
  212. data/webpack/scenes/AlternateContentSources/Details/ACSExpandableDetails.js +459 -0
  213. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditCredentials.js +354 -0
  214. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditDetails.js +104 -0
  215. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditProducts.js +120 -0
  216. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditSmartProxies.js +118 -0
  217. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditURLPaths.js +118 -0
  218. data/webpack/scenes/AlternateContentSources/Details/__tests__/ACSEdits.test.js +242 -0
  219. data/webpack/scenes/AlternateContentSources/Details/__tests__/ACSExpandableDetails.test.js +106 -0
  220. data/webpack/scenes/AlternateContentSources/Details/__tests__/acsDetails.fixtures.json +49 -0
  221. data/webpack/scenes/AlternateContentSources/Details/__tests__/acsProducts.fixtures.json +95 -0
  222. data/webpack/scenes/AlternateContentSources/Details/__tests__/simplifiedAcsDetails.fixtures.json +39 -0
  223. data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.js +215 -87
  224. data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.scss +3 -0
  225. data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsTable.test.js +1 -2
  226. data/webpack/scenes/Content/__tests__/contentTable.test.js +1 -2
  227. data/webpack/scenes/ContentViews/ContentViewsConstants.js +15 -4
  228. data/webpack/scenes/ContentViews/Delete/__tests__/contentViewDelete.test.js +1 -2
  229. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +2 -0
  230. data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js +1 -2
  231. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +113 -0
  232. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +89 -0
  233. data/webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js +32 -9
  234. data/webpack/scenes/ContentViews/Details/Filters/Add/__tests__/cvFilterAdd.test.js +13 -3
  235. data/webpack/scenes/ContentViews/Details/Filters/CVContainerImageFilterContent.js +39 -27
  236. data/webpack/scenes/ContentViews/Details/Filters/CVDebFilterContent.js +236 -0
  237. data/webpack/scenes/ContentViews/Details/Filters/CVErrataIDFilterContent.js +1 -0
  238. data/webpack/scenes/ContentViews/Details/Filters/CVFilterDetailType.js +10 -0
  239. data/webpack/scenes/ContentViews/Details/Filters/CVModuleStreamFilterContent.js +3 -0
  240. data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +3 -1
  241. data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +17 -4
  242. data/webpack/scenes/ContentViews/Details/Filters/ContentType.js +1 -0
  243. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +34 -22
  244. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVDebMatchContentModal.js +97 -0
  245. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/__tests__/CVRpmMatchContentModal.test.js +1 -2
  246. data/webpack/scenes/ContentViews/Details/Filters/Rules/DebPackage/AddEditDebPackageRuleModal.js +128 -0
  247. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVContainerImageFilterContent.test.js +56 -3
  248. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVRpmFilterContent.test.js +62 -8
  249. data/webpack/scenes/ContentViews/Details/Filters/__tests__/ContentViewPackageGroupFilter.test.js +1 -5
  250. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilterDetails.test.js +1 -2
  251. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilters.test.js +32 -2
  252. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvErrataIDFilter.test.js +1 -2
  253. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvModuleStreamFilter.test.js +1 -2
  254. data/webpack/scenes/ContentViews/Details/Filters/__tests__/emptyCVContainerImageFilterContent.fixtures.json +13 -0
  255. data/webpack/scenes/ContentViews/Details/Filters/__tests__/emptyCVPackageFilterRules.fixtures.json +13 -0
  256. data/webpack/scenes/ContentViews/Details/Filters/__tests__/emptyContentViewFilters.fixtures.json +13 -0
  257. data/webpack/scenes/ContentViews/Details/Histories/__tests__/contentViewHistory.test.js +1 -2
  258. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +5 -1
  259. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +1 -2
  260. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/BulkDeleteModal.test.js +3 -0
  261. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompare.js +143 -0
  262. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompare.scss +51 -0
  263. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareConfig.js +314 -0
  264. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareHeader.js +186 -0
  265. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareTable.js +74 -0
  266. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/AnsibleCollectionsCompareAllContentData.fixtures.json +63 -0
  267. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/CVVersionCompare.test.js +657 -0
  268. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/CVVersionEmptyContentCompareData.fixtures.json +14 -0
  269. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ContainerTagsCompareAllContentData.fixtures.json +95 -0
  270. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/DebPackagesCompareAllContentData.fixtures.json +87 -0
  271. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ErrataCompareAllContentData.fixtures.json +319 -0
  272. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ErrataCompareThreeContentTypesData.fixtures.json +131 -0
  273. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/FilesCompareAllContentData.fixtures.json +51 -0
  274. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/FilesCompareThreeContentTypesData.fixtures.json +48 -0
  275. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ModuleStreamsCompareAllContentData.fixtures.json +239 -0
  276. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/PackageGroupsCompareAllContentData.fixtures.json +51 -0
  277. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/PythonPackagesCompareAllContentData.fixtures.json +315 -0
  278. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/RPMPackagesCompareAllContentData.fixtures.json +470 -0
  279. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/RPMPackagesCompareThreeContentTypesData.fixtures.json +475 -0
  280. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewDetails.fixtures.json +160 -0
  281. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionOneDetials.fixtures.json +161 -0
  282. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionThreeDetails.fixtures.json +154 -0
  283. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionTwoDetails.fixtures.json +211 -0
  284. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersions.fixtures.json +1013 -0
  285. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/emptyStateCVVersionOneDetails.fixtures.json +145 -0
  286. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/emptyStateCVVersionTwoDetails.fixtures.json +145 -0
  287. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +102 -36
  288. data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/cvVersionRemove.test.js +1 -2
  289. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailConfig.js +4 -2
  290. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.test.js +1 -2
  291. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetailsEmpty.test.js +1 -2
  292. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +113 -40
  293. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +96 -81
  294. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +1 -2
  295. data/webpack/scenes/ContentViews/__tests__/mockDetails.fixtures.json +7 -2
  296. data/webpack/scenes/SmartProxy/SmartProxyContentActions.js +1 -1
  297. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +0 -30
  298. data/webpack/test-utils/nockWrapper.js +7 -0
  299. metadata +82 -167
  300. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.controller.js +0 -34
  301. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.routes.js +0 -751
  302. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-deletion.controller.js +0 -42
  303. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-activation-keys.controller.js +0 -81
  304. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-confirm.controller.js +0 -65
  305. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-content-hosts.controller.js +0 -82
  306. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-environments.controller.js +0 -76
  307. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion.controller.js +0 -160
  308. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/content-view-deletion.html +0 -58
  309. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html +0 -94
  310. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html +0 -76
  311. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html +0 -88
  312. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html +0 -73
  313. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-component.factory.js +0 -32
  314. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-composite-available-content-views.controller.js +0 -75
  315. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-composite-content-views-list.controller.js +0 -68
  316. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html +0 -81
  317. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html +0 -81
  318. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite.html +0 -24
  319. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-deb-repositories.controller.js +0 -50
  320. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-docker-repositories.controller.js +0 -42
  321. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-file-repositories.controller.js +0 -50
  322. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-ostree-repositories.controller.js +0 -42
  323. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-repositories.controller.js +0 -45
  324. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-deb-repositories-list.controller.js +0 -48
  325. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-details.controller.js +0 -100
  326. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-docker-repositories-list.controller.js +0 -49
  327. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-file-repositories-list.controller.js +0 -48
  328. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-ostree-repositories-list.controller.js +0 -49
  329. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-promotion.controller.js +0 -129
  330. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-publish.controller.js +0 -46
  331. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-repositories-list.controller.js +0 -42
  332. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-repositories.service.js +0 -91
  333. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js +0 -240
  334. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-errata-filter.controller.js +0 -115
  335. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-module-stream-filter.controller.js +0 -68
  336. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-package-group-filter.controller.js +0 -66
  337. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/date-type-errata-filter.controller.js +0 -77
  338. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/docker-tag-filter.controller.js +0 -137
  339. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/edit-filter.controller.js +0 -36
  340. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/errata-filter-list.controller.js +0 -78
  341. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/errata-filter.controller.js +0 -74
  342. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-content-type.filter.js +0 -21
  343. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-details.controller.js +0 -34
  344. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-helper.service.js +0 -30
  345. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-repositories.controller.js +0 -86
  346. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-rule-matching-package-modal.controller.js +0 -37
  347. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-type.filter.js +0 -21
  348. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter.factory.js +0 -66
  349. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filters.controller.js +0 -85
  350. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/module-stream-list-filter.controller.js +0 -73
  351. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/new-filter.controller.js +0 -100
  352. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/package-filter.controller.js +0 -179
  353. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/package-group-list-filter.controller.js +0 -75
  354. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/rule.factory.js +0 -21
  355. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata-filter.html +0 -9
  356. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata.html +0 -75
  357. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-filter.html +0 -28
  358. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-tag-filter-details.html +0 -65
  359. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/edit-filter.html +0 -19
  360. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter-details.html +0 -63
  361. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter.html +0 -50
  362. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-details.html +0 -9
  363. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html +0 -121
  364. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-rule-matching-package-modal.html +0 -43
  365. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filters.html +0 -85
  366. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html +0 -58
  367. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter.html +0 -43
  368. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/new-filter.html +0 -62
  369. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html +0 -182
  370. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter.html +0 -28
  371. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter-details.html +0 -42
  372. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter.html +0 -43
  373. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/partials/filter-repositories-count.html +0 -2
  374. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.controller.js +0 -47
  375. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.factory.js +0 -22
  376. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/views/content-view-history.html +0 -36
  377. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-copy.html +0 -20
  378. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html +0 -87
  379. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details-tasks.html +0 -4
  380. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html +0 -144
  381. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html +0 -114
  382. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html +0 -87
  383. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html +0 -63
  384. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html +0 -87
  385. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-promotion.html +0 -59
  386. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-publish.html +0 -58
  387. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html +0 -116
  388. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html +0 -126
  389. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/content-view-new.controller.js +0 -78
  390. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html +0 -127
  391. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version-content.controller.js +0 -138
  392. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version.controller.js +0 -59
  393. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-apt.html +0 -25
  394. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-components.html +0 -19
  395. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-deb.html +0 -19
  396. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-details.html +0 -15
  397. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-docker.html +0 -23
  398. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-errata.html +0 -48
  399. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-file.html +0 -21
  400. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-module-streams.html +0 -8
  401. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-package-groups.html +0 -21
  402. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-packages.html +0 -27
  403. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-yum.html +0 -42
  404. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html +0 -83
  405. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/views/content-views.html +0 -74
  406. data/lib/katello/tasks/reset.rake.bak +0 -67
  407. data/locale/bn/LC_MESSAGES/katello.mo +0 -0
  408. data/locale/cs/LC_MESSAGES/katello.mo +0 -0
  409. data/locale/de/LC_MESSAGES/katello.mo +0 -0
  410. data/locale/en/LC_MESSAGES/katello.mo +0 -0
  411. data/locale/es/LC_MESSAGES/katello.mo +0 -0
  412. data/locale/fr/LC_MESSAGES/katello.mo +0 -0
  413. data/locale/gu/LC_MESSAGES/katello.mo +0 -0
  414. data/locale/hi/LC_MESSAGES/katello.mo +0 -0
  415. data/locale/it/LC_MESSAGES/katello.mo +0 -0
  416. data/locale/ja/LC_MESSAGES/katello.mo +0 -0
  417. data/locale/kn/LC_MESSAGES/katello.mo +0 -0
  418. data/locale/ko/LC_MESSAGES/katello.mo +0 -0
  419. data/locale/mr/LC_MESSAGES/katello.mo +0 -0
  420. data/locale/or/LC_MESSAGES/katello.mo +0 -0
  421. data/locale/pa/LC_MESSAGES/katello.mo +0 -0
  422. data/locale/pt/LC_MESSAGES/katello.mo +0 -0
  423. data/locale/pt_BR/LC_MESSAGES/katello.mo +0 -0
  424. data/locale/ru/LC_MESSAGES/katello.mo +0 -0
  425. data/locale/ta/LC_MESSAGES/katello.mo +0 -0
  426. data/locale/te/LC_MESSAGES/katello.mo +0 -0
  427. data/locale/zh_CN/LC_MESSAGES/katello.mo +0 -0
  428. data/locale/zh_TW/LC_MESSAGES/katello.mo +0 -0
  429. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsActions.js +0 -30
  430. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsConstants.js +0 -3
  431. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsPage.js +0 -80
  432. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsReducer.js +0 -39
  433. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsTableSchema.js +0 -60
  434. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsTables.scss +0 -0
  435. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetails.js +0 -94
  436. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsActions.js +0 -23
  437. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsConstants.js +0 -3
  438. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsReducer.js +0 -30
  439. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionsSchema.js +0 -35
  440. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailInfo.test.js +0 -16
  441. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetails.fixtures.js +0 -25
  442. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetails.test.js +0 -27
  443. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailsActions.test.js +0 -41
  444. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailsReducer.test.js +0 -33
  445. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailInfo.test.js.snap +0 -83
  446. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetails.test.js.snap +0 -190
  447. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailsActions.test.js.snap +0 -58
  448. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailsReducer.test.js.snap +0 -50
  449. data/webpack/scenes/AnsibleCollections/Details/index.js +0 -17
  450. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionPage.test.js +0 -23
  451. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollections.fixtures.js +0 -52
  452. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsActions.test.js +0 -48
  453. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsReducer.test.js +0 -46
  454. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsTable.test.js +0 -25
  455. data/webpack/scenes/AnsibleCollections/__tests__/__snapshots__/AnsibleCollectionPage.test.js.snap +0 -73
  456. data/webpack/scenes/AnsibleCollections/__tests__/__snapshots__/AnsibleCollectionsTable.test.js.snap +0 -81
  457. data/webpack/scenes/AnsibleCollections/index.js +0 -17
  458. data/webpack/scenes/Subscriptions/Manifest/__tests__/ManageManifestModal.test.js +0 -123
@@ -2,14 +2,14 @@ module Actions
2
2
  module Pulp3
3
3
  module AlternateContentSource
4
4
  class UpdateRemote < Pulp3::AbstractAsyncTask
5
- def plan(acs, smart_proxy)
6
- acs.backend_service(smart_proxy).create_test_remote
7
- plan_self(:acs_id => acs.id, :smart_proxy_id => smart_proxy.id)
5
+ def plan(smart_proxy_acs)
6
+ smart_proxy_acs.backend_service.create_test_remote
7
+ plan_self(smart_proxy_acs_id: smart_proxy_acs.id, smart_proxy_id: smart_proxy_acs.smart_proxy_id)
8
8
  end
9
9
 
10
10
  def invoke_external_task
11
- acs = ::Katello::AlternateContentSource.find(input[:acs_id])
12
- output[:response] = acs.backend_service(smart_proxy).update_remote
11
+ smart_proxy_acs = ::Katello::SmartProxyAlternateContentSource.find(input[:smart_proxy_acs_id])
12
+ output[:response] = smart_proxy_acs.backend_service.update_remote
13
13
  end
14
14
  end
15
15
  end
@@ -12,6 +12,7 @@ module Actions
12
12
  end
13
13
  repository_hrefs = ::Katello::Pulp3::Api::Core.new(smart_proxy).core_repositories_list_all(fields: 'pulp_href').map(&:pulp_href)
14
14
  end
15
+ fail _('There is no downloaded content to clean.') if repository_hrefs.empty?
15
16
  plan_self(repository_hrefs: repository_hrefs, smart_proxy_id: smart_proxy.id)
16
17
  end
17
18
 
@@ -27,9 +27,10 @@ module Actions
27
27
  cvv = ::Katello::ContentViewVersion.find(input[:content_view_version_id])
28
28
  from_cvv = ::Katello::ContentViewVersion.find(input[:from_content_view_version_id]) unless input[:from_content_view_version_id].blank?
29
29
 
30
- export_metadata = ::Katello::Pulp3::ContentViewVersion::Export.new(
30
+ export_metadata = ::Katello::Pulp3::ContentViewVersion::Export.create(
31
31
  content_view_version: cvv,
32
32
  smart_proxy: smart_proxy,
33
+ format: ::Katello::Pulp3::ContentViewVersion::Export::IMPORTABLE,
33
34
  from_content_view_version: from_cvv).generate_metadata
34
35
 
35
36
  toc_path_info = output[:exported_file_checksum].find { |item| item.first.end_with?("toc.json") }
@@ -46,6 +47,7 @@ module Actions
46
47
  metadata: export_metadata)
47
48
  )
48
49
  output[:export_history_id] = history.id
50
+ output[:format] = ::Katello::Pulp3::ContentViewVersion::Export::IMPORTABLE
49
51
  end
50
52
 
51
53
  def humanized_name
@@ -6,13 +6,20 @@ module Actions
6
6
  param :smart_proxy_id, Integer
7
7
  param :content_view_version_id, Integer
8
8
  param :destination_server, String
9
+ param :format, String
10
+ param :base_path, String
11
+ param :repository_id, Integer
9
12
  end
10
13
 
11
14
  def run
12
15
  cvv = ::Katello::ContentViewVersion.find(input[:content_view_version_id])
13
- output[:exporter_data] = ::Katello::Pulp3::ContentViewVersion::Export.new(smart_proxy: smart_proxy,
16
+ repository = ::Katello::Repository.find(input[:repository_id]) unless input[:repository_id].blank?
17
+ output[:exporter_data] = ::Katello::Pulp3::ContentViewVersion::Export.create(smart_proxy: smart_proxy,
14
18
  content_view_version: cvv,
15
- destination_server: input[:destination_server]).create_exporter
19
+ destination_server: input[:destination_server],
20
+ format: input[:format],
21
+ base_path: input[:base_path],
22
+ repository: repository).create_exporter
16
23
  end
17
24
  end
18
25
  end
@@ -0,0 +1,45 @@
1
+ module Actions
2
+ module Pulp3
3
+ module ContentViewVersion
4
+ class CreateSyncableExportHistory < Actions::EntryAction
5
+ input_format do
6
+ param :smart_proxy_id, Integer
7
+ param :base_path, String
8
+ param :content_view_version_id, Integer
9
+ param :destination_server, String
10
+ end
11
+
12
+ output_format do
13
+ param :export_history_id, Integer
14
+ param :path, String
15
+ end
16
+
17
+ def run
18
+ smart_proxy = ::SmartProxy.unscoped.find(input[:smart_proxy_id])
19
+ output[:path] = input[:base_path]
20
+ cvv = ::Katello::ContentViewVersion.find(input[:content_view_version_id])
21
+ export_metadata = ::Katello::Pulp3::ContentViewVersion::Export.create(
22
+ content_view_version: cvv,
23
+ smart_proxy: smart_proxy,
24
+ format: input[:format]).generate_metadata
25
+
26
+ history = ::Katello::ContentViewVersionExportHistory.create!(
27
+ content_view_version_id: input[:content_view_version_id],
28
+ destination_server: input[:destination_server],
29
+ path: input[:base_path],
30
+ metadata: export_metadata,
31
+ audit_comment: ::Katello::ContentViewVersionExportHistory.generate_audit_comment(content_view_version: cvv,
32
+ user: User.current,
33
+ metadata: export_metadata)
34
+ )
35
+ output[:export_history_id] = history.id
36
+ output[:format] = ::Katello::Pulp3::ContentViewVersion::Export::SYNCABLE
37
+ end
38
+
39
+ def humanized_name
40
+ _("Create Syncable Export History")
41
+ end
42
+ end
43
+ end
44
+ end
45
+ end
@@ -5,10 +5,15 @@ module Actions
5
5
  input_format do
6
6
  param :smart_proxy_id, Integer
7
7
  param :exporter_data, Hash
8
+ param :format, String
9
+ param :repository_id, Integer
8
10
  end
9
11
 
10
12
  def invoke_external_task
11
- ::Katello::Pulp3::ContentViewVersion::Export.new(smart_proxy: smart_proxy).destroy_exporter(input[:exporter_data][:pulp_href])
13
+ repository = ::Katello::Repository.find(input[:repository_id]) unless input[:repository_id].blank?
14
+ ::Katello::Pulp3::ContentViewVersion::Export.create(smart_proxy: smart_proxy,
15
+ format: input[:format],
16
+ repository: repository).destroy_exporter(input[:exporter_data])
12
17
  end
13
18
  end
14
19
  end
@@ -7,16 +7,21 @@ module Actions
7
7
  param :from_content_view_version_id, Integer
8
8
  param :smart_proxy_id, Integer
9
9
  param :exporter_data, Hash
10
+ param :format, String
10
11
  param :chunk_size, Integer
12
+ param :repository_id, Integer
11
13
  end
12
14
 
13
15
  def invoke_external_task
16
+ repository = ::Katello::Repository.find(input[:repository_id]) unless input[:repository_id].blank?
14
17
  cvv = ::Katello::ContentViewVersion.find(input[:content_view_version_id])
15
18
  from_cvv = ::Katello::ContentViewVersion.find(input[:from_content_view_version_id]) unless input[:from_content_view_version_id].blank?
16
- ::Katello::Pulp3::ContentViewVersion::Export.new(smart_proxy: smart_proxy,
19
+ ::Katello::Pulp3::ContentViewVersion::Export.create(smart_proxy: smart_proxy,
17
20
  content_view_version: cvv,
18
- from_content_view_version: from_cvv)
19
- .create_export(input[:exporter_data][:pulp_href],
21
+ from_content_view_version: from_cvv,
22
+ format: input[:format],
23
+ repository: repository)
24
+ .create_export(input[:exporter_data],
20
25
  chunk_size: input[:chunk_size])
21
26
  end
22
27
  end
@@ -3,10 +3,10 @@ module Actions
3
3
  module Orchestration
4
4
  module AlternateContentSource
5
5
  class Create < Pulp3::Abstract
6
- def plan(acs, smart_proxy)
6
+ def plan(smart_proxy_acs)
7
7
  sequence do
8
- plan_action(Actions::Pulp3::AlternateContentSource::CreateRemote, acs, smart_proxy)
9
- plan_action(Actions::Pulp3::AlternateContentSource::Create, acs, smart_proxy)
8
+ plan_action(Actions::Pulp3::AlternateContentSource::CreateRemote, smart_proxy_acs)
9
+ plan_action(Actions::Pulp3::AlternateContentSource::Create, smart_proxy_acs)
10
10
  end
11
11
  end
12
12
  end
@@ -3,18 +3,17 @@ module Actions
3
3
  module Orchestration
4
4
  module AlternateContentSource
5
5
  class Delete < Pulp3::Abstract
6
- def plan(acs, smart_proxy)
6
+ def plan(smart_proxy_acs, options = {})
7
7
  sequence do
8
- plan_action(Actions::Pulp3::AlternateContentSource::Delete, acs, smart_proxy)
9
- plan_action(Actions::Pulp3::AlternateContentSource::DeleteRemote, acs, smart_proxy)
10
- plan_self(acs_id: acs.id, smart_proxy_id: smart_proxy.id)
8
+ plan_action(Actions::Pulp3::AlternateContentSource::Delete, smart_proxy_acs)
9
+ plan_action(Actions::Pulp3::AlternateContentSource::DeleteRemote, smart_proxy_acs, options)
10
+ plan_self(smart_proxy_id: smart_proxy_acs.smart_proxy_id, smart_proxy_acs_id: smart_proxy_acs.id)
11
11
  end
12
12
  end
13
13
 
14
14
  def finalize
15
- acs_id = input[:acs_id]
16
- smart_proxy_id = input[:smart_proxy_id]
17
- ::Katello::SmartProxyAlternateContentSource.find_by(alternate_content_source_id: acs_id, smart_proxy_id: smart_proxy_id).destroy
15
+ smart_proxy_acs_id = input[:smart_proxy_acs_id]
16
+ ::Katello::SmartProxyAlternateContentSource.find_by(id: smart_proxy_acs_id).destroy
18
17
  end
19
18
  end
20
19
  end
@@ -3,9 +3,9 @@ module Actions
3
3
  module Orchestration
4
4
  module AlternateContentSource
5
5
  class Refresh < Pulp3::Abstract
6
- def plan(acs, smart_proxy)
6
+ def plan(smart_proxy_acs)
7
7
  sequence do
8
- plan_action(Actions::Pulp3::AlternateContentSource::Refresh, acs, smart_proxy)
8
+ plan_action(Actions::Pulp3::AlternateContentSource::Refresh, smart_proxy_acs)
9
9
  end
10
10
  end
11
11
  end
@@ -0,0 +1,18 @@
1
+ module Actions
2
+ module Pulp3
3
+ module Orchestration
4
+ module AlternateContentSource
5
+ class RefreshRemote < Pulp3::AbstractAsyncTask
6
+ def plan(smart_proxy_acs)
7
+ plan_self(smart_proxy_acs_id: smart_proxy_acs.id, smart_proxy_id: smart_proxy_acs.smart_proxy_id)
8
+ end
9
+
10
+ def invoke_external_task
11
+ smart_proxy_acs = ::Katello::SmartProxyAlternateContentSource.find(input[:smart_proxy_acs_id])
12
+ smart_proxy_acs.backend_service.update_remote
13
+ end
14
+ end
15
+ end
16
+ end
17
+ end
18
+ end
@@ -3,10 +3,10 @@ module Actions
3
3
  module Orchestration
4
4
  module AlternateContentSource
5
5
  class Update < Pulp3::Abstract
6
- def plan(acs, smart_proxy)
6
+ def plan(smart_proxy_acs)
7
7
  sequence do
8
- plan_action(Actions::Pulp3::AlternateContentSource::UpdateRemote, acs, smart_proxy)
9
- plan_action(Actions::Pulp3::AlternateContentSource::Update, acs, smart_proxy)
8
+ plan_action(Actions::Pulp3::AlternateContentSource::UpdateRemote, smart_proxy_acs)
9
+ plan_action(Actions::Pulp3::AlternateContentSource::Update, smart_proxy_acs)
10
10
  end
11
11
  end
12
12
  end
@@ -10,6 +10,7 @@ module Actions
10
10
  param :export_history_id, Integer
11
11
  param :exporter_data, Hash
12
12
  param :destination_server, String
13
+ param :format, String
13
14
  end
14
15
 
15
16
  output_format do
@@ -19,16 +20,30 @@ module Actions
19
20
  def plan(content_view_version:, destination_server: nil,
20
21
  chunk_size: nil, from_history: nil,
21
22
  validate_incremental: true,
22
- fail_on_missing_content: false)
23
+ fail_on_missing_content: false,
24
+ format: ::Katello::Pulp3::ContentViewVersion::Export::IMPORTABLE)
25
+ smart_proxy = SmartProxy.pulp_primary!
26
+
27
+ if format == ::Katello::Pulp3::ContentViewVersion::Export::SYNCABLE
28
+ sequence do
29
+ export_output = plan_action(SyncableExport,
30
+ content_view_version: content_view_version,
31
+ smart_proxy: smart_proxy,
32
+ destination_server: destination_server).output
33
+ plan_self(export_history_id: export_output[:export_history_id],
34
+ export_path: export_output[:export_path])
35
+ end
36
+ return
37
+ end
23
38
 
24
39
  sequence do
25
- smart_proxy = SmartProxy.pulp_primary!
26
40
  from_content_view_version = from_history&.content_view_version
27
- export_service = ::Katello::Pulp3::ContentViewVersion::Export.new(
41
+ export_service = ::Katello::Pulp3::ContentViewVersion::Export.create(
28
42
  smart_proxy: smart_proxy,
29
43
  content_view_version: content_view_version,
30
44
  destination_server: destination_server,
31
- from_content_view_version: from_content_view_version)
45
+ from_content_view_version: from_content_view_version,
46
+ format: format)
32
47
  export_service.validate!(fail_on_missing_content: fail_on_missing_content,
33
48
  validate_incremental: validate_incremental,
34
49
  chunk_size: chunk_size)
@@ -36,14 +51,16 @@ module Actions
36
51
  action_output = plan_action(::Actions::Pulp3::ContentViewVersion::CreateExporter,
37
52
  content_view_version_id: content_view_version.id,
38
53
  smart_proxy_id: smart_proxy.id,
39
- destination_server: destination_server).output
54
+ destination_server: destination_server,
55
+ format: format).output
40
56
 
41
57
  plan_action(::Actions::Pulp3::ContentViewVersion::Export,
42
58
  content_view_version_id: content_view_version.id,
43
59
  smart_proxy_id: smart_proxy.id,
44
60
  exporter_data: action_output[:exporter_data],
45
61
  chunk_size: chunk_size,
46
- from_content_view_version_id: from_content_view_version&.id)
62
+ from_content_view_version_id: from_content_view_version&.id,
63
+ format: format)
47
64
 
48
65
  history_output = plan_action(
49
66
  ::Actions::Pulp3::ContentViewVersion::CreateExportHistory,
@@ -52,18 +69,16 @@ module Actions
52
69
  pulp_href: action_output[:exporter_data][:pulp_href],
53
70
  content_view_version_id: content_view_version.id,
54
71
  from_content_view_version_id: from_content_view_version&.id,
55
- destination_server: destination_server
72
+ destination_server: destination_server,
73
+ format: format
56
74
  ).output
57
75
 
58
76
  plan_action(::Actions::Pulp3::ContentViewVersion::DestroyExporter,
59
77
  smart_proxy_id: smart_proxy.id,
60
- exporter_data: action_output[:exporter_data])
78
+ exporter_data: action_output[:exporter_data],
79
+ format: format)
61
80
 
62
- plan_self(exporter_data: action_output[:exporter_data], smart_proxy_id: smart_proxy.id,
63
- destination_server: destination_server,
64
- content_view_version_id: content_view_version.id,
65
- from_content_view_version_id: from_content_view_version&.id,
66
- export_history_id: history_output[:export_history_id],
81
+ plan_self(export_history_id: history_output[:export_history_id],
67
82
  exported_file_checksum: history_output[:exported_file_checksum],
68
83
  export_path: history_output[:path])
69
84
  end
@@ -6,7 +6,8 @@ module Actions
6
6
  def plan(organization, destination_server: nil,
7
7
  chunk_size: nil,
8
8
  from_history: nil,
9
- fail_on_missing_content: false)
9
+ fail_on_missing_content: false,
10
+ format: ::Katello::Pulp3::ContentViewVersion::Export::IMPORTABLE)
10
11
  action_subject(organization)
11
12
  validate_repositories_immediate!(organization) if fail_on_missing_content
12
13
 
@@ -24,7 +25,8 @@ module Actions
24
25
  chunk_size: chunk_size,
25
26
  from_history: from_history,
26
27
  validate_incremental: false,
27
- fail_on_missing_content: fail_on_missing_content)
28
+ fail_on_missing_content: fail_on_missing_content,
29
+ format: format)
28
30
  plan_self(export_action_output: export_action.output)
29
31
  end
30
32
  end
@@ -5,7 +5,8 @@ module Actions
5
5
  class ExportRepository < Actions::EntryAction
6
6
  def plan(repository,
7
7
  chunk_size: nil,
8
- from_history: nil)
8
+ from_history: nil,
9
+ format: ::Katello::Pulp3::ContentViewVersion::Export::IMPORTABLE)
9
10
  action_subject(repository)
10
11
  validate_repositories_immediate!(repository)
11
12
 
@@ -19,7 +20,8 @@ module Actions
19
20
  export_action = plan_action(Actions::Katello::ContentViewVersion::Export,
20
21
  content_view_version: publish_action.version,
21
22
  chunk_size: chunk_size,
22
- from_history: from_history)
23
+ from_history: from_history,
24
+ format: format)
23
25
  plan_self(export_action_output: export_action.output)
24
26
  end
25
27
  end
@@ -0,0 +1,82 @@
1
+ module Actions
2
+ module Pulp3
3
+ module Orchestration
4
+ module ContentViewVersion
5
+ class SyncableExport < Actions::EntryAction
6
+ input_format do
7
+ param :smart_proxy_id, Integer
8
+ param :content_view_version_id, Integer
9
+ param :export_history_id, Integer
10
+ param :export_path, String
11
+ end
12
+
13
+ output_format do
14
+ param :export_path, String
15
+ param :export_history_id, Integer
16
+ end
17
+
18
+ def plan(content_view_version:,
19
+ smart_proxy:,
20
+ fail_on_missing_content: false,
21
+ destination_server:)
22
+ format = ::Katello::Pulp3::ContentViewVersion::Export::SYNCABLE
23
+ sequence do
24
+ export_service = ::Katello::Pulp3::ContentViewVersion::Export.create(
25
+ smart_proxy: smart_proxy,
26
+ content_view_version: content_view_version,
27
+ format: format,
28
+ destination_server: destination_server)
29
+ export_service.validate!(fail_on_missing_content: fail_on_missing_content)
30
+ base_path = export_service.generate_exporter_path
31
+ export_service.repositories.each do |repository|
32
+ action_output = plan_action(::Actions::Pulp3::ContentViewVersion::CreateExporter,
33
+ content_view_version_id: content_view_version.id,
34
+ smart_proxy_id: smart_proxy.id,
35
+ format: format,
36
+ base_path: base_path,
37
+ repository_id: repository.id,
38
+ destination_server: destination_server).output
39
+
40
+ plan_action(::Actions::Pulp3::ContentViewVersion::Export,
41
+ content_view_version_id: content_view_version.id,
42
+ smart_proxy_id: smart_proxy.id,
43
+ exporter_data: action_output[:exporter_data],
44
+ format: format,
45
+ repository_id: repository.id)
46
+
47
+ plan_action(::Actions::Pulp3::ContentViewVersion::DestroyExporter,
48
+ smart_proxy_id: smart_proxy.id,
49
+ exporter_data: action_output[:exporter_data],
50
+ format: format,
51
+ repository_id: repository.id)
52
+ end
53
+
54
+ history_output = plan_action(
55
+ ::Actions::Pulp3::ContentViewVersion::CreateSyncableExportHistory,
56
+ smart_proxy_id: smart_proxy.id,
57
+ content_view_version_id: content_view_version.id,
58
+ destination_server: destination_server,
59
+ format: format,
60
+ base_path: base_path
61
+ ).output
62
+
63
+ plan_self(export_history_id: history_output[:export_history_id],
64
+ export_path: base_path)
65
+ end
66
+ end
67
+
68
+ def run
69
+ output.update(
70
+ export_history_id: input[:export_history_id],
71
+ export_path: input[:export_path]
72
+ )
73
+ end
74
+
75
+ def rescue_strategy
76
+ Dynflow::Action::Rescue::Skip
77
+ end
78
+ end
79
+ end
80
+ end
81
+ end
82
+ end
@@ -16,7 +16,7 @@ module Actions
16
16
  plan_action(Actions::Pulp3::Repository::CreatePublication, repository, smart_proxy, options)
17
17
  end
18
18
  plan_action(Actions::Pulp3::ContentGuard::Refresh, smart_proxy) unless repository.unprotected
19
- plan_action(Actions::Pulp3::Repository::RefreshDistribution, repository, smart_proxy, :contents_changed => options[:contents_changed]) if repository.environment
19
+ plan_action(Actions::Pulp3::Repository::RefreshDistribution, repository, smart_proxy, :contents_changed => options[:contents_changed]) if Setting[:distribute_archived_cvv] || repository.environment
20
20
  end
21
21
  end
22
22
 
@@ -161,7 +161,7 @@ module Katello
161
161
  returns String, desc: 'Package version'
162
162
  end
163
163
  def host_latest_applicable_rpm_version(host, package)
164
- host.applicable_rpms.where(name: package).order(:version_sortable).limit(1).pluck(:nvra).first
164
+ ::Katello::Rpm.latest(host.applicable_rpms.where(name: package)).first.nvra
165
165
  end
166
166
 
167
167
  apipie :method, 'Loads Pool objects' do
@@ -154,7 +154,7 @@ module Katello
154
154
 
155
155
  class NoManifestImported < StandardError
156
156
  def message
157
- _("Current organization has no manifest imported.")
157
+ _("Current organization does not have a manifest imported.")
158
158
  end
159
159
  end
160
160
 
@@ -12,8 +12,14 @@ module Katello
12
12
 
13
13
  # Set the contentPrefix at creation time so that the client will get
14
14
  # content only for the org it has been subscribed to
15
- def create(key, description)
16
- attrs = {:key => key, :displayName => description, :contentPrefix => "/#{key}/$env"}
15
+ def create(key, description, content_access_mode: 'org_environment')
16
+ attrs = {
17
+ :key => key,
18
+ :displayName => description,
19
+ :contentPrefix => "/#{key}/$env",
20
+ :contentAccessMode => content_access_mode,
21
+ :contentAccessModeList => ['entitlement', 'org_environment'].join(',')
22
+ }
17
23
  owner_json = self.post(path, attrs.to_json, self.default_headers).body
18
24
  JSON.parse(owner_json).with_indifferent_access
19
25
  end
@@ -36,6 +42,7 @@ module Katello
36
42
  def update(key, attrs)
37
43
  owner = find(key)
38
44
  owner.merge!(attrs)
45
+ owner.merge!(:contentAccessModeList => ['entitlement', 'org_environment'].join(','))
39
46
  self.put(path(key), JSON.generate(owner), self.default_headers).body
40
47
  end
41
48
 
@@ -0,0 +1,17 @@
1
+ module Katello
2
+ module Validators
3
+ class AlternateContentSourceProductsValidator < ActiveModel::EachValidator
4
+ def validate_each(record, attribute, value)
5
+ if value
6
+ if attribute == :product_id
7
+ product = ::Katello::Product.find(value)
8
+ content_type = record.alternate_content_source.content_type
9
+ if product.repositories.with_type(content_type).has_url.empty?
10
+ record.errors[attribute] << N_("The product %{name} has no %{type} repositories with upstream URLs to add to the alternate content source.") % { name: product.name, type: content_type }
11
+ end
12
+ end
13
+ end
14
+ end
15
+ end
16
+ end
17
+ end
@@ -1,5 +1,7 @@
1
1
  module Katello
2
2
  class AlternateContentSource < Katello::Model
3
+ audited
4
+
3
5
  include Ext::LabelFromName
4
6
  include Encryptable
5
7
  include ::ScopedSearchExtensions
@@ -8,9 +10,9 @@ module Katello
8
10
 
9
11
  self.table_name = :katello_alternate_content_sources
10
12
 
11
- # TODO: simplified, rhui
12
- ACS_TYPES = %w(custom).freeze
13
+ ACS_TYPES = %w(custom simplified).freeze
13
14
  CONTENT_TYPES = [::Katello::Repository::YUM_TYPE, ::Katello::Repository::FILE_TYPE].freeze
15
+ AUDIT_REFRESH_ACTION = 'refresh'.freeze
14
16
 
15
17
  encrypts :upstream_password
16
18
 
@@ -18,18 +20,27 @@ module Katello
18
20
  belongs_to :ssl_client_cert, inverse_of: :ssl_client_alternate_content_sources, class_name: "Katello::ContentCredential"
19
21
  belongs_to :ssl_client_key, inverse_of: :ssl_key_alternate_content_sources, class_name: "Katello::ContentCredential"
20
22
  belongs_to :http_proxy, inverse_of: :alternate_content_sources
21
- has_many :smart_proxy_alternate_content_sources, dependent: :destroy,
23
+
24
+ has_many :alternate_content_source_products, dependent: :delete_all, inverse_of: :alternate_content_source,
25
+ class_name: "Katello::AlternateContentSourceProduct"
26
+ has_many :products, through: :alternate_content_source_products, inverse_of: :alternate_content_sources,
27
+ class_name: "Katello::Product"
28
+
29
+ has_many :smart_proxy_alternate_content_sources, dependent: :delete_all,
22
30
  inverse_of: :alternate_content_source
23
- has_many :smart_proxies, through: :smart_proxy_alternate_content_sources
31
+ has_many :smart_proxies, -> { distinct }, through: :smart_proxy_alternate_content_sources
24
32
 
33
+ validates :base_url, :subpaths, :verify_ssl, :upstream_username,
34
+ :upstream_password, :ssl_ca_cert, :ssl_client_cert, :ssl_client_key, if: :simplified?, absence: true
25
35
  validates :base_url, if: :custom?, presence: true
36
+ validates :products, if: :custom?, absence: true
26
37
  validates :verify_ssl, if: :custom?, exclusion: [nil]
27
38
  validates :alternate_content_source_type, inclusion: {
28
39
  in: ->(_) { ACS_TYPES },
29
40
  allow_blank: false,
30
41
  message: ->(_, _) { _("is not a valid type. Must be one of the following: %s") % ACS_TYPES.join(',') }
31
42
  }
32
- validates :content_type, if: :custom?, inclusion: {
43
+ validates :content_type, inclusion: {
33
44
  in: ->(_) { RepositoryTypeManager.defined_repository_types.keys & CONTENT_TYPES },
34
45
  allow_blank: false,
35
46
  message: ->(_, _) { _("is not allowed for ACS. Must be one of the following: %s") % (RepositoryTypeManager.defined_repository_types.keys & CONTENT_TYPES).join(',') }
@@ -44,16 +55,28 @@ module Katello
44
55
  scoped_search on: :content_type, complete_value: true
45
56
  scoped_search on: :alternate_content_source_type, complete_value: true
46
57
  scoped_search on: :upstream_username, complete_value: true
47
- scoped_search on: :smart_proxy_id, relation: :smart_proxy_alternate_content_sources, validator: ScopedSearch::Validators::INTEGER, only_explicit: true
58
+ scoped_search on: :id, relation: :smart_proxies, rename: :smart_proxy_id, validator: ScopedSearch::Validators::INTEGER, only_explicit: true
59
+ scoped_search on: :name, relation: :smart_proxies, rename: :smart_proxy_name, complete_value: true
60
+ scoped_search on: :id, relation: :products, rename: :product_id, validator: ScopedSearch::Validators::INTEGER, only_explicit: true
61
+ scoped_search on: :name, relation: :products, rename: :product_name, complete_value: true
48
62
 
49
- def backend_service(smart_proxy)
50
- @service ||= ::Katello::Pulp3::AlternateContentSource.new(self, smart_proxy)
63
+ def backend_service(smart_proxy, repository = nil)
64
+ @service ||= ::Katello::Pulp3::AlternateContentSource.new(self, smart_proxy, repository)
51
65
  end
52
66
 
53
67
  def custom?
54
68
  alternate_content_source_type == 'custom'
55
69
  end
56
70
 
71
+ def simplified?
72
+ alternate_content_source_type == 'simplified'
73
+ end
74
+
75
+ def self.with_products(products)
76
+ products = [products] unless products.is_a?(Array)
77
+ joins(:alternate_content_source_products).where('katello_alternate_content_source_products.product_id in (:product_ids)', product_ids: products.pluck(:id))
78
+ end
79
+
57
80
  def self.with_type(content_type)
58
81
  where(content_type: content_type)
59
82
  end
@@ -67,5 +90,13 @@ module Katello
67
90
  @latest_dynflow_refresh_task ||= ForemanTasks::Task::DynflowTask.where(:label => Actions::Katello::AlternateContentSource::Refresh.name).
68
91
  for_resource(self).order(:started_at).last
69
92
  end
93
+
94
+ def audit_refresh
95
+ write_audit(action: AUDIT_REFRESH_ACTION, comment: _('Successfully refreshed.'), audited_changes: {})
96
+ end
97
+
98
+ def audit_updated_products(old_product_ids)
99
+ write_audit(action: 'update', comment: _('Products updated.'), audited_changes: { 'product_ids' => [old_product_ids, product_ids] })
100
+ end
70
101
  end
71
102
  end
@@ -0,0 +1,13 @@
1
+ module Katello
2
+ class AlternateContentSourceProduct < Katello::Model
3
+ audited
4
+ # Do not use active record callbacks in this join model. Direct INSERTs and DELETEs are done
5
+ self.table_name = :katello_alternate_content_source_products
6
+ belongs_to :alternate_content_source, inverse_of: :alternate_content_source_products, class_name: 'Katello::AlternateContentSource'
7
+ belongs_to :product, inverse_of: :alternate_content_source_products, class_name: 'Katello::Product'
8
+ delegate :custom?, to: :alternate_content_source
9
+ delegate :simplified?, to: :alternate_content_source
10
+
11
+ validates_with Validators::AlternateContentSourceProductsValidator, :attributes => [:product_id], if: :simplified?
12
+ end
13
+ end