katello 4.4.2.2 → 4.5.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 (444) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +5 -1
  3. data/app/controllers/katello/api/v2/alternate_content_sources_controller.rb +98 -0
  4. data/app/controllers/katello/api/v2/content_export_incrementals_controller.rb +39 -3
  5. data/app/controllers/katello/api/v2/content_exports_controller.rb +19 -0
  6. data/app/controllers/katello/api/v2/content_imports_controller.rb +13 -16
  7. data/app/controllers/katello/api/v2/content_view_versions_controller.rb +0 -12
  8. data/app/controllers/katello/api/v2/content_views_controller.rb +13 -0
  9. data/app/controllers/katello/api/v2/environments_controller.rb +1 -1
  10. data/app/controllers/katello/api/v2/host_module_streams_controller.rb +8 -2
  11. data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +25 -3
  12. data/app/controllers/katello/api/v2/organizations_controller.rb +4 -2
  13. data/app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb +1 -1
  14. data/app/controllers/katello/api/v2/repositories_controller.rb +9 -3
  15. data/app/controllers/katello/api/v2/repository_sets_controller.rb +40 -7
  16. data/app/controllers/katello/api/v2/subscriptions_controller.rb +2 -2
  17. data/app/controllers/katello/concerns/api/v2/hosts_controller_extensions.rb +1 -1
  18. data/app/helpers/katello/concerns/smart_proxy_helper_extensions.rb +4 -0
  19. data/app/helpers/katello/hosts_and_hostgroups_helper.rb +21 -3
  20. data/app/lib/actions/katello/alternate_content_source/create.rb +24 -0
  21. data/app/lib/actions/katello/alternate_content_source/destroy.rb +27 -0
  22. data/app/lib/actions/katello/alternate_content_source/update.rb +41 -0
  23. data/app/lib/actions/katello/cdn_configuration/update.rb +2 -2
  24. data/app/lib/actions/katello/content_view/destroy.rb +2 -1
  25. data/app/lib/actions/katello/content_view/incremental_updates.rb +7 -3
  26. data/app/lib/actions/katello/content_view/publish.rb +7 -9
  27. data/app/lib/actions/katello/content_view_version/auto_create_products.rb +4 -4
  28. data/app/lib/actions/katello/content_view_version/auto_create_redhat_repositories.rb +6 -4
  29. data/app/lib/actions/katello/content_view_version/auto_create_repositories.rb +6 -4
  30. data/app/lib/actions/katello/content_view_version/import.rb +25 -22
  31. data/app/lib/actions/katello/content_view_version/import_library.rb +0 -1
  32. data/app/lib/actions/katello/content_view_version/import_repository.rb +21 -0
  33. data/app/lib/actions/katello/content_view_version/incremental_update.rb +85 -93
  34. data/app/lib/actions/katello/content_view_version/reset_content_view_repositories_from_metadata.rb +2 -2
  35. data/app/lib/actions/katello/product/content_create.rb +10 -8
  36. data/app/lib/actions/katello/repository/destroy.rb +36 -12
  37. data/app/lib/actions/katello/repository_set/disable_repository.rb +8 -3
  38. data/app/lib/actions/pulp3/alternate_content_source/create.rb +20 -0
  39. data/app/lib/actions/pulp3/alternate_content_source/create_remote.rb +20 -0
  40. data/app/lib/actions/pulp3/alternate_content_source/delete.rb +16 -0
  41. data/app/lib/actions/pulp3/alternate_content_source/delete_remote.rb +16 -0
  42. data/app/lib/actions/pulp3/alternate_content_source/update.rb +16 -0
  43. data/app/lib/actions/pulp3/alternate_content_source/update_remote.rb +17 -0
  44. data/app/lib/actions/pulp3/content_view_version/{import.rb → create_import.rb} +5 -5
  45. data/app/lib/actions/pulp3/content_view_version/create_importer.rb +4 -3
  46. data/app/lib/actions/pulp3/content_view_version/destroy_importer.rb +12 -1
  47. data/app/lib/actions/pulp3/orchestration/alternate_content_source/create.rb +18 -0
  48. data/app/lib/actions/pulp3/orchestration/alternate_content_source/delete.rb +23 -0
  49. data/app/lib/actions/pulp3/orchestration/alternate_content_source/update.rb +18 -0
  50. data/app/lib/actions/pulp3/orchestration/content_view_version/copy_version_units_to_library.rb +1 -1
  51. data/app/lib/actions/pulp3/orchestration/content_view_version/export_repository.rb +51 -0
  52. data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +5 -2
  53. data/app/lib/actions/pulp3/repository/refresh_distribution.rb +4 -1
  54. data/app/lib/actions/pulp3/repository/save_distribution_references.rb +2 -0
  55. data/app/lib/katello/api/v2/error_handling.rb +1 -0
  56. data/app/lib/katello/resources/cdn/katello_cdn.rb +3 -1
  57. data/app/lib/katello/util/errata.rb +2 -3
  58. data/app/lib/katello/validators/alternate_content_source_path_validator.rb +29 -0
  59. data/app/lib/katello/validators/content_default_http_proxy_setting_validator.rb +12 -0
  60. data/app/lib/katello/validators/content_view_environment_validator.rb +10 -5
  61. data/app/models/katello/alternate_content_source.rb +66 -0
  62. data/app/models/katello/authorization/alternate_content_source.rb +33 -0
  63. data/app/models/katello/authorization/repository.rb +3 -3
  64. data/app/models/katello/candlepin/repository_mapper.rb +13 -6
  65. data/app/models/katello/cdn_configuration.rb +15 -15
  66. data/app/models/katello/concerns/content_facet_host_extensions.rb +25 -0
  67. data/app/models/katello/concerns/host_managed_extensions.rb +7 -5
  68. data/app/models/katello/concerns/http_proxy_extensions.rb +14 -0
  69. data/app/models/katello/concerns/organization_extensions.rb +4 -2
  70. data/app/models/katello/concerns/setting_extensions.rb +14 -0
  71. data/app/models/katello/concerns/smart_proxy_extensions.rb +2 -1
  72. data/app/models/katello/content.rb +1 -0
  73. data/app/models/katello/content_credential.rb +6 -0
  74. data/app/models/katello/content_override.rb +7 -3
  75. data/app/models/katello/content_view.rb +33 -2
  76. data/app/models/katello/content_view_erratum_filter.rb +26 -12
  77. data/app/models/katello/content_view_filter.rb +4 -0
  78. data/app/models/katello/content_view_version.rb +12 -0
  79. data/app/models/katello/content_view_version_export_history.rb +3 -1
  80. data/app/models/katello/erratum.rb +9 -5
  81. data/app/models/katello/events/delete_latest_content_view_version.rb +40 -0
  82. data/app/models/katello/host/content_facet.rb +14 -0
  83. data/app/models/katello/host_available_module_stream.rb +12 -0
  84. data/app/models/katello/product_content.rb +1 -0
  85. data/app/models/katello/purpose_sla_status.rb +1 -1
  86. data/app/models/katello/purpose_status.rb +2 -2
  87. data/app/models/katello/repository.rb +7 -4
  88. data/app/models/katello/root_repository.rb +1 -1
  89. data/app/models/katello/smart_proxy_alternate_content_source.rb +8 -0
  90. data/app/models/katello/sync_plan.rb +1 -1
  91. data/app/presenters/katello/product_content_presenter.rb +15 -0
  92. data/app/services/katello/applicable_host_queue.rb +1 -1
  93. data/app/services/katello/content_unit_indexer.rb +2 -1
  94. data/app/services/katello/product_content_finder.rb +12 -2
  95. data/app/services/katello/pulp3/alternate_content_source.rb +117 -0
  96. data/app/services/katello/pulp3/api/file.rb +8 -0
  97. data/app/services/katello/pulp3/api/yum.rb +8 -0
  98. data/app/services/katello/pulp3/content_view_version/export.rb +27 -5
  99. data/app/services/katello/pulp3/content_view_version/import.rb +97 -71
  100. data/app/services/katello/pulp3/content_view_version/import_export_common.rb +4 -4
  101. data/app/services/katello/pulp3/content_view_version/import_gpg_keys.rb +13 -11
  102. data/app/services/katello/pulp3/content_view_version/import_validator.rb +67 -72
  103. data/app/services/katello/pulp3/content_view_version/importable_products.rb +40 -24
  104. data/app/services/katello/pulp3/content_view_version/importable_repositories.rb +88 -39
  105. data/app/services/katello/pulp3/content_view_version/metadata_generator.rb +2 -2
  106. data/app/services/katello/pulp3/content_view_version/metadata_map.rb +117 -0
  107. data/app/services/katello/pulp3/pulp_content_unit.rb +6 -1
  108. data/app/services/katello/pulp3/repository/yum.rb +70 -12
  109. data/app/services/katello/pulp3/repository.rb +7 -91
  110. data/app/services/katello/pulp3/service_common.rb +66 -0
  111. data/app/services/katello/pulp3/smart_proxy_mirror_repository.rb +4 -1
  112. data/app/services/katello/ui_notifications/content_view/delete_latest_version_failure.rb +22 -0
  113. data/app/views/foreman/job_templates/change_content_source.erb +1 -1
  114. data/app/views/foreman/job_templates/install_errata.erb +5 -5
  115. data/app/views/foreman/job_templates/install_errata_by_search_query.erb +7 -6
  116. data/app/views/foreman/job_templates/install_group.erb +4 -4
  117. data/app/views/foreman/job_templates/install_package.erb +4 -4
  118. data/app/views/foreman/job_templates/install_packages_by_search_query.erb +3 -3
  119. data/app/views/foreman/job_templates/remove_group.erb +4 -4
  120. data/app/views/foreman/job_templates/remove_package.erb +4 -4
  121. data/app/views/foreman/job_templates/remove_packages_by_search_query.erb +3 -3
  122. data/app/views/foreman/job_templates/resolve_traces.erb +2 -2
  123. data/app/views/foreman/job_templates/restart_services.erb +3 -3
  124. data/app/views/foreman/job_templates/update_group.erb +4 -4
  125. data/app/views/foreman/job_templates/update_package.erb +4 -4
  126. data/app/views/foreman/job_templates/update_packages_by_search_query.erb +3 -3
  127. data/app/views/katello/api/v2/alternate_content_sources/base.json.rabl +15 -0
  128. data/app/views/katello/api/v2/alternate_content_sources/index.json.rabl +7 -0
  129. data/app/views/katello/api/v2/alternate_content_sources/show.json.rabl +3 -0
  130. data/app/views/katello/api/v2/capsule_content/sync_status.json.rabl +1 -1
  131. data/app/views/katello/api/v2/content_view_version_export_histories/show.json.rabl +2 -3
  132. data/app/views/katello/api/v2/content_view_versions/base.json.rabl +1 -1
  133. data/app/views/katello/api/v2/content_views/base.json.rabl +1 -0
  134. data/app/views/katello/api/v2/environments/show.json.rabl +2 -0
  135. data/app/views/katello/api/v2/errata/_counts.json.rabl +2 -2
  136. data/app/views/katello/api/v2/host_module_streams/base.json.rabl +2 -2
  137. data/app/views/katello/api/v2/hosts/host_collections.json.rabl +1 -1
  138. data/app/views/katello/api/v2/organizations/show.json.rabl +7 -1
  139. data/app/views/katello/api/v2/repositories/show.json.rabl +2 -1
  140. data/app/views/katello/sync_management/_repo.html.erb +8 -29
  141. data/config/routes/api/v2.rb +7 -0
  142. data/db/migrate/20150930183738_migrate_content_hosts.rb +0 -399
  143. data/db/migrate/20171025163149_remove_use_pulp_oauth_setting.rb +1 -1
  144. data/db/migrate/20171114150937_cleanup_installed_packages.rb +1 -1
  145. data/db/migrate/20180402160223_clean_up_force_post_sync_action_setting.rb +1 -1
  146. data/db/migrate/20211129200124_remove_dependency_solving_algorithm_setting.rb +1 -1
  147. data/db/migrate/20211220185935_clean_duplicate_content_units.rb +10 -12
  148. data/db/migrate/20220110223754_update_disconnected_settings.rb +5 -5
  149. data/db/migrate/20220117151612_add_alternate_content_sources.rb +48 -0
  150. data/db/migrate/20220124191056_add_type_to_cdn_configuration.rb +9 -4
  151. data/db/migrate/20220209203251_add_generated_for_to_content_views.rb +13 -0
  152. data/db/migrate/20220209205137_expand_sync_timeout_settings.rb +7 -7
  153. data/db/migrate/20220228173251_remove_drpm_from_ignorable_content.rb +12 -0
  154. data/db/migrate/20220404190836_delete_old_setting_data.rb +9 -0
  155. data/db/migrate/20220405220616_update_cdn_configuration_type.rb +11 -0
  156. data/db/migrate/20220419193414_content_settings_to_dsl_category.rb +5 -0
  157. data/db/seeds.d/110-content-view-autopublish.rb +13 -0
  158. data/db/seeds.d/150-module_job_templates.rb +1 -1
  159. data/engines/bastion/README.md +1 -0
  160. data/engines/bastion/app/assets/javascripts/bastion/components/bst-modal.directive.js +1 -0
  161. data/engines/bastion/app/views/bastion/layouts/assets.html.erb +1 -0
  162. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-details.controller.js +4 -2
  163. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/capsule-content/capsule-content.controller.js +10 -5
  164. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-module-streams.controller.js +1 -0
  165. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-packages-installed.controller.js +1 -0
  166. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-traces.controller.js +1 -0
  167. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-actions.html +1 -1
  168. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-applicable.html +1 -1
  169. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +8 -0
  170. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-details.controller.js +4 -2
  171. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +2 -2
  172. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/content.service.js +10 -0
  173. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-deb-repositories.html +26 -0
  174. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-debs.html +27 -0
  175. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.controller.js +1 -0
  176. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.routes.js +22 -0
  177. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/views/environments.html +13 -7
  178. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +63 -17
  179. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +7 -8
  180. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +10 -1
  181. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html +21 -3
  182. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +8 -9
  183. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js +7 -5
  184. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +2 -1
  185. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/discovery-create.controller.js +1 -1
  186. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/views/discovery-create.html +1 -1
  187. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/products.routes.js +1 -0
  188. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/content-access-mode-banner.html +6 -1
  189. data/lib/katello/engine.rb +1 -5
  190. data/lib/katello/permission_creator.rb +32 -4
  191. data/lib/katello/plugin.rb +378 -4
  192. data/lib/katello/tasks/reset.rake.bak +67 -0
  193. data/lib/katello/tasks/update_content_default_http_proxy.rake +2 -3
  194. data/lib/katello/version.rb +1 -1
  195. data/locale/action_names.rb +47 -41
  196. data/locale/bn/LC_MESSAGES/katello.mo +0 -0
  197. data/locale/bn/katello.po +820 -106
  198. data/locale/bn/katello.po.time_stamp +0 -0
  199. data/locale/cs/LC_MESSAGES/katello.mo +0 -0
  200. data/locale/cs/katello.po +818 -104
  201. data/locale/cs/katello.po.time_stamp +0 -0
  202. data/locale/de/LC_MESSAGES/katello.mo +0 -0
  203. data/locale/de/katello.po +893 -179
  204. data/locale/de/katello.po.time_stamp +0 -0
  205. data/locale/en/LC_MESSAGES/katello.mo +0 -0
  206. data/locale/en/katello.po +817 -103
  207. data/locale/en/katello.po.time_stamp +0 -0
  208. data/locale/es/LC_MESSAGES/katello.mo +0 -0
  209. data/locale/es/katello.po +882 -168
  210. data/locale/es/katello.po.time_stamp +0 -0
  211. data/locale/fr/LC_MESSAGES/katello.mo +0 -0
  212. data/locale/fr/katello.po +1219 -505
  213. data/locale/fr/katello.po.time_stamp +0 -0
  214. data/locale/gu/LC_MESSAGES/katello.mo +0 -0
  215. data/locale/gu/katello.po +826 -112
  216. data/locale/gu/katello.po.time_stamp +0 -0
  217. data/locale/hi/LC_MESSAGES/katello.mo +0 -0
  218. data/locale/hi/katello.po +826 -112
  219. data/locale/hi/katello.po.time_stamp +0 -0
  220. data/locale/it/LC_MESSAGES/katello.mo +0 -0
  221. data/locale/it/katello.po +863 -148
  222. data/locale/it/katello.po.time_stamp +0 -0
  223. data/locale/ja/LC_MESSAGES/katello.mo +0 -0
  224. data/locale/ja/katello.po +1216 -499
  225. data/locale/ja/katello.po.time_stamp +0 -0
  226. data/locale/katello.pot +3847 -2507
  227. data/locale/kn/LC_MESSAGES/katello.mo +0 -0
  228. data/locale/kn/katello.po +826 -112
  229. data/locale/kn/katello.po.time_stamp +0 -0
  230. data/locale/ko/LC_MESSAGES/katello.mo +0 -0
  231. data/locale/ko/katello.po +912 -198
  232. data/locale/ko/katello.po.time_stamp +0 -0
  233. data/locale/mr/LC_MESSAGES/katello.mo +0 -0
  234. data/locale/mr/katello.po +826 -112
  235. data/locale/mr/katello.po.time_stamp +0 -0
  236. data/locale/or/LC_MESSAGES/katello.mo +0 -0
  237. data/locale/or/katello.po +826 -112
  238. data/locale/or/katello.po.time_stamp +0 -0
  239. data/locale/pa/LC_MESSAGES/katello.mo +0 -0
  240. data/locale/pa/katello.po +826 -112
  241. data/locale/pa/katello.po.time_stamp +0 -0
  242. data/locale/pt/LC_MESSAGES/katello.mo +0 -0
  243. data/locale/pt/katello.po +817 -103
  244. data/locale/pt/katello.po.time_stamp +0 -0
  245. data/locale/pt_BR/LC_MESSAGES/katello.mo +0 -0
  246. data/locale/pt_BR/katello.po +879 -165
  247. data/locale/pt_BR/katello.po.time_stamp +0 -0
  248. data/locale/ru/LC_MESSAGES/katello.mo +0 -0
  249. data/locale/ru/katello.po +927 -213
  250. data/locale/ru/katello.po.time_stamp +0 -0
  251. data/locale/ta/LC_MESSAGES/katello.mo +0 -0
  252. data/locale/ta/katello.po +820 -106
  253. data/locale/ta/katello.po.time_stamp +0 -0
  254. data/locale/te/LC_MESSAGES/katello.mo +0 -0
  255. data/locale/te/katello.po +826 -112
  256. data/locale/te/katello.po.time_stamp +0 -0
  257. data/locale/zh_CN/LC_MESSAGES/katello.mo +0 -0
  258. data/locale/zh_CN/katello.po +1202 -486
  259. data/locale/zh_CN/katello.po.time_stamp +0 -0
  260. data/locale/zh_TW/LC_MESSAGES/katello.mo +0 -0
  261. data/locale/zh_TW/katello.po +856 -142
  262. data/locale/zh_TW/katello.po.time_stamp +0 -0
  263. data/webpack/components/EditableTextInput/EditableTextInput.js +20 -5
  264. data/webpack/components/Errata/index.js +38 -8
  265. data/webpack/components/Packages/index.js +1 -4
  266. data/webpack/components/Search/Search.js +18 -3
  267. data/webpack/components/SelectAllCheckbox/index.js +1 -0
  268. data/webpack/components/SelectableDropdown/SelectableDropdown.js +4 -2
  269. data/webpack/components/Table/EmptyStateMessage.js +21 -7
  270. data/webpack/components/Table/MainTable.js +29 -4
  271. data/webpack/components/Table/TableHooks.js +63 -19
  272. data/webpack/components/Table/TableWrapper.js +4 -2
  273. data/webpack/components/Table/components/SortableColumnHeaders.js +19 -0
  274. data/webpack/components/Table/components/TranslatedPlural.js +57 -0
  275. data/webpack/components/TypeAhead/TypeAhead.js +8 -0
  276. data/webpack/components/TypeAhead/pf4Search/TypeAheadInput.js +13 -11
  277. data/webpack/components/TypeAhead/pf4Search/TypeAheadSearch.js +5 -2
  278. data/webpack/components/extensions/HostDetails/ActionsBar/index.js +27 -0
  279. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ChangeHostCVModal.js +256 -0
  280. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ContentViewDetailsCard.js +202 -0
  281. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/HostContentViewActions.js +19 -0
  282. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/HostContentViewConstants.js +2 -0
  283. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/__tests__/changeHostCVModal.test.js +131 -0
  284. data/webpack/components/extensions/HostDetails/Cards/{__tests__ → ContentViewDetailsCard/__tests__}/contentViewDetailsCard.test.js +22 -0
  285. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/__tests__/contentViews.fixtures.json +443 -0
  286. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/__tests__/envPaths.fixtures.json +320 -0
  287. data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.js +57 -33
  288. data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.scss +3 -0
  289. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsActions.js +30 -0
  290. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsCard.js +187 -0
  291. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsConstants.js +7 -0
  292. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsModal.js +227 -0
  293. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsSelectors.js +18 -0
  294. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/availableHostCollections.fixtures.json +106 -0
  295. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsCard.test.js +110 -0
  296. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsModal.test.js +235 -0
  297. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/removableHostCollections.fixtures.json +45 -0
  298. data/webpack/components/extensions/HostDetails/Cards/__tests__/errataOverviewCard.test.js +33 -8
  299. data/webpack/components/extensions/HostDetails/DetailsTabCards/InstalledProductsCard.js +44 -0
  300. data/webpack/components/extensions/HostDetails/DetailsTabCards/RegistrationCard.js +107 -0
  301. data/webpack/components/extensions/HostDetails/DetailsTabCards/SystemPropertiesCardExtensions.js +38 -0
  302. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/ErrataTab.js +62 -39
  303. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/HostErrataActions.js +1 -7
  304. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsActions.js +1 -3
  305. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsConstants.js +28 -0
  306. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsTab.js +486 -116
  307. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/__tests__/moduleStreamsTab.test.js +147 -1
  308. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/__tests__/modules.fixtures.json +6 -3
  309. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/HostPackagesActions.js +1 -7
  310. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackageInstallModal.js +2 -1
  311. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.js +48 -19
  312. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionActions.js +35 -47
  313. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionConstants.js +1 -0
  314. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsActions.js +33 -54
  315. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsConstants.js +20 -0
  316. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsTab.js +269 -132
  317. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesTab.js +47 -11
  318. data/webpack/components/extensions/HostDetails/Tabs/__tests__/errataTab.test.js +30 -42
  319. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packagesTab.test.js +36 -1
  320. data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySetsTab.test.js +94 -46
  321. data/webpack/components/extensions/HostDetails/Tabs/__tests__/tracesTab.test.js +18 -2
  322. data/webpack/components/extensions/HostDetails/Tabs/customizedRexUrlHelpers.js +6 -0
  323. data/webpack/containers/Application/config.js +5 -0
  324. data/webpack/global_index.js +30 -7
  325. data/webpack/global_test_setup.js +13 -0
  326. data/webpack/redux/actions/RedHatRepositories/enabled.js +2 -1
  327. data/webpack/redux/actions/RedHatRepositories/helpers.js +9 -8
  328. data/webpack/scenes/AlternateContentSources/ACSActions.js +53 -0
  329. data/webpack/scenes/AlternateContentSources/ACSConstants.js +4 -0
  330. data/webpack/scenes/AlternateContentSources/ACSIndexPage.js +23 -0
  331. data/webpack/scenes/AlternateContentSources/ACSSelectors.js +15 -0
  332. data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.js +152 -0
  333. data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsIndex.fixtures.json +91 -0
  334. data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsTable.test.js +67 -0
  335. data/webpack/scenes/AlternateContentSources/index.js +4 -0
  336. data/webpack/scenes/Content/Details/ContentRepositories.js +1 -0
  337. data/webpack/scenes/Content/Table/ContentTable.js +1 -0
  338. data/webpack/scenes/ContentViews/ContentViewsActions.js +6 -2
  339. data/webpack/scenes/ContentViews/ContentViewsConstants.js +11 -3
  340. data/webpack/scenes/ContentViews/Copy/CopyContentViewForm.js +2 -1
  341. data/webpack/scenes/ContentViews/Create/ContentViewFormComponents.js +10 -1
  342. data/webpack/scenes/ContentViews/Create/CreateContentViewForm.js +4 -3
  343. data/webpack/scenes/ContentViews/Create/__tests__/createContentView.test.js +1 -1
  344. data/webpack/scenes/ContentViews/Delete/ContentViewDeleteWizard.js +7 -5
  345. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionFinish.js +29 -21
  346. data/webpack/scenes/ContentViews/Delete/__tests__/contentViewDelete.test.js +15 -8
  347. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewAddModal.js +3 -3
  348. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewBulkAddModal.js +4 -4
  349. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +3 -1
  350. data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js +4 -4
  351. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +34 -8
  352. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +33 -29
  353. data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +130 -79
  354. data/webpack/scenes/ContentViews/Details/ContentViewInfo.js +17 -3
  355. data/webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js +2 -1
  356. data/webpack/scenes/ContentViews/Details/Filters/AffectedRepositories/AffectedRepositoryTable.js +2 -1
  357. data/webpack/scenes/ContentViews/Details/Filters/CVContainerImageFilterContent.js +6 -1
  358. data/webpack/scenes/ContentViews/Details/Filters/CVErrataDateFilterContent.js +41 -21
  359. data/webpack/scenes/ContentViews/Details/Filters/CVErrataIDFilterContent.js +38 -20
  360. data/webpack/scenes/ContentViews/Details/Filters/CVModuleStreamFilterContent.js +2 -0
  361. data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +8 -1
  362. data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +9 -1
  363. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +2 -1
  364. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVRpmMatchContentModal.js +1 -0
  365. data/webpack/scenes/ContentViews/Details/Filters/Rules/ContainerTag/AddEditContainerTagRuleModal.js +27 -12
  366. data/webpack/scenes/ContentViews/Details/Filters/Rules/Package/AddEditPackageRuleModal.js +39 -17
  367. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVContainerImageFilterContent.test.js +27 -10
  368. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVRpmFilterContent.test.js +46 -23
  369. data/webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js +3 -2
  370. data/webpack/scenes/ContentViews/Details/Promote/ContentViewVersionPromote.js +5 -2
  371. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +161 -108
  372. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +7 -7
  373. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewRepoAdd.fixture.json +1 -0
  374. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/ActionSummary.js +58 -0
  375. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/BulkDeleteContextWrapper.js +45 -0
  376. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/BulkDeleteHelpers.js +30 -0
  377. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/BulkDeleteModal.js +56 -0
  378. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ConfirmBulkDelete.js +126 -0
  379. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/FinishBulkDelete.js +61 -0
  380. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignActivationKeys.js +196 -0
  381. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignHosts.js +220 -0
  382. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReviewEnvironments.js +104 -0
  383. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/BulkDeleteModal.test.js +122 -0
  384. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/BulkDeleteVersions.fixtures.json +600 -0
  385. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/contentView.fixtures.json +1504 -0
  386. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/contentViewVersion.fixtures.json +936 -0
  387. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/environmentPaths.fixtures.json +261 -0
  388. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/hosts.fixtures.json +163 -0
  389. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/bulkDeleteSteps.js +79 -0
  390. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +192 -167
  391. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveCVVersionWizard.js +2 -5
  392. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVVersionDeleteFinish.js +38 -53
  393. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVVersionRemoveReview.js +1 -1
  394. data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/cvVersionRemove.test.js +6 -12
  395. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedActivationKeys.js +1 -0
  396. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedHosts.js +1 -0
  397. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailConfig.js +1 -0
  398. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetails.js +8 -20
  399. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsHeader.js +23 -13
  400. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsTable.js +3 -0
  401. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.fixtures.json +4 -4
  402. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.test.js +0 -3
  403. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetailsEmpty.test.js +4 -4
  404. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +12 -14
  405. data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetails.fixtures.json +1 -0
  406. data/webpack/scenes/ContentViews/Publish/CVPublishFinish.js +96 -117
  407. data/webpack/scenes/ContentViews/Publish/PublishContentViewWizard.js +13 -19
  408. data/webpack/scenes/ContentViews/Publish/__tests__/publishContentView.test.js +9 -20
  409. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +165 -148
  410. data/webpack/scenes/ContentViews/Table/tableDataGenerator.js +2 -0
  411. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +4 -4
  412. data/webpack/scenes/ContentViews/components/ContentViewIcon.js +14 -3
  413. data/webpack/scenes/ContentViews/components/ContentViewsCounter.js +1 -1
  414. data/webpack/scenes/ContentViews/components/EnvironmentLabels.js +4 -3
  415. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.js +9 -5
  416. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.scss +6 -1
  417. data/webpack/scenes/ContentViews/components/TaskPresenter/TaskPresenter.js +40 -35
  418. data/webpack/scenes/ContentViews/expansions/DetailsExpansion.js +2 -2
  419. data/webpack/scenes/ContentViews/expansions/RelatedCompositeContentViewsModal.js +1 -1
  420. data/webpack/scenes/ContentViews/expansions/RelatedContentViewComponentsModal.js +4 -4
  421. data/webpack/scenes/ContentViews/expansions/__tests__/contentViewComponentsModal.test.js +1 -1
  422. data/webpack/scenes/ContentViews/helpers.js +3 -0
  423. data/webpack/scenes/Hosts/ChangeContentSource/helpers.js +5 -0
  424. data/webpack/scenes/RedHatRepositories/RedHatRepositoriesPage.js +3 -3
  425. data/webpack/scenes/RedHatRepositories/components/EnabledRepository/EnabledRepository.js +2 -1
  426. data/webpack/scenes/RedHatRepositories/components/EnabledRepository/__tests__/EnabledRepository.test.js +2 -0
  427. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnConfigurationConstants.js +3 -3
  428. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnTypeForm.js +2 -0
  429. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/{AirGappedTypeForm.js → ExportSyncForm.js} +7 -6
  430. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/{UpstreamServerTypeForm.js → NetworkSyncForm.js} +15 -7
  431. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/{AirGappedTypeForm.test.js → ExportSyncForm.test.js} +4 -4
  432. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/{UpstreamServerTypeForm.test.js → NetworkSyncForm.test.js} +8 -8
  433. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/index.js +11 -11
  434. data/webpack/scenes/Subscriptions/SubscriptionConstants.js +1 -0
  435. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +8 -7
  436. data/webpack/scenes/Tasks/TaskActions.js +6 -0
  437. data/webpack/scenes/Tasks/TaskSelectors.js +11 -0
  438. data/webpack/scenes/Tasks/helpers.js +33 -5
  439. data/webpack/utils/helpers.js +2 -0
  440. metadata +158 -40
  441. data/app/models/setting/content.rb +0 -201
  442. data/webpack/components/Table/__test__/useBulkSelect.test.js +0 -99
  443. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard.js +0 -96
  444. data/webpack/scenes/ContentViews/Details/DetailsContainer.js +0 -36
@@ -0,0 +1,936 @@
1
+ {
2
+ "total": 5,
3
+ "subtotal": 5,
4
+ "selectable": 5,
5
+ "page": "1",
6
+ "per_page": "20",
7
+ "error": null,
8
+ "search": null,
9
+ "sort": {
10
+ "by": "version",
11
+ "order": "desc"
12
+ },
13
+ "results": [
14
+ {
15
+ "version": "89.0",
16
+ "major": 89,
17
+ "minor": 0,
18
+ "composite_content_view_ids": [],
19
+ "published_in_composite_content_view_ids": [],
20
+ "content_view_id": 10,
21
+ "default": false,
22
+ "description": "",
23
+ "id": 145,
24
+ "name": "Billy 89.0",
25
+ "created_at": "2022-02-15 14:21:21 -0700",
26
+ "updated_at": "2022-02-15 14:21:39 -0700",
27
+ "content_view": {
28
+ "id": 10,
29
+ "name": "Billy",
30
+ "label": "Billy"
31
+ },
32
+ "composite_content_views": [],
33
+ "composite_content_view_versions": [],
34
+ "published_in_composite_content_views": [],
35
+ "environments": [
36
+ {
37
+ "id": 1,
38
+ "name": "Library",
39
+ "label": "Library",
40
+ "publish_date": "about 1 hour",
41
+ "permissions": {
42
+ "readable": true,
43
+ "promotable_or_removable": true,
44
+ "all_hosts_editable": true,
45
+ "all_keys_editable": true
46
+ },
47
+ "host_count": 1,
48
+ "activation_key_count": 1
49
+ }
50
+ ],
51
+ "repositories": [
52
+ {
53
+ "id": 917,
54
+ "name": "Zoo Repo Uno",
55
+ "label": "Zoo_Repo_Uno",
56
+ "content_type": "yum",
57
+ "library_instance_id": 1
58
+ },
59
+ {
60
+ "id": 918,
61
+ "name": "Needed Errata",
62
+ "label": "Needed_Errata",
63
+ "content_type": "yum",
64
+ "library_instance_id": 61
65
+ },
66
+ {
67
+ "id": 916,
68
+ "name": "Zoo Repo Dos",
69
+ "label": "Zoo_Repo_Dos",
70
+ "content_type": "yum",
71
+ "library_instance_id": 2
72
+ }
73
+ ],
74
+ "last_event": {
75
+ "user": "admin",
76
+ "status": "successful",
77
+ "description": "",
78
+ "action": "publish",
79
+ "created_at": "2022-02-15 14:21:21 -0700",
80
+ "updated_at": "2022-02-15 14:21:40 -0700",
81
+ "environment": null,
82
+ "task": {
83
+ "id": "e4436479-9f3c-41d2-b2f6-6baeee4341a3",
84
+ "label": "Actions::Katello::ContentView::Publish",
85
+ "pending": false,
86
+ "action": "Publish content view 'Billy'; organization 'Default Organization'",
87
+ "username": "admin",
88
+ "started_at": "2022-02-15 14:21:21 -0700",
89
+ "ended_at": "2022-02-15 14:21:40 -0700",
90
+ "state": "stopped",
91
+ "result": "success",
92
+ "progress": 1,
93
+ "input": {
94
+ "content_view": {
95
+ "id": 10,
96
+ "name": "Billy",
97
+ "label": "Billy"
98
+ },
99
+ "organization": {
100
+ "id": 1,
101
+ "name": "Default Organization",
102
+ "label": "Default_Organization"
103
+ },
104
+ "services_checked": [
105
+ "pulp3",
106
+ "candlepin",
107
+ "candlepin_auth"
108
+ ],
109
+ "history_id": 408,
110
+ "content_view_id": 10,
111
+ "auto_publish_composite_ids": [],
112
+ "content_view_version_name": "Billy 89.0",
113
+ "content_view_version_id": 145,
114
+ "environment_id": 1,
115
+ "user_id": 4,
116
+ "skip_promotion": null,
117
+ "locale": "en",
118
+ "current_request_id": "9161f4f6-3ffc-454d-81ef-ab68b09a73f4",
119
+ "current_timezone": "America/Edmonton",
120
+ "current_organization_id": 1,
121
+ "current_location_id": 2,
122
+ "current_user_id": 4
123
+ },
124
+ "output": {
125
+ "content_view_id": 10,
126
+ "content_view_version_id": 145,
127
+ "skip_promotion": null
128
+ },
129
+ "humanized": {
130
+ "action": "Publish",
131
+ "input": [
132
+ [
133
+ "content_view",
134
+ {
135
+ "text": "content view 'Billy'",
136
+ "link": "/content_views/10/versions"
137
+ }
138
+ ],
139
+ [
140
+ "organization",
141
+ {
142
+ "text": "organization 'Default Organization'",
143
+ "link": "/organizations/1/edit"
144
+ }
145
+ ]
146
+ ],
147
+ "output": "",
148
+ "errors": []
149
+ },
150
+ "cli_example": null,
151
+ "start_at": "2022-02-15 14:21:21 -0700",
152
+ "available_actions": {
153
+ "cancellable": false,
154
+ "resumable": false
155
+ }
156
+ },
157
+ "version": "89.0",
158
+ "publish": true,
159
+ "version_id": 145,
160
+ "triggered_by": null,
161
+ "triggered_by_id": null
162
+ },
163
+ "active_history": [],
164
+ "ansible_collection_count": 0,
165
+ "deb_count": 0,
166
+ "file_count": 0,
167
+ "python_package_count": 0,
168
+ "docker_manifest_count": 0,
169
+ "docker_manifest_list_count": 0,
170
+ "docker_tag_count": 0,
171
+ "ostree_ref_count": 0,
172
+ "rpm_count": 1,
173
+ "modulemd_count": 0,
174
+ "erratum_count": 0,
175
+ "package_group_count": 0,
176
+ "srpm_count": 0,
177
+ "module_stream_count": 0,
178
+ "package_count": 1,
179
+ "component_view_count": 0,
180
+ "ansible_collection_repository_count": 0,
181
+ "deb_repository_count": 0,
182
+ "file_repository_count": 0,
183
+ "python_repository_count": 0,
184
+ "docker_repository_count": 0,
185
+ "ostree_repository_count": 0,
186
+ "yum_repository_count": 3,
187
+ "errata_counts": {
188
+ "security": null,
189
+ "bugfix": 0,
190
+ "enhancement": 0,
191
+ "total": null
192
+ },
193
+ "permissions": {
194
+ "deletable": true
195
+ }
196
+ },
197
+ {
198
+ "version": "88.0",
199
+ "major": 88,
200
+ "minor": 0,
201
+ "composite_content_view_ids": [],
202
+ "published_in_composite_content_view_ids": [],
203
+ "content_view_id": 10,
204
+ "default": false,
205
+ "description": "",
206
+ "id": 144,
207
+ "name": "Billy 88.0",
208
+ "created_at": "2022-02-11 11:17:05 -0700",
209
+ "updated_at": "2022-02-11 11:17:30 -0700",
210
+ "content_view": {
211
+ "id": 10,
212
+ "name": "Billy",
213
+ "label": "Billy"
214
+ },
215
+ "composite_content_views": [],
216
+ "composite_content_view_versions": [],
217
+ "published_in_composite_content_views": [],
218
+ "environments": [
219
+ {
220
+ "id": 3,
221
+ "name": "bob",
222
+ "label": "bob",
223
+ "publish_date": "4 days",
224
+ "permissions": {
225
+ "readable": true,
226
+ "promotable_or_removable": true,
227
+ "all_hosts_editable": true,
228
+ "all_keys_editable": true
229
+ },
230
+ "host_count": 0,
231
+ "activation_key_count": 0
232
+ }
233
+ ],
234
+ "repositories": [
235
+ {
236
+ "id": 914,
237
+ "name": "Needed Errata",
238
+ "label": "Needed_Errata",
239
+ "content_type": "yum",
240
+ "library_instance_id": 61
241
+ },
242
+ {
243
+ "id": 913,
244
+ "name": "Zoo Repo Uno",
245
+ "label": "Zoo_Repo_Uno",
246
+ "content_type": "yum",
247
+ "library_instance_id": 1
248
+ },
249
+ {
250
+ "id": 912,
251
+ "name": "Zoo Repo Dos",
252
+ "label": "Zoo_Repo_Dos",
253
+ "content_type": "yum",
254
+ "library_instance_id": 2
255
+ }
256
+ ],
257
+ "last_event": {
258
+ "user": "admin",
259
+ "status": "successful",
260
+ "description": null,
261
+ "action": "promotion",
262
+ "created_at": "2022-02-11 11:17:09 -0700",
263
+ "updated_at": "2022-02-11 11:17:30 -0700",
264
+ "environment": {
265
+ "id": 3,
266
+ "name": "bob"
267
+ },
268
+ "task": {
269
+ "id": "18a89f53-e33f-4d56-9e4c-9d1305c3c556",
270
+ "label": "Actions::Katello::ContentView::Publish",
271
+ "pending": false,
272
+ "action": "Publish content view 'Billy'; organization 'Default Organization'",
273
+ "username": "admin",
274
+ "started_at": "2022-02-11 11:17:05 -0700",
275
+ "ended_at": "2022-02-11 11:17:30 -0700",
276
+ "state": "stopped",
277
+ "result": "success",
278
+ "progress": 1,
279
+ "input": {
280
+ "content_view": {
281
+ "id": 10,
282
+ "name": "Billy",
283
+ "label": "Billy"
284
+ },
285
+ "organization": {
286
+ "id": 1,
287
+ "name": "Default Organization",
288
+ "label": "Default_Organization"
289
+ },
290
+ "services_checked": [
291
+ "pulp3",
292
+ "candlepin",
293
+ "candlepin_auth"
294
+ ],
295
+ "history_id": 404,
296
+ "content_view_id": 10,
297
+ "auto_publish_composite_ids": [],
298
+ "content_view_version_name": "Billy 88.0",
299
+ "content_view_version_id": 144,
300
+ "environment_id": 1,
301
+ "user_id": 4,
302
+ "skip_promotion": null,
303
+ "locale": "en",
304
+ "current_request_id": "7a4cf39c-1cd9-411c-99ca-547041f437b0",
305
+ "current_timezone": "America/Edmonton",
306
+ "current_organization_id": 1,
307
+ "current_location_id": 2,
308
+ "current_user_id": 4
309
+ },
310
+ "output": {
311
+ "content_view_id": 10,
312
+ "content_view_version_id": 144,
313
+ "skip_promotion": null
314
+ },
315
+ "humanized": {
316
+ "action": "Publish",
317
+ "input": [
318
+ [
319
+ "content_view",
320
+ {
321
+ "text": "content view 'Billy'",
322
+ "link": "/content_views/10/versions"
323
+ }
324
+ ],
325
+ [
326
+ "organization",
327
+ {
328
+ "text": "organization 'Default Organization'",
329
+ "link": "/organizations/1/edit"
330
+ }
331
+ ]
332
+ ],
333
+ "output": "",
334
+ "errors": []
335
+ },
336
+ "cli_example": null,
337
+ "start_at": "2022-02-11 11:17:05 -0700",
338
+ "available_actions": {
339
+ "cancellable": false,
340
+ "resumable": false
341
+ }
342
+ },
343
+ "version": "88.0",
344
+ "publish": false,
345
+ "version_id": 144,
346
+ "triggered_by": null,
347
+ "triggered_by_id": null
348
+ },
349
+ "active_history": [],
350
+ "ansible_collection_count": 0,
351
+ "deb_count": 0,
352
+ "file_count": 0,
353
+ "python_package_count": 0,
354
+ "docker_manifest_count": 0,
355
+ "docker_manifest_list_count": 0,
356
+ "docker_tag_count": 0,
357
+ "ostree_ref_count": 0,
358
+ "rpm_count": 1,
359
+ "modulemd_count": 0,
360
+ "erratum_count": 0,
361
+ "package_group_count": 0,
362
+ "srpm_count": 0,
363
+ "module_stream_count": 0,
364
+ "package_count": 1,
365
+ "component_view_count": 0,
366
+ "ansible_collection_repository_count": 0,
367
+ "deb_repository_count": 0,
368
+ "file_repository_count": 0,
369
+ "python_repository_count": 0,
370
+ "docker_repository_count": 0,
371
+ "ostree_repository_count": 0,
372
+ "yum_repository_count": 3,
373
+ "errata_counts": {
374
+ "security": null,
375
+ "bugfix": 0,
376
+ "enhancement": 0,
377
+ "total": null
378
+ },
379
+ "permissions": {
380
+ "deletable": true
381
+ }
382
+ },
383
+ {
384
+ "version": "85.0",
385
+ "major": 85,
386
+ "minor": 0,
387
+ "composite_content_view_ids": [],
388
+ "published_in_composite_content_view_ids": [],
389
+ "content_view_id": 10,
390
+ "default": false,
391
+ "description": "",
392
+ "id": 140,
393
+ "name": "Billy 85.0",
394
+ "created_at": "2022-02-10 15:56:48 -0700",
395
+ "updated_at": "2022-02-10 15:57:08 -0700",
396
+ "content_view": {
397
+ "id": 10,
398
+ "name": "Billy",
399
+ "label": "Billy"
400
+ },
401
+ "composite_content_views": [],
402
+ "composite_content_view_versions": [],
403
+ "published_in_composite_content_views": [],
404
+ "environments": [],
405
+ "repositories": [
406
+ {
407
+ "id": 895,
408
+ "name": "Zoo Repo Dos",
409
+ "label": "Zoo_Repo_Dos",
410
+ "content_type": "yum",
411
+ "library_instance_id": 2
412
+ },
413
+ {
414
+ "id": 896,
415
+ "name": "Zoo Repo Uno",
416
+ "label": "Zoo_Repo_Uno",
417
+ "content_type": "yum",
418
+ "library_instance_id": 1
419
+ },
420
+ {
421
+ "id": 897,
422
+ "name": "Python",
423
+ "label": "Python",
424
+ "content_type": "python",
425
+ "library_instance_id": 11
426
+ },
427
+ {
428
+ "id": 899,
429
+ "name": "Needed Errata",
430
+ "label": "Needed_Errata",
431
+ "content_type": "yum",
432
+ "library_instance_id": 61
433
+ },
434
+ {
435
+ "id": 898,
436
+ "name": "OZtree",
437
+ "label": "OZtree",
438
+ "content_type": "ostree",
439
+ "library_instance_id": 32
440
+ }
441
+ ],
442
+ "last_event": {
443
+ "user": "admin",
444
+ "status": "successful",
445
+ "description": "",
446
+ "action": "publish",
447
+ "created_at": "2022-02-10 15:56:48 -0700",
448
+ "updated_at": "2022-02-10 15:57:09 -0700",
449
+ "environment": null,
450
+ "task": {
451
+ "id": "4dfff3bf-4b86-4726-9b6c-46956a0cec42",
452
+ "label": "Actions::Katello::ContentView::Publish",
453
+ "pending": false,
454
+ "action": "Publish content view 'Billy'; organization 'Default Organization'",
455
+ "username": "admin",
456
+ "started_at": "2022-02-10 15:56:48 -0700",
457
+ "ended_at": "2022-02-10 15:57:09 -0700",
458
+ "state": "stopped",
459
+ "result": "success",
460
+ "progress": 1,
461
+ "input": {
462
+ "content_view": {
463
+ "id": 10,
464
+ "name": "Billy",
465
+ "label": "Billy"
466
+ },
467
+ "organization": {
468
+ "id": 1,
469
+ "name": "Default Organization",
470
+ "label": "Default_Organization"
471
+ },
472
+ "services_checked": [
473
+ "pulp3",
474
+ "candlepin",
475
+ "candlepin_auth"
476
+ ],
477
+ "history_id": 398,
478
+ "content_view_id": 10,
479
+ "auto_publish_composite_ids": [],
480
+ "content_view_version_name": "Billy 85.0",
481
+ "content_view_version_id": 140,
482
+ "environment_id": 1,
483
+ "user_id": 4,
484
+ "skip_promotion": null,
485
+ "locale": "en",
486
+ "current_request_id": "c79b5e05-f5e6-4e9f-88a0-057b1d618953",
487
+ "current_timezone": "America/Edmonton",
488
+ "current_organization_id": 1,
489
+ "current_location_id": 2,
490
+ "current_user_id": 4
491
+ },
492
+ "output": {
493
+ "content_view_id": 10,
494
+ "content_view_version_id": 140,
495
+ "skip_promotion": null
496
+ },
497
+ "humanized": {
498
+ "action": "Publish",
499
+ "input": [
500
+ [
501
+ "content_view",
502
+ {
503
+ "text": "content view 'Billy'",
504
+ "link": "/content_views/10/versions"
505
+ }
506
+ ],
507
+ [
508
+ "organization",
509
+ {
510
+ "text": "organization 'Default Organization'",
511
+ "link": "/organizations/1/edit"
512
+ }
513
+ ]
514
+ ],
515
+ "output": "",
516
+ "errors": []
517
+ },
518
+ "cli_example": null,
519
+ "start_at": "2022-02-10 15:56:48 -0700",
520
+ "available_actions": {
521
+ "cancellable": false,
522
+ "resumable": false
523
+ }
524
+ },
525
+ "version": "85.0",
526
+ "publish": true,
527
+ "version_id": 140,
528
+ "triggered_by": null,
529
+ "triggered_by_id": null
530
+ },
531
+ "active_history": [],
532
+ "deb_count": 0,
533
+ "docker_manifest_count": 0,
534
+ "docker_manifest_list_count": 0,
535
+ "docker_tag_count": 0,
536
+ "file_count": 0,
537
+ "rpm_count": 1,
538
+ "modulemd_count": 0,
539
+ "erratum_count": 0,
540
+ "package_group_count": 0,
541
+ "srpm_count": 0,
542
+ "ansible_collection_count": 0,
543
+ "python_package_count": 0,
544
+ "ostree_ref_count": 0,
545
+ "module_stream_count": 0,
546
+ "package_count": 1,
547
+ "component_view_count": 0,
548
+ "ansible_collection_repository_count": 0,
549
+ "deb_repository_count": 0,
550
+ "file_repository_count": 0,
551
+ "python_repository_count": 1,
552
+ "docker_repository_count": 0,
553
+ "ostree_repository_count": 1,
554
+ "yum_repository_count": 3,
555
+ "errata_counts": {
556
+ "security": null,
557
+ "bugfix": 0,
558
+ "enhancement": 0,
559
+ "total": null
560
+ },
561
+ "permissions": {
562
+ "deletable": true
563
+ }
564
+ },
565
+ {
566
+ "version": "84.0",
567
+ "major": 84,
568
+ "minor": 0,
569
+ "composite_content_view_ids": [],
570
+ "published_in_composite_content_view_ids": [],
571
+ "content_view_id": 10,
572
+ "default": false,
573
+ "description": "",
574
+ "id": 139,
575
+ "name": "Billy 84.0",
576
+ "created_at": "2022-02-08 13:41:23 -0700",
577
+ "updated_at": "2022-02-08 13:41:43 -0700",
578
+ "content_view": {
579
+ "id": 10,
580
+ "name": "Billy",
581
+ "label": "Billy"
582
+ },
583
+ "composite_content_views": [],
584
+ "composite_content_view_versions": [],
585
+ "published_in_composite_content_views": [],
586
+ "environments": [],
587
+ "repositories": [
588
+ {
589
+ "id": 891,
590
+ "name": "Zoo Repo Uno",
591
+ "label": "Zoo_Repo_Uno",
592
+ "content_type": "yum",
593
+ "library_instance_id": 1
594
+ },
595
+ {
596
+ "id": 893,
597
+ "name": "OZtree",
598
+ "label": "OZtree",
599
+ "content_type": "ostree",
600
+ "library_instance_id": 32
601
+ },
602
+ {
603
+ "id": 892,
604
+ "name": "Python",
605
+ "label": "Python",
606
+ "content_type": "python",
607
+ "library_instance_id": 11
608
+ },
609
+ {
610
+ "id": 894,
611
+ "name": "Needed Errata",
612
+ "label": "Needed_Errata",
613
+ "content_type": "yum",
614
+ "library_instance_id": 61
615
+ },
616
+ {
617
+ "id": 890,
618
+ "name": "Zoo Repo Dos",
619
+ "label": "Zoo_Repo_Dos",
620
+ "content_type": "yum",
621
+ "library_instance_id": 2
622
+ }
623
+ ],
624
+ "last_event": {
625
+ "user": "admin",
626
+ "status": "successful",
627
+ "description": null,
628
+ "action": "promotion",
629
+ "created_at": "2022-02-08 13:41:26 -0700",
630
+ "updated_at": "2022-02-08 13:41:43 -0700",
631
+ "environment": {
632
+ "id": 3,
633
+ "name": "bob"
634
+ },
635
+ "task": {
636
+ "id": "1be91ce6-45be-4a64-afca-cb9276ef7093",
637
+ "label": "Actions::Katello::ContentView::Publish",
638
+ "pending": false,
639
+ "action": "Publish content view 'Billy'; organization 'Default Organization'",
640
+ "username": "admin",
641
+ "started_at": "2022-02-08 13:41:23 -0700",
642
+ "ended_at": "2022-02-08 13:41:43 -0700",
643
+ "state": "stopped",
644
+ "result": "success",
645
+ "progress": 1,
646
+ "input": {
647
+ "content_view": {
648
+ "id": 10,
649
+ "name": "Billy",
650
+ "label": "Billy"
651
+ },
652
+ "organization": {
653
+ "id": 1,
654
+ "name": "Default Organization",
655
+ "label": "Default_Organization"
656
+ },
657
+ "services_checked": [
658
+ "pulp3",
659
+ "candlepin",
660
+ "candlepin_auth"
661
+ ],
662
+ "history_id": 394,
663
+ "content_view_id": 10,
664
+ "auto_publish_composite_ids": [],
665
+ "content_view_version_name": "Billy 84.0",
666
+ "content_view_version_id": 139,
667
+ "environment_id": 1,
668
+ "user_id": 4,
669
+ "skip_promotion": null,
670
+ "locale": "en",
671
+ "current_request_id": "5bd7faeb-1d80-4bac-a830-ea1ce732cab1",
672
+ "current_timezone": "America/Edmonton",
673
+ "current_organization_id": 1,
674
+ "current_location_id": 2,
675
+ "current_user_id": 4
676
+ },
677
+ "output": {
678
+ "content_view_id": 10,
679
+ "content_view_version_id": 139,
680
+ "skip_promotion": null
681
+ },
682
+ "humanized": {
683
+ "action": "Publish",
684
+ "input": [
685
+ [
686
+ "content_view",
687
+ {
688
+ "text": "content view 'Billy'",
689
+ "link": "/content_views/10/versions"
690
+ }
691
+ ],
692
+ [
693
+ "organization",
694
+ {
695
+ "text": "organization 'Default Organization'",
696
+ "link": "/organizations/1/edit"
697
+ }
698
+ ]
699
+ ],
700
+ "output": "",
701
+ "errors": []
702
+ },
703
+ "cli_example": null,
704
+ "start_at": "2022-02-08 13:41:23 -0700",
705
+ "available_actions": {
706
+ "cancellable": false,
707
+ "resumable": false
708
+ }
709
+ },
710
+ "version": "84.0",
711
+ "publish": false,
712
+ "version_id": 139,
713
+ "triggered_by": null,
714
+ "triggered_by_id": null
715
+ },
716
+ "active_history": [],
717
+ "deb_count": 0,
718
+ "docker_manifest_count": 0,
719
+ "docker_manifest_list_count": 0,
720
+ "docker_tag_count": 0,
721
+ "file_count": 0,
722
+ "rpm_count": 40,
723
+ "modulemd_count": 0,
724
+ "erratum_count": 8,
725
+ "package_group_count": 2,
726
+ "srpm_count": 0,
727
+ "ansible_collection_count": 0,
728
+ "ostree_ref_count": 2,
729
+ "python_package_count": 54,
730
+ "module_stream_count": 0,
731
+ "package_count": 40,
732
+ "component_view_count": 0,
733
+ "ansible_collection_repository_count": 0,
734
+ "deb_repository_count": 0,
735
+ "file_repository_count": 0,
736
+ "python_repository_count": 1,
737
+ "docker_repository_count": 0,
738
+ "ostree_repository_count": 1,
739
+ "yum_repository_count": 3,
740
+ "errata_counts": {
741
+ "security": 5,
742
+ "bugfix": 0,
743
+ "enhancement": 1,
744
+ "total": 8
745
+ },
746
+ "permissions": {
747
+ "deletable": true
748
+ }
749
+ },
750
+ {
751
+ "version": "83.0",
752
+ "major": 83,
753
+ "minor": 0,
754
+ "composite_content_view_ids": [],
755
+ "published_in_composite_content_view_ids": [],
756
+ "content_view_id": 10,
757
+ "default": false,
758
+ "description": "",
759
+ "id": 138,
760
+ "name": "Billy 83.0",
761
+ "created_at": "2022-02-07 12:26:00 -0700",
762
+ "updated_at": "2022-02-07 12:26:25 -0700",
763
+ "content_view": {
764
+ "id": 10,
765
+ "name": "Billy",
766
+ "label": "Billy"
767
+ },
768
+ "composite_content_views": [],
769
+ "composite_content_view_versions": [],
770
+ "published_in_composite_content_views": [],
771
+ "environments": [],
772
+ "repositories": [
773
+ {
774
+ "id": 881,
775
+ "name": "Zoo Repo Uno",
776
+ "label": "Zoo_Repo_Uno",
777
+ "content_type": "yum",
778
+ "library_instance_id": 1
779
+ },
780
+ {
781
+ "id": 880,
782
+ "name": "Zoo Repo Dos",
783
+ "label": "Zoo_Repo_Dos",
784
+ "content_type": "yum",
785
+ "library_instance_id": 2
786
+ },
787
+ {
788
+ "id": 884,
789
+ "name": "Needed Errata",
790
+ "label": "Needed_Errata",
791
+ "content_type": "yum",
792
+ "library_instance_id": 61
793
+ },
794
+ {
795
+ "id": 882,
796
+ "name": "Python",
797
+ "label": "Python",
798
+ "content_type": "python",
799
+ "library_instance_id": 11
800
+ },
801
+ {
802
+ "id": 883,
803
+ "name": "OZtree",
804
+ "label": "OZtree",
805
+ "content_type": "ostree",
806
+ "library_instance_id": 32
807
+ }
808
+ ],
809
+ "last_event": {
810
+ "user": "admin",
811
+ "status": "successful",
812
+ "description": null,
813
+ "action": "promotion",
814
+ "created_at": "2022-02-07 12:26:04 -0700",
815
+ "updated_at": "2022-02-07 12:26:25 -0700",
816
+ "environment": {
817
+ "id": 2,
818
+ "name": "Steve"
819
+ },
820
+ "task": {
821
+ "id": "56205a86-165b-4c37-9c0e-9821b8c0ad47",
822
+ "label": "Actions::Katello::ContentView::Publish",
823
+ "pending": false,
824
+ "action": "Publish content view 'Billy'; organization 'Default Organization'",
825
+ "username": "admin",
826
+ "started_at": "2022-02-07 12:26:00 -0700",
827
+ "ended_at": "2022-02-07 12:26:25 -0700",
828
+ "state": "stopped",
829
+ "result": "success",
830
+ "progress": 1,
831
+ "input": {
832
+ "content_view": {
833
+ "id": 10,
834
+ "name": "Billy",
835
+ "label": "Billy"
836
+ },
837
+ "organization": {
838
+ "id": 1,
839
+ "name": "Default Organization",
840
+ "label": "Default_Organization"
841
+ },
842
+ "services_checked": [
843
+ "pulp3",
844
+ "candlepin",
845
+ "candlepin_auth"
846
+ ],
847
+ "history_id": 392,
848
+ "content_view_id": 10,
849
+ "auto_publish_composite_ids": [],
850
+ "content_view_version_name": "Billy 83.0",
851
+ "content_view_version_id": 138,
852
+ "environment_id": 1,
853
+ "user_id": 4,
854
+ "skip_promotion": null,
855
+ "locale": "en",
856
+ "current_request_id": "ee1dc23f-a613-4fdd-9c43-53c34d43d3a1",
857
+ "current_timezone": "America/Edmonton",
858
+ "current_organization_id": 1,
859
+ "current_location_id": 2,
860
+ "current_user_id": 4
861
+ },
862
+ "output": {
863
+ "content_view_id": 10,
864
+ "content_view_version_id": 138,
865
+ "skip_promotion": null
866
+ },
867
+ "humanized": {
868
+ "action": "Publish",
869
+ "input": [
870
+ [
871
+ "content_view",
872
+ {
873
+ "text": "content view 'Billy'",
874
+ "link": "/content_views/10/versions"
875
+ }
876
+ ],
877
+ [
878
+ "organization",
879
+ {
880
+ "text": "organization 'Default Organization'",
881
+ "link": "/organizations/1/edit"
882
+ }
883
+ ]
884
+ ],
885
+ "output": "",
886
+ "errors": []
887
+ },
888
+ "cli_example": null,
889
+ "start_at": "2022-02-07 12:26:00 -0700",
890
+ "available_actions": {
891
+ "cancellable": false,
892
+ "resumable": false
893
+ }
894
+ },
895
+ "version": "83.0",
896
+ "publish": false,
897
+ "version_id": 138,
898
+ "triggered_by": null,
899
+ "triggered_by_id": null
900
+ },
901
+ "active_history": [],
902
+ "ansible_collection_count": 0,
903
+ "deb_count": 0,
904
+ "docker_manifest_count": 0,
905
+ "docker_manifest_list_count": 0,
906
+ "docker_tag_count": 0,
907
+ "file_count": 0,
908
+ "rpm_count": 40,
909
+ "modulemd_count": 0,
910
+ "erratum_count": 8,
911
+ "package_group_count": 2,
912
+ "srpm_count": 0,
913
+ "ostree_ref_count": 2,
914
+ "python_package_count": 54,
915
+ "module_stream_count": 0,
916
+ "package_count": 40,
917
+ "component_view_count": 0,
918
+ "ansible_collection_repository_count": 0,
919
+ "deb_repository_count": 0,
920
+ "file_repository_count": 0,
921
+ "python_repository_count": 1,
922
+ "docker_repository_count": 0,
923
+ "ostree_repository_count": 1,
924
+ "yum_repository_count": 3,
925
+ "errata_counts": {
926
+ "security": 5,
927
+ "bugfix": 0,
928
+ "enhancement": 1,
929
+ "total": 8
930
+ },
931
+ "permissions": {
932
+ "deletable": true
933
+ }
934
+ }
935
+ ]
936
+ }