hyrax 5.0.0.rc1 → 5.0.0.rc3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (431) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +25 -4
  3. data/.dassie/.env +5 -1
  4. data/.dassie/Gemfile +27 -42
  5. data/.dassie/Gemfile.dassie +2 -0
  6. data/.dassie/app/assets/config/manifest.js +2 -0
  7. data/.dassie/app/assets/stylesheets/hyrax.scss +1 -0
  8. data/.dassie/app/listeners/hyrax_listener.rb +81 -0
  9. data/.dassie/config/environments/test.rb +0 -5
  10. data/.dassie/config/initializers/hyrax.rb +5 -0
  11. data/.dassie/config/initializers/publisher.rb +3 -0
  12. data/.dassie/config/initializers/riiif.rb +82 -11
  13. data/.dassie/config/metadata/collection_resource.yaml +3 -0
  14. data/.dassie/config/metadata/monograph.yaml +8 -0
  15. data/.dassie/config/metadata/sample_metadata.yaml +1 -0
  16. data/.dassie/config/redis.yml +2 -0
  17. data/.dassie/db/migrate/20230725222727_create_hyrax_counter_metrics.hyrax.rb +14 -0
  18. data/.dassie/db/migrate/20230803165135_change_work_id_to_string.rb +5 -0
  19. data/.dassie/db/migrate/20230808102105_add_indices_to_hyrax_counter_metrics.hyrax.rb +8 -0
  20. data/.dassie/db/migrate/20230821153635_add_fields_to_counter_metric.rb +8 -0
  21. data/.dassie/db/schema.rb +20 -1
  22. data/.dockerignore +2 -1
  23. data/.gitignore +5 -1
  24. data/.koppie/.env +10 -4
  25. data/.koppie/Gemfile +10 -12
  26. data/.koppie/Gemfile.koppie +2 -0
  27. data/.koppie/Rakefile +0 -2
  28. data/.koppie/app/listeners/hyrax_listener.rb +81 -0
  29. data/.koppie/app/models/ability.rb +1 -5
  30. data/.koppie/app/models/collection.rb +1 -1
  31. data/.koppie/app/models/user.rb +0 -2
  32. data/.koppie/config/analytics.yml +5 -5
  33. data/.koppie/config/application.rb +2 -1
  34. data/.koppie/config/arkivo.yml +6 -0
  35. data/.koppie/config/blacklight.yml +2 -2
  36. data/.koppie/config/features.yml +2 -0
  37. data/.koppie/config/initializers/1_valkyrie.rb +29 -6
  38. data/.koppie/config/initializers/arkivo_constraint.rb +12 -0
  39. data/.koppie/config/initializers/hyrax.rb +2 -2
  40. data/.koppie/config/initializers/publisher.rb +3 -0
  41. data/.koppie/config/initializers/riiif.rb +84 -11
  42. data/.koppie/config/metadata/collection_resource.yaml +19 -1
  43. data/.koppie/config/metadata/generic_work.yaml +2 -0
  44. data/.koppie/config/metadata/monograph.yaml +10 -0
  45. data/.koppie/config/metadata/sample_metadata.yaml +4 -0
  46. data/.koppie/config/role_map.yml +3 -25
  47. data/.koppie/config/routes.rb +1 -2
  48. data/.koppie/config/solr.yml +1 -1
  49. data/.koppie/config/valkyrie_index.yml +4 -10
  50. data/.koppie/config/zotero.yml +6 -0
  51. data/.koppie/db/migrate/20230725222727_create_hyrax_counter_metrics.hyrax.rb +14 -0
  52. data/.koppie/db/migrate/20230803165135_change_work_id_to_string.rb +5 -0
  53. data/.koppie/db/schema.rb +12 -1
  54. data/CONTAINERS.md +39 -4
  55. data/Dockerfile +25 -13
  56. data/Gemfile +8 -24
  57. data/Gemfile.dassie +2 -0
  58. data/Gemfile.koppie +2 -0
  59. data/README.md +2 -1
  60. data/Rakefile +0 -11
  61. data/app/actors/hyrax/actors/base_actor.rb +6 -3
  62. data/app/actors/hyrax/actors/embargo_actor.rb +3 -6
  63. data/app/actors/hyrax/actors/file_actor.rb +1 -1
  64. data/app/actors/hyrax/actors/lease_actor.rb +3 -6
  65. data/app/assets/javascripts/hyrax/batch_select_all.js +1 -1
  66. data/app/assets/javascripts/hyrax/file_manager/member.es6 +1 -1
  67. data/app/assets/javascripts/hyrax/save_work/uploaded_files.es6 +10 -2
  68. data/app/assets/stylesheets/hyrax/_file-listing.scss +0 -2
  69. data/app/assets/stylesheets/hyrax/_work-show.scss +19 -3
  70. data/app/assets/stylesheets/hyrax/sidebar.scss +29 -1
  71. data/app/controllers/concerns/hyrax/collections_controller_behavior.rb +1 -1
  72. data/app/controllers/concerns/hyrax/embargoes_controller_behavior.rb +7 -1
  73. data/app/controllers/concerns/hyrax/leases_controller_behavior.rb +7 -1
  74. data/app/controllers/concerns/hyrax/local_file_downloads_controller_behavior.rb +12 -19
  75. data/app/controllers/concerns/hyrax/stream_file_downloads_controller_behavior.rb +54 -0
  76. data/app/controllers/concerns/hyrax/valkyrie_downloads_controller_behavior.rb +52 -18
  77. data/app/controllers/concerns/hyrax/works_controller_behavior.rb +69 -23
  78. data/app/controllers/hyrax/admin/admin_sets_controller.rb +2 -2
  79. data/app/controllers/hyrax/admin/analytics/work_reports_controller.rb +5 -5
  80. data/app/controllers/hyrax/api/items_controller.rb +2 -3
  81. data/app/controllers/hyrax/batch_edits_controller.rb +6 -6
  82. data/app/controllers/hyrax/batch_uploads_controller.rb +5 -1
  83. data/app/controllers/hyrax/dashboard/collections_controller.rb +6 -3
  84. data/app/controllers/hyrax/downloads_controller.rb +1 -0
  85. data/app/controllers/hyrax/file_sets_controller.rb +51 -7
  86. data/app/controllers/hyrax/my/collections_controller.rb +3 -1
  87. data/app/controllers/hyrax/single_use_links_viewer_controller.rb +16 -2
  88. data/app/forms/concerns/hyrax/basic_metadata_form_fields_behavior.rb +39 -0
  89. data/app/forms/concerns/hyrax/contained_in_works_behavior.rb +24 -0
  90. data/app/forms/concerns/hyrax/deposit_agreement_behavior.rb +12 -0
  91. data/app/forms/concerns/hyrax/leaseability_behavior.rb +49 -0
  92. data/app/forms/concerns/hyrax/permission_behavior.rb +20 -0
  93. data/app/forms/hyrax/forms/administrative_set_form.rb +1 -5
  94. data/app/forms/hyrax/forms/collection_form.rb +16 -12
  95. data/app/forms/hyrax/forms/dashboard/nest_collection_form.rb +0 -34
  96. data/app/forms/hyrax/forms/file_set_form.rb +7 -2
  97. data/app/forms/hyrax/forms/pcdm_collection_form.rb +1 -5
  98. data/app/forms/hyrax/forms/pcdm_object_form.rb +13 -1
  99. data/app/forms/hyrax/forms/permission_template_form.rb +0 -7
  100. data/app/forms/hyrax/forms/resource_batch_edit_form.rb +55 -22
  101. data/app/forms/hyrax/forms/resource_form.rb +31 -114
  102. data/app/forms/hyrax/forms.rb +52 -0
  103. data/app/helpers/hyrax/dashboard_helper_behavior.rb +13 -0
  104. data/app/helpers/hyrax/hyrax_helper_behavior.rb +2 -0
  105. data/app/indexers/concerns/hyrax/location_indexer.rb +25 -0
  106. data/app/indexers/{hyrax → concerns/hyrax}/permission_indexer.rb +2 -2
  107. data/app/indexers/{hyrax → concerns/hyrax}/visibility_indexer.rb +1 -1
  108. data/app/indexers/hyrax/administrative_set_indexer.rb +5 -17
  109. data/app/indexers/hyrax/indexers/administrative_set_indexer.rb +25 -0
  110. data/app/indexers/hyrax/indexers/file_set_indexer.rb +144 -0
  111. data/app/indexers/hyrax/indexers/pcdm_collection_indexer.rb +27 -0
  112. data/app/indexers/hyrax/indexers/pcdm_object_indexer.rb +72 -0
  113. data/app/indexers/hyrax/indexers/resource_indexer.rb +86 -0
  114. data/app/indexers/hyrax/indexers.rb +54 -0
  115. data/app/indexers/hyrax/pcdm_collection_indexer.rb +5 -26
  116. data/app/indexers/hyrax/valkyrie_collection_indexer.rb +6 -4
  117. data/app/indexers/hyrax/valkyrie_file_set_indexer.rb +5 -141
  118. data/app/indexers/hyrax/valkyrie_indexer.rb +8 -112
  119. data/app/indexers/hyrax/valkyrie_work_indexer.rb +5 -63
  120. data/app/indexers/hyrax/work_indexer.rb +1 -0
  121. data/app/inputs/controlled_vocabulary_input.rb +1 -1
  122. data/app/jobs/characterize_job.rb +1 -1
  123. data/app/jobs/create_work_job.rb +37 -4
  124. data/app/jobs/valkyrie_characterization_job.rb +9 -0
  125. data/app/jobs/valkyrie_ingest_job.rb +1 -3
  126. data/app/models/admin_set.rb +20 -1
  127. data/app/models/collection.rb +5 -0
  128. data/app/models/collection_branding_info.rb +2 -9
  129. data/app/models/concerns/hyrax/ability/admin_set_ability.rb +13 -28
  130. data/app/models/concerns/hyrax/ability/collection_ability.rb +26 -28
  131. data/app/models/concerns/hyrax/ability/resource_ability.rb +19 -0
  132. data/app/models/concerns/hyrax/ability.rb +12 -9
  133. data/app/models/concerns/hyrax/collection_behavior.rb +12 -12
  134. data/app/models/concerns/hyrax/solr_document_behavior.rb +33 -6
  135. data/app/models/concerns/hyrax/work_behavior.rb +4 -0
  136. data/app/models/featured_work.rb +12 -4
  137. data/app/models/file_set.rb +5 -0
  138. data/app/models/hyrax/administrative_set.rb +1 -1
  139. data/app/models/hyrax/change_set.rb +2 -2
  140. data/app/models/hyrax/counter_metric.rb +7 -0
  141. data/app/models/hyrax/file_metadata.rb +37 -9
  142. data/app/models/hyrax/file_set.rb +77 -24
  143. data/app/models/hyrax/group.rb +9 -38
  144. data/app/models/hyrax/group_behavior.rb +58 -0
  145. data/app/models/hyrax/model_registry.rb +111 -0
  146. data/app/models/hyrax/orcid_validator.rb +0 -6
  147. data/app/models/hyrax/pcdm_collection.rb +1 -7
  148. data/app/models/hyrax/resource.rb +66 -8
  149. data/app/models/hyrax/statistic.rb +1 -1
  150. data/app/models/hyrax/work.rb +3 -12
  151. data/app/presenters/hyrax/collapsable_section_presenter.rb +7 -3
  152. data/app/presenters/hyrax/collection_presenter.rb +0 -17
  153. data/app/presenters/hyrax/embargo_presenter.rb +4 -0
  154. data/app/presenters/hyrax/file_set_presenter.rb +8 -6
  155. data/app/presenters/hyrax/lease_presenter.rb +4 -0
  156. data/app/presenters/hyrax/menu_presenter.rb +14 -2
  157. data/app/presenters/hyrax/pcdm_member_presenter_factory.rb +7 -5
  158. data/app/presenters/hyrax/version_list_presenter.rb +25 -14
  159. data/app/presenters/hyrax/version_presenter.rb +19 -4
  160. data/app/search_builders/hyrax/admin_set_search_builder.rb +1 -1
  161. data/app/search_builders/hyrax/catalog_search_builder.rb +2 -2
  162. data/app/search_builders/hyrax/dashboard/collections_search_builder.rb +5 -3
  163. data/app/search_builders/hyrax/exposed_models_relation.rb +1 -1
  164. data/app/search_builders/hyrax/file_set_search_builder.rb +1 -1
  165. data/app/search_builders/hyrax/filter_by_type.rb +3 -2
  166. data/app/search_builders/hyrax/member_with_files_search_builder.rb +1 -1
  167. data/app/search_builders/hyrax/my/collections_search_builder.rb +2 -2
  168. data/app/search_builders/hyrax/my/find_works_search_builder.rb +8 -3
  169. data/app/services/hyrax/access_control_list.rb +21 -4
  170. data/app/services/hyrax/action/create_valkyrie_work.rb +80 -0
  171. data/app/services/hyrax/admin_set_create_service.rb +7 -20
  172. data/app/services/hyrax/admin_set_service.rb +2 -2
  173. data/app/services/hyrax/characterization/valkyrie_characterization_service.rb +5 -0
  174. data/app/services/hyrax/collections/collection_member_search_service.rb +2 -0
  175. data/app/services/hyrax/collections/collection_member_service.rb +1 -1
  176. data/app/services/hyrax/collections/permissions_service.rb +27 -9
  177. data/app/services/hyrax/custom_queries/find_collections_by_type.rb +1 -1
  178. data/app/services/hyrax/custom_queries/find_file_metadata.rb +1 -1
  179. data/app/services/hyrax/custom_queries/navigators/find_files.rb +1 -1
  180. data/app/services/hyrax/custom_queries/navigators/parent_work_navigator.rb +1 -1
  181. data/app/services/hyrax/edit_permissions_service.rb +1 -1
  182. data/app/services/hyrax/embargo_manager.rb +44 -17
  183. data/app/services/hyrax/embargo_service.rb +12 -10
  184. data/app/services/hyrax/file_set_derivatives_service.rb +11 -11
  185. data/app/services/hyrax/file_set_file_service.rb +21 -10
  186. data/app/services/hyrax/fixity_check_failure_service.rb +1 -1
  187. data/app/services/hyrax/form_factory.rb +1 -1
  188. data/app/services/hyrax/identifier/dispatcher.rb +9 -2
  189. data/app/services/hyrax/lease_manager.rb +39 -16
  190. data/app/services/hyrax/lease_service.rb +12 -6
  191. data/app/services/hyrax/listeners/acl_index_listener.rb +1 -1
  192. data/app/services/hyrax/listeners/active_fedora_acl_index_listener.rb +1 -1
  193. data/app/services/hyrax/listeners/file_metadata_listener.rb +14 -6
  194. data/app/services/hyrax/listeners/member_cleanup_listener.rb +12 -24
  195. data/app/services/hyrax/listeners/metadata_index_listener.rb +11 -0
  196. data/app/services/hyrax/listeners/object_lifecycle_listener.rb +5 -1
  197. data/app/services/hyrax/listeners/trophy_cleanup_listener.rb +2 -1
  198. data/app/services/hyrax/listeners/workflow_listener.rb +13 -0
  199. data/app/services/hyrax/listeners.rb +2 -1
  200. data/app/services/hyrax/location_service.rb +3 -0
  201. data/app/services/hyrax/lock_manager.rb +1 -2
  202. data/app/services/hyrax/multiple_membership_checker.rb +1 -1
  203. data/app/services/hyrax/simple_schema_loader.rb +32 -1
  204. data/app/services/hyrax/solr_service.rb +19 -5
  205. data/app/services/hyrax/statistics/collections/over_time.rb +1 -1
  206. data/app/services/hyrax/statistics/query_service.rb +6 -0
  207. data/app/services/hyrax/valkyrie_persist_derivatives.rb +12 -5
  208. data/app/services/hyrax/valkyrie_upload.rb +13 -27
  209. data/app/services/hyrax/versioning_service.rb +29 -15
  210. data/app/services/hyrax/work_uploads_handler.rb +6 -5
  211. data/app/validators/hyrax/collection_membership_validator.rb +1 -1
  212. data/app/views/_user_util_links.html.erb +1 -1
  213. data/app/views/catalog/_search_form.html.erb +1 -1
  214. data/app/views/collections/edit_fields/_based_near.html.erb +11 -7
  215. data/app/views/hyrax/admin/admin_sets/_form_participants.html.erb +67 -67
  216. data/app/views/hyrax/admin/admin_sets/edit.html.erb +1 -1
  217. data/app/views/hyrax/admin/collection_types/_form_participants.html.erb +3 -1
  218. data/app/views/hyrax/admin/collection_types/index.html.erb +1 -1
  219. data/app/views/hyrax/base/_attribute_rows.html.erb +1 -0
  220. data/app/views/hyrax/base/_base_form_files_prepend.html.erb +4 -0
  221. data/app/views/hyrax/base/_file_manager_resource_form.html.erb +1 -1
  222. data/app/views/hyrax/base/_form_files.html.erb +65 -64
  223. data/app/views/hyrax/base/_form_visibility_component.html.erb +4 -4
  224. data/app/views/hyrax/base/_show_actions.html.erb +1 -1
  225. data/app/views/hyrax/base/_workflow_actions.html.erb +25 -23
  226. data/app/views/hyrax/base/show.html.erb +2 -3
  227. data/app/views/hyrax/base/show.json.jbuilder +2 -1
  228. data/app/views/hyrax/collections/_show_document_list_row.html.erb +1 -1
  229. data/app/views/hyrax/collections/show.html.erb +7 -9
  230. data/app/views/hyrax/dashboard/_sidebar.html.erb +4 -3
  231. data/app/views/hyrax/dashboard/collections/_form_share_table.html.erb +2 -2
  232. data/app/views/hyrax/dashboard/collections/_list_collections.html.erb +1 -1
  233. data/app/views/hyrax/dashboard/collections/_show_document_list_row.html.erb +1 -1
  234. data/app/views/hyrax/dashboard/collections/_sort_and_per_page.html.erb +3 -3
  235. data/app/views/hyrax/file_sets/_versioning.html.erb +5 -5
  236. data/app/views/hyrax/file_sets/media_display/_audio.html.erb +5 -5
  237. data/app/views/hyrax/file_sets/media_display/_default.html.erb +1 -1
  238. data/app/views/hyrax/file_sets/media_display/_video.html.erb +3 -3
  239. data/app/views/hyrax/my/_search_form.html.erb +1 -1
  240. data/app/views/hyrax/my/facet.html.erb +1 -1
  241. data/app/views/hyrax/notifications/_notifications.html.erb +1 -1
  242. data/app/views/hyrax/users/_vitals.html.erb +1 -1
  243. data/app/views/layouts/_head_tag_content.html.erb +1 -0
  244. data/app/views/shared/_footer.html.erb +1 -1
  245. data/bin/dev-entrypoint.sh +13 -0
  246. data/chart/hyrax/Chart.yaml +5 -5
  247. data/chart/hyrax/templates/_helpers.tpl +8 -0
  248. data/chart/hyrax/templates/configmap-env.yaml +1 -1
  249. data/chart/hyrax/values.yaml +12 -1
  250. data/config/initializers/file_length_patch.rb +10 -0
  251. data/config/initializers/listeners.rb +1 -1
  252. data/config/locales/hyrax.de.yml +5 -0
  253. data/config/locales/hyrax.en.yml +10 -0
  254. data/config/locales/hyrax.es.yml +5 -0
  255. data/config/locales/hyrax.fr.yml +5 -0
  256. data/config/locales/hyrax.it.yml +5 -0
  257. data/config/locales/hyrax.pt-BR.yml +5 -0
  258. data/config/locales/hyrax.zh.yml +5 -0
  259. data/config/metadata/basic_metadata.yaml +53 -0
  260. data/config/metadata/core_metadata.yaml +6 -0
  261. data/config/metadata/file_set_metadata.yaml +21 -0
  262. data/config/metadata/hyrax_internal_metadata.yaml +57 -0
  263. data/docker-compose-koppie.yml +26 -25
  264. data/docker-compose-sirenia.yml +202 -0
  265. data/docker-compose.yml +27 -24
  266. data/documentation/developing-your-hyrax-based-app.md +77 -60
  267. data/hyrax.gemspec +18 -12
  268. data/karma.conf.js +1 -1
  269. data/lib/generators/hyrax/collection_resource/templates/collection_indexer.rb.erb +1 -1
  270. data/lib/generators/hyrax/collection_resource/templates/collection_metadata.yaml +2 -0
  271. data/lib/generators/hyrax/config_generator.rb +12 -0
  272. data/lib/generators/hyrax/install_generator.rb +37 -7
  273. data/lib/generators/hyrax/listeners_generator.rb +18 -0
  274. data/lib/generators/hyrax/models_generator.rb +1 -10
  275. data/lib/generators/hyrax/riiif_generator.rb +6 -4
  276. data/lib/generators/hyrax/templates/.env +9 -0
  277. data/lib/generators/hyrax/templates/.lando.yml +50 -0
  278. data/lib/generators/hyrax/templates/app/listeners/hyrax_listener.rb +81 -0
  279. data/lib/generators/hyrax/templates/app/models/file_set.rb +1 -2
  280. data/lib/generators/hyrax/templates/config/initializers/1_valkyrie.rb +102 -0
  281. data/lib/generators/hyrax/templates/config/initializers/file_services.rb +6 -0
  282. data/lib/generators/hyrax/templates/config/initializers/hyrax.rb +41 -5
  283. data/lib/generators/hyrax/templates/config/initializers/publisher.rb +3 -0
  284. data/lib/generators/hyrax/templates/config/initializers/riiif.rb +90 -19
  285. data/lib/generators/hyrax/templates/config/locales/hyrax.de.yml +1 -1
  286. data/lib/generators/hyrax/templates/config/locales/hyrax.en.yml +1 -1
  287. data/lib/generators/hyrax/templates/config/locales/hyrax.es.yml +1 -1
  288. data/lib/generators/hyrax/templates/config/locales/hyrax.fr.yml +1 -1
  289. data/lib/generators/hyrax/templates/config/locales/hyrax.it.yml +1 -1
  290. data/lib/generators/hyrax/templates/config/locales/hyrax.pt-BR.yml +1 -1
  291. data/lib/generators/hyrax/templates/config/locales/hyrax.zh.yml +1 -1
  292. data/lib/generators/hyrax/templates/config/redis.yml +3 -6
  293. data/lib/generators/hyrax/templates/config/valkyrie_index.yml +4 -9
  294. data/lib/generators/hyrax/templates/db/migrate/20230725222727_create_hyrax_counter_metrics.rb.erb +14 -0
  295. data/lib/generators/hyrax/templates/db/migrate/20230803165135_change_work_id_to_string.rb.erb +5 -0
  296. data/lib/generators/hyrax/templates/db/migrate/20230808102105_add_indices_to_hyrax_counter_metrics.rb.erb +8 -0
  297. data/lib/generators/hyrax/templates/db/migrate/20230821153635_add_fields_to_counter_metric.rb.erb +8 -0
  298. data/lib/generators/hyrax/templates/db/seeds.rb +1 -1
  299. data/lib/generators/hyrax/work_resource/templates/form.rb.erb +1 -1
  300. data/lib/generators/hyrax/work_resource/templates/indexer.rb.erb +1 -1
  301. data/lib/generators/hyrax/work_resource/templates/metadata.yaml +2 -0
  302. data/lib/hyrax/configuration.rb +241 -55
  303. data/lib/hyrax/controlled_vocabularies/location.rb +7 -1
  304. data/lib/hyrax/engine.rb +0 -1
  305. data/lib/hyrax/form_fields.rb +6 -0
  306. data/lib/hyrax/indexer.rb +1 -1
  307. data/lib/hyrax/publisher.rb +9 -2
  308. data/lib/hyrax/redis_event_store.rb +7 -8
  309. data/lib/hyrax/resource_name.rb +4 -0
  310. data/lib/hyrax/resource_sync/change_list_writer.rb +1 -1
  311. data/lib/hyrax/resource_sync/resource_list_writer.rb +1 -1
  312. data/lib/hyrax/specs/capybara.rb +26 -42
  313. data/lib/hyrax/specs/shared_specs/hydra_works.rb +112 -27
  314. data/lib/hyrax/specs/shared_specs/indexers.rb +25 -7
  315. data/lib/hyrax/transactions/admin_set_destroy.rb +2 -1
  316. data/lib/hyrax/transactions/collection_destroy.rb +3 -2
  317. data/lib/hyrax/transactions/container.rb +47 -0
  318. data/lib/hyrax/transactions/file_metadata_destroy.rb +20 -0
  319. data/lib/hyrax/transactions/file_set_destroy.rb +3 -1
  320. data/lib/hyrax/transactions/file_set_update.rb +21 -0
  321. data/lib/hyrax/transactions/steps/add_to_parent.rb +2 -1
  322. data/lib/hyrax/transactions/steps/check_for_default_admin_set.rb +32 -0
  323. data/lib/hyrax/transactions/steps/check_for_empty_admin_set.rb +1 -1
  324. data/lib/hyrax/transactions/steps/delete_all_file_metadata.rb +46 -0
  325. data/lib/hyrax/transactions/steps/delete_all_file_sets.rb +46 -0
  326. data/lib/hyrax/transactions/steps/file_metadata_delete.rb +40 -0
  327. data/lib/hyrax/transactions/steps/remove_from_membership.rb +45 -0
  328. data/lib/hyrax/transactions/steps/save.rb +2 -1
  329. data/lib/hyrax/transactions/steps/set_user_as_creator.rb +1 -1
  330. data/lib/hyrax/transactions/steps/update_work_members.rb +2 -0
  331. data/lib/hyrax/transactions/work_destroy.rb +3 -2
  332. data/lib/hyrax/version.rb +1 -1
  333. data/lib/hyrax.rb +1 -0
  334. data/lib/tasks/collection_type_global_id.rake +9 -4
  335. data/lib/tasks/embargo_lease.rake +2 -0
  336. data/lib/valkyrie/indexing/solr/indexing_adapter.rb +22 -6
  337. data/lib/wings/active_fedora_converter/default_work.rb +4 -5
  338. data/lib/wings/active_fedora_converter/file_metadata_node.rb +1 -1
  339. data/lib/wings/active_fedora_converter.rb +6 -0
  340. data/lib/wings/attribute_transformer.rb +24 -17
  341. data/lib/wings/model_registry.rb +8 -0
  342. data/lib/wings/model_transformer.rb +19 -10
  343. data/lib/wings/orm_converter.rb +27 -18
  344. data/lib/wings/services/custom_queries/find_ids_by_model.rb +2 -2
  345. data/lib/wings/setup.rb +2 -2
  346. data/lib/wings/valkyrie/query_service.rb +5 -2
  347. data/lib/wings/valkyrie/storage.rb +8 -90
  348. data/lib/wings.rb +8 -0
  349. data/spec/factories/access_control.rb +12 -0
  350. data/spec/factories/admin_sets.rb +32 -0
  351. data/spec/factories/admin_sets_lw.rb +222 -0
  352. data/spec/factories/administrative_sets.rb +79 -0
  353. data/spec/factories/api_items.rb +92 -0
  354. data/spec/factories/collection_branding_infos.rb +12 -0
  355. data/spec/factories/collection_type_participants.rb +9 -0
  356. data/spec/factories/collection_types.rb +139 -0
  357. data/spec/factories/collections.rb +282 -0
  358. data/spec/factories/collections_factory.rb +107 -0
  359. data/spec/factories/content_blocks.rb +5 -0
  360. data/spec/factories/counter_metrics.rb +12 -0
  361. data/spec/factories/featured_works.rb +5 -0
  362. data/spec/factories/file_sets.rb +45 -0
  363. data/spec/factories/generic_works.rb +200 -0
  364. data/spec/factories/hyrax_collection.rb +92 -0
  365. data/spec/factories/hyrax_default_admin_set.rb +7 -0
  366. data/spec/factories/hyrax_embargo.rb +18 -0
  367. data/spec/factories/hyrax_file_metadata.rb +92 -0
  368. data/spec/factories/hyrax_file_set.rb +129 -0
  369. data/spec/factories/hyrax_lease.rb +18 -0
  370. data/spec/factories/hyrax_resource.rb +15 -0
  371. data/spec/factories/hyrax_work.rb +221 -0
  372. data/spec/factories/object_id.rb +7 -0
  373. data/spec/factories/operations.rb +22 -0
  374. data/spec/factories/permission.rb +7 -0
  375. data/spec/factories/permission_template_accesses.rb +17 -0
  376. data/spec/factories/permission_templates.rb +111 -0
  377. data/spec/factories/proxy_deposit_requests.rb +7 -0
  378. data/spec/factories/single_use_links.rb +14 -0
  379. data/spec/factories/sipity_entities.rb +17 -0
  380. data/spec/factories/uploaded_files.rb +11 -0
  381. data/spec/factories/users.rb +52 -0
  382. data/spec/factories/workflow_actions.rb +7 -0
  383. data/spec/factories/workflow_states.rb +7 -0
  384. data/spec/factories/workflows.rb +7 -0
  385. data/spec/support/book_resource.rb +36 -0
  386. data/spec/support/can_can_overrides.rb +43 -0
  387. data/spec/support/clean_solr.rb +7 -0
  388. data/spec/support/controller_level_helpers.rb +27 -0
  389. data/spec/support/factory_helpers.rb +94 -0
  390. data/spec/support/fakes/fake_actor.rb +22 -0
  391. data/spec/support/fakes/fake_authority.rb +14 -0
  392. data/spec/support/fakes/fake_search_builder_scope.rb +44 -0
  393. data/spec/support/fakes/indexing_adapter.rb +17 -0
  394. data/spec/support/fakes/test_hydra_group_service.rb +55 -0
  395. data/spec/support/features/batch_edit_actions.rb +37 -0
  396. data/spec/support/features/session_helpers.rb +15 -0
  397. data/spec/support/features/workflow.rb +10 -0
  398. data/spec/support/features.rb +11 -0
  399. data/spec/support/form_with_validations.rb +15 -0
  400. data/spec/support/input_support.rb +12 -0
  401. data/spec/support/logging_formatter.rb +67 -0
  402. data/spec/support/matchers/api_responses.rb +27 -0
  403. data/spec/support/matchers/collection_type_property_matchers.rb +30 -0
  404. data/spec/support/matchers/embargo.rb +9 -0
  405. data/spec/support/matchers/lease.rb +9 -0
  406. data/spec/support/matchers/match_valkyrie_ids_with_af_ids.rb +12 -0
  407. data/spec/support/matchers/pcdm_matchers.rb +34 -0
  408. data/spec/support/matchers/permission.rb +31 -0
  409. data/spec/support/matchers/response_matchers.rb +8 -0
  410. data/spec/support/optional_example.rb +17 -0
  411. data/spec/support/rake.rb +42 -0
  412. data/spec/support/selectors.rb +112 -0
  413. data/spec/support/shared_examples_for_collection_presenter.rb +44 -0
  414. data/spec/support/simple_work.rb +28 -0
  415. data/spec/support/spec_statistic.rb +24 -0
  416. data/spec/support/speedup.rb +7 -0
  417. data/spec/support/statistic_helper.rb +10 -0
  418. data/spec/support/valkyrie_indexing.rb +2 -0
  419. data/spec/support/wings_models.rb +9 -0
  420. data/tasks/hyrax_dev.rake +2 -33
  421. data/template.rb +1 -3
  422. metadata +184 -84
  423. data/.engine_cart.yml +0 -3
  424. data/app/indexers/hyrax/resource_indexer.rb +0 -15
  425. data/app/services/hyrax/characterization/model_wrapper.rb +0 -0
  426. data/app/services/hyrax/custom_queries/find_by_collection_type.rb +0 -0
  427. data/app/services/hyrax/query_service.rb +0 -0
  428. data/app/views/hyrax/users/_user_util_links_extra.html.erb +0 -0
  429. data/lib/hyrax/specs/disable_animations_in_test_environment.rb +0 -53
  430. data/lib/hyrax/specs/shared_specs/valkyrie_storage_versions.rb +0 -9
  431. /data/app/indexers/{hyrax → concerns/hyrax}/thumbnail_indexer.rb +0 -0
@@ -1,24 +1,26 @@
1
1
  # frozen_string_literal: true
2
2
  module Hyrax
3
+ ##
4
+ # Methods for Querying Repository to find Embargoed Objects
3
5
  class EmbargoService < RestrictionService
4
6
  class << self
5
- #
6
- # Methods for Querying Repository to find Embargoed Objects
7
- #
8
-
9
7
  # Returns all assets with embargo release date set to a date in the past
10
- def assets_with_expired_embargoes
8
+ def assets_with_expired_enforced_embargoes
11
9
  builder = Hyrax::ExpiredEmbargoSearchBuilder.new(self)
12
10
  presenters(builder)
13
11
  end
12
+ alias assets_with_expired_embargoes assets_with_expired_enforced_embargoes
14
13
 
15
- # Returns all assets with embargo release date set
16
- # (assumes that when lease visibility is applied to assets
17
- # whose leases have expired, the lease expiration date will be removed from its metadata)
18
- def assets_under_embargo
14
+ ##
15
+ # Returns all assets with embargoes that are currently enforced,
16
+ # regardless of whether the embargoes are active or expired.
17
+ #
18
+ # @see Hyrax::EmbargoManager
19
+ def assets_with_enforced_embargoes
19
20
  builder = Hyrax::EmbargoSearchBuilder.new(self)
20
- presenters(builder)
21
+ presenters(builder).select(&:enforced?)
21
22
  end
23
+ alias assets_under_embargo assets_with_enforced_embargoes
22
24
 
23
25
  # Returns all assets that have had embargoes deactivated in the past.
24
26
  def assets_with_deactivated_embargoes
@@ -5,7 +5,7 @@ module Hyrax
5
5
  attr_reader :file_set
6
6
  delegate :mime_type, to: :file_set
7
7
 
8
- # @param file_set [Hyrax::FileSet] At least for this class, it must have #uri and #mime_type
8
+ # @param file_set [Hyrax::FileSet, Hyrax::FileMetadata] At least for this class, it must have #uri and #mime_type
9
9
  def initialize(file_set)
10
10
  @file_set = file_set
11
11
  end
@@ -31,11 +31,11 @@ module Hyrax
31
31
 
32
32
  def create_derivatives(filename)
33
33
  case mime_type
34
- when *file_set.class.pdf_mime_types then create_pdf_derivatives(filename)
35
- when *file_set.class.office_document_mime_types then create_office_document_derivatives(filename)
36
- when *file_set.class.audio_mime_types then create_audio_derivatives(filename)
37
- when *file_set.class.video_mime_types then create_video_derivatives(filename)
38
- when *file_set.class.image_mime_types then create_image_derivatives(filename)
34
+ when *Hyrax.config.derivative_mime_type_mappings[:pdf] then create_pdf_derivatives(filename)
35
+ when *Hyrax.config.derivative_mime_type_mappings[:office] then create_office_document_derivatives(filename)
36
+ when *Hyrax.config.derivative_mime_type_mappings[:audio] then create_audio_derivatives(filename)
37
+ when *Hyrax.config.derivative_mime_type_mappings[:video] then create_video_derivatives(filename)
38
+ when *Hyrax.config.derivative_mime_type_mappings[:image] then create_image_derivatives(filename)
39
39
  end
40
40
  end
41
41
 
@@ -91,15 +91,15 @@ module Hyrax
91
91
 
92
92
  def create_audio_derivatives(filename)
93
93
  Hydra::Derivatives::AudioDerivatives.create(filename,
94
- outputs: [{ label: 'mp3', format: 'mp3', url: derivative_url('mp3') },
95
- { label: 'ogg', format: 'ogg', url: derivative_url('ogg') }])
94
+ outputs: [{ label: 'mp3', format: 'mp3', url: derivative_url('mp3'), mime_type: 'audio/mpeg', container: 'service_file' },
95
+ { label: 'ogg', format: 'ogg', url: derivative_url('ogg'), mime_type: 'audio/ogg', container: 'service_file' }])
96
96
  end
97
97
 
98
98
  def create_video_derivatives(filename)
99
99
  Hydra::Derivatives::VideoDerivatives.create(filename,
100
- outputs: [{ label: :thumbnail, format: 'jpg', url: derivative_url('thumbnail') },
101
- { label: 'webm', format: 'webm', url: derivative_url('webm') },
102
- { label: 'mp4', format: 'mp4', url: derivative_url('mp4') }])
100
+ outputs: [{ label: :thumbnail, format: 'jpg', url: derivative_url('thumbnail'), mime_type: 'image/jpeg' },
101
+ { label: 'webm', format: 'webm', url: derivative_url('webm'), mime_type: 'video/webm', container: 'service_file' },
102
+ { label: 'mp4', format: 'mp4', url: derivative_url('mp4'), mime_type: 'video/mp4', container: 'service_file' }])
103
103
  end
104
104
 
105
105
  def create_image_derivatives(filename)
@@ -2,8 +2,17 @@
2
2
 
3
3
  module Hyrax
4
4
  ##
5
- # A service for accessing specific Hyrax::FileMetadata objects referenced by a
6
- # Hyrax::FileSet.
5
+ # A service for accessing {Hyrax::FileMetadata} resources by their status
6
+ # within a {Hyrax::FileSet}. For example, this is the home for the abstraction
7
+ # of a "Primary" file for the FileSet, used for versioning and as the default
8
+ # source for the FileSet label, etc...
9
+ #
10
+ # If you're looking for {Hyrax::FileMetadata} by PCDM Use, use the custom
11
+ # queries (e.g. +Hyrax.custom_queries.find_original_file+).
12
+ #
13
+ # @note housing the "primary" file abstraction here allows us to begin
14
+ # separating from the idea that the `pcdmuse:OriginalFile` is special
15
+ # in Hyrax in a hard coded way.
7
16
  class FileSetFileService
8
17
  ##
9
18
  # @!attribute [r] file_set
@@ -23,7 +32,7 @@ module Hyrax
23
32
  end
24
33
 
25
34
  ##
26
- # Return the Hyrax::FileMetadata which should be considered “original” for
35
+ # Return the Hyrax::FileMetadata which should be considered “primary” for
27
36
  # indexing and version‐tracking.
28
37
  #
29
38
  # If +file_set.original_file_id+ is defined, it will be used; otherwise,
@@ -32,7 +41,7 @@ module Hyrax
32
41
  # first file in its :file_ids.
33
42
  #
34
43
  # @return [Hyrax::FileMetadata]
35
- def original_file
44
+ def primary_file
36
45
  if file_set.original_file_id
37
46
  # Always just use original_file_id if it is defined.
38
47
  #
@@ -43,13 +52,15 @@ module Hyrax
43
52
  # Cache the fallback to avoid needing to do this query twice.
44
53
  #
45
54
  # See NOTE above regarding use of :find_file_metadata_by.
46
- @original_file ||= begin
47
- query_service.custom_queries.find_original_file(file_set: file_set)
48
- rescue Valkyrie::Persistence::ObjectNotFoundError
49
- fallback_id = file_set.file_ids.first
50
- query_service.custom_queries.find_file_metadata_by(id: fallback_id) if fallback_id
51
- end
55
+ @primary_file ||= begin
56
+ query_service.custom_queries.find_original_file(file_set: file_set)
57
+ rescue Valkyrie::Persistence::ObjectNotFoundError
58
+ fallback_id = file_set.file_ids.first
59
+ query_service.custom_queries.find_file_metadata_by(id: fallback_id) if fallback_id
60
+ end
52
61
  end
53
62
  end
63
+ alias original_file primary_file
64
+ deprecation_deprecate :original_file
54
65
  end
55
66
  end
@@ -14,7 +14,7 @@ module Hyrax
14
14
  end
15
15
 
16
16
  def message
17
- uri = file_set.original_file.uri.to_s
17
+ uri = checksum_audit_log.checked_uri
18
18
  file_title = file_set.title.first
19
19
  I18n.t('hyrax.notifications.fixity_check_failure.message', log_date: log_date, file_title: file_title, uri: uri)
20
20
  end
@@ -23,7 +23,7 @@ module Hyrax
23
23
  #
24
24
  # @see https://trailblazer.to/2.0/gems/reform/prepopulator.html
25
25
  def build(model, _ability, _controller)
26
- Hyrax::Forms::ResourceForm.for(model).prepopulate!
26
+ Hyrax::Forms::ResourceForm.for(resource: model).prepopulate!
27
27
  end
28
28
  end
29
29
  end
@@ -53,8 +53,15 @@ module Hyrax
53
53
  #
54
54
  # @see #assign_for
55
55
  def assign_for!(object:, attribute: :identifier)
56
- assign_for(object: object, attribute: attribute).save!
57
- object
56
+ result = assign_for(object: object, attribute: attribute)
57
+
58
+ case result
59
+ when Valkyrie::Resource
60
+ Hyrax.persister.save(resource: result)
61
+ else
62
+ result.save
63
+ result
64
+ end
58
65
  end
59
66
  end
60
67
  end
@@ -12,12 +12,13 @@ module Hyrax
12
12
  # date is today or later.
13
13
  # - "Applied" means the lease's pre-expiration visibility has been set on
14
14
  # the resource.
15
- # - "Released" means the lease's post-expiration visibility has been set on
16
- # the resource.
17
15
  # - "Enforced" means the object's visibility matches the pre-expiration
18
16
  # visibility of the lease; i.e. the lease has been applied,
19
17
  # but not released.
20
- # - "Deactivate" means that the existing lease will be removed
18
+ # - "Released" means the leases's post-release visibility has been set on
19
+ # the resource.
20
+ # - "Deactivate" means that the existing lease will be removed, even if it
21
+ # is active
21
22
  #
22
23
  class LeaseManager # rubocop:disable Metrics/ClassLength
23
24
  ##
@@ -53,11 +54,25 @@ module Hyrax
53
54
  .lease
54
55
  end
55
56
 
57
+ # @return [Boolean]
58
+ def deactivate_lease_for(resource:, query_service: Hyrax.query_service)
59
+ new(resource: resource, query_service: query_service)
60
+ .deactivate
61
+ end
62
+
63
+ # @return [Boolean]
64
+ def deactivate_lease_for!(resource:, query_service: Hyrax.query_service)
65
+ new(resource: resource, query_service: query_service)
66
+ .deactivate!
67
+ end
68
+
69
+ # @return [Boolean]
56
70
  def release_lease_for(resource:, query_service: Hyrax.query_service)
57
71
  new(resource: resource, query_service: query_service)
58
72
  .release
59
73
  end
60
74
 
75
+ # @return [Boolean]
61
76
  def release_lease_for!(resource:, query_service: Hyrax.query_service)
62
77
  new(resource: resource, query_service: query_service)
63
78
  .release!
@@ -93,20 +108,15 @@ module Hyrax
93
108
  # rubocop:enable Metrics/AbcSize, Metrics/MethodLength
94
109
  end
95
110
 
111
+ def deactivate
112
+ release(force: true) &&
113
+ nullify(force: true)
114
+ end
115
+
96
116
  # Deactivates the lease and logs a message to the lease_history property
97
117
  def deactivate!
98
- lease_state = lease.active? ? 'active' : 'expired'
99
- lease_record = lease_history_message(
100
- lease_state,
101
- Time.zone.today,
102
- lease.lease_expiration_date,
103
- lease.visibility_during_lease,
104
- lease.visibility_after_lease
105
- )
106
-
107
118
  release(force: true)
108
119
  nullify(force: true)
109
- lease.lease_history += [lease_record]
110
120
  end
111
121
 
112
122
  ##
@@ -153,14 +163,15 @@ module Hyrax
153
163
  ##
154
164
  # Drop the lease by setting its release date and visibility settings to `nil`.
155
165
  #
156
- # @param force [boolean] force the nullify even when the lease period is current
157
- # @return [void]
166
+ # @param force [Boolean] force the nullify even when the lease period is current
167
+ # @return [Boolean]
158
168
  def nullify(force: false)
159
169
  return false if !force && under_lease?
160
170
 
161
171
  lease.lease_expiration_date = nil
162
172
  lease.visibility_during_lease = nil
163
173
  lease.visibility_after_lease = nil
174
+ true
164
175
  end
165
176
 
166
177
  ##
@@ -172,6 +183,18 @@ module Hyrax
172
183
  # @return [Boolean]
173
184
  def release(force: false)
174
185
  return false if !force && under_lease?
186
+
187
+ lease_state = lease.active? ? 'active' : 'expired'
188
+ history_record = lease_history_message(
189
+ lease_state,
190
+ Hyrax::TimeService.time_in_utc,
191
+ lease.lease_expiration_date,
192
+ lease.visibility_during_lease,
193
+ lease.visibility_after_lease
194
+ )
195
+
196
+ lease.lease_history += [history_record]
197
+
175
198
  return true if lease.visibility_after_lease.nil?
176
199
 
177
200
  resource.visibility = lease.visibility_after_lease
@@ -202,7 +225,7 @@ module Hyrax
202
225
  [:visibility_after_lease, :visibility_during_lease, :lease_expiration_date]
203
226
  end
204
227
 
205
- # Create the log message used when deactivating a lease
228
+ # Create the log message used when releasing a lease
206
229
  def lease_history_message(state, deactivate_date, expiration_date, visibility_during, visibility_after)
207
230
  I18n.t 'hydra.lease.history_message',
208
231
  state: state,
@@ -1,20 +1,26 @@
1
1
  # frozen_string_literal: true
2
2
  module Hyrax
3
+ ##
4
+ # Methods for Querying Repository to find Objects with leases
3
5
  class LeaseService < RestrictionService
4
6
  class << self
5
7
  # Returns all assets with lease expiration date set to a date in the past
6
- def assets_with_expired_leases
8
+ def assets_with_expired_enforced_leases
7
9
  builder = Hyrax::ExpiredLeaseSearchBuilder.new(self)
8
10
  presenters(builder)
9
11
  end
12
+ alias assets_with_expired_leases assets_with_expired_enforced_leases
10
13
 
11
- # Returns all assets with lease expiration date set
12
- # (assumes that when lease visibility is applied to assets
13
- # whose leases have expired, the lease expiration date will be removed from its metadata)
14
- def assets_under_lease
14
+ ##
15
+ # Returns all assets with leases that are currently enforced,
16
+ # regardless of whether the leases are active or expired.
17
+ #
18
+ # @see Hyrax::LeaseManager
19
+ def assets_with_enforced_leases
15
20
  builder = Hyrax::LeaseSearchBuilder.new(self)
16
- presenters(builder)
21
+ presenters(builder).select(&:enforced?)
17
22
  end
23
+ alias assets_under_lease assets_with_enforced_leases
18
24
 
19
25
  # Returns all assets that have had embargoes deactivated in the past.
20
26
  def assets_with_deactivated_leases
@@ -7,7 +7,7 @@ module Hyrax
7
7
  #
8
8
  # Hyrax's `Ability` behavior depends on the index being up-to-date as
9
9
  # concerns-their read/write users/groups, and visibility.
10
- class AclIndexListener
10
+ class ACLIndexListener
11
11
  ##
12
12
  # Re-index the resource for the updated ACL.
13
13
  #
@@ -7,7 +7,7 @@ module Hyrax
7
7
  #
8
8
  # Hyrax's `Ability` behavior depends on the index being up-to-date as
9
9
  # concerns-their read/write users/groups, and visibility.
10
- class ActiveFedoraAclIndexListener
10
+ class ActiveFedoraACLIndexListener
11
11
  ##
12
12
  # Re-index the resource for the updated ACL.
13
13
  #
@@ -12,8 +12,16 @@ module Hyrax
12
12
  # @param [Dry::Events::Event] event
13
13
  # @return [void]
14
14
  def on_file_characterized(event)
15
- CreateDerivativesJob
16
- .perform_later(event[:file_set], event[:file_id], event[:path_hint])
15
+ file_set = event[:file_set]
16
+
17
+ case file_set
18
+ when ActiveFedora::Base # ActiveFedora
19
+ CreateDerivativesJob
20
+ .perform_later(file_set, event[:file_id], event[:path_hint])
21
+ else
22
+ ValkyrieCreateDerivativesJob
23
+ .perform_later(file_set.id.to_s, event[:file_id])
24
+ end
17
25
  end
18
26
 
19
27
  ##
@@ -39,10 +47,10 @@ module Hyrax
39
47
  # @param [Dry::Events::Event] event
40
48
  # @return [void]
41
49
  def on_file_uploaded(event)
42
- # Run characterization
43
- Hyrax.config
44
- .characterization_service
45
- .run(metadata: event[:metadata], file: event[:metadata].file)
50
+ # Run characterization for original file only
51
+ return unless event[:metadata]&.original_file?
52
+
53
+ ValkyrieCharacterizationJob.perform_later(event[:metadata].id.to_s)
46
54
  end
47
55
  end
48
56
  end
@@ -9,37 +9,25 @@ module Hyrax
9
9
  # @param [Dry::Events::Event] event
10
10
  # @return [void]
11
11
  def on_object_deleted(event)
12
- return unless event.payload.key?(:object) # legacy callback
13
- return if event[:object].is_a?(ActiveFedora::Base) # handled by legacy code
12
+ event = event.to_h
13
+ return unless event[:object]
14
14
 
15
- Hyrax.custom_queries.find_child_file_sets(resource: event[:object]).each do |file_set|
16
- Hyrax.persister.delete(resource: file_set)
17
- Hyrax.publisher
18
- .publish('object.deleted', object: file_set, id: file_set.id, user: event[:user])
19
- rescue StandardError # we don't uncaught errors looping filesets
20
- Hyrax.logger.warn "Failed to delete #{file_set.class}:#{file_set.id} " \
21
- "during cleanup for resource: #{event[:object]}. " \
22
- 'This member may now be orphaned.'
15
+ object = event[:object]
16
+ user = event[:user]
17
+ return unless object.is_a?(Hyrax::Work)
18
+
19
+ Hyrax.query_service.find_parents(resource: object).each do |parent|
20
+ parent.member_ids -= [object.id]
21
+ Hyrax.persister.save(resource: parent)
22
+ Hyrax.index_adapter.save(resource: parent)
23
+ Hyrax.publisher.publish('object.membership.updated', object: parent, user: user)
23
24
  end
24
25
  end
25
26
 
26
27
  # Called when 'collection.deleted' event is published
27
28
  # @param [Dry::Events::Event] event
28
29
  # @return [void]
29
- def on_collection_deleted(event)
30
- return unless event.payload.key?(:collection) # legacy callback
31
- return if event[:collection].is_a?(ActiveFedora::Base) # handled by legacy code
32
-
33
- Hyrax.custom_queries.find_members_of(collection: event[:collection]).each do |resource|
34
- resource.member_of_collection_ids -= [event[:collection].id]
35
- Hyrax.persister.save(resource: resource)
36
- Hyrax.publisher
37
- .publish('collection.membership.updated', collection: event[:collection], user: event[:user])
38
- rescue StandardError
39
- Hyrax.logger.warn "Failed to remove collection reference from #{work.class}:#{work.id} " \
40
- "during cleanup for collection: #{event[:collection]}. "
41
- end
42
- end
30
+ def on_collection_deleted(event); end
43
31
  end
44
32
  end
45
33
  end
@@ -83,6 +83,17 @@ module Hyrax
83
83
  Hyrax.index_adapter.delete(resource: event[:collection])
84
84
  end
85
85
 
86
+ ##
87
+ # Remove the resource from the index.
88
+ #
89
+ # Called when 'file.metadata.deleted' event is published
90
+ # @param [Dry::Events::Event] event
91
+ # @return [void]
92
+ def on_file_metadata_deleted(event)
93
+ return unless resource? event.payload[:metadata]
94
+ Hyrax.index_adapter.delete(resource: event[:metadata])
95
+ end
96
+
86
97
  private
87
98
 
88
99
  def resource?(resource)
@@ -10,7 +10,11 @@ module Hyrax
10
10
  # @param [Dry::Events::Event] event
11
11
  # @return [void]
12
12
  def on_object_deleted(event)
13
- ContentDeleteEventJob.perform_later(event[:id].to_s, event[:user])
13
+ # Accessing a non-existent key on a Dry::Events::Event will raise a KeyError; hence
14
+ # we cast the event to a hash
15
+ event = event.to_h
16
+ object_id = event[:object]&.id || event[:id]
17
+ ContentDeleteEventJob.perform_later(object_id.to_s, event[:user])
14
18
  end
15
19
 
16
20
  ##
@@ -9,7 +9,8 @@ module Hyrax
9
9
  # @param [Dry::Events::Event] event
10
10
  # @return [void]
11
11
  def on_object_deleted(event)
12
- Trophy.where(work_id: event[:id]).destroy_all
12
+ object_id = event[:object]&.id || event[:id]
13
+ Trophy.where(work_id: object_id).destroy_all
13
14
  rescue StandardError => err
14
15
  Hyrax.logger.warn "Failed to delete trophies for #{event[:id]}. " \
15
16
  'These trophies might be orphaned.' \
@@ -22,6 +22,7 @@ module Hyrax
22
22
  # @param [Dry::Events::Event] event
23
23
  # @return [void]
24
24
  def on_object_deposited(event)
25
+ event = event.to_h
25
26
  return Hyrax.logger.warn("Skipping workflow initialization for #{event[:object]}; no user is given\n\t#{event}") if
26
27
  event[:user].blank?
27
28
 
@@ -30,6 +31,18 @@ module Hyrax
30
31
  # don't error on known sipity error types; log instead
31
32
  Hyrax.logger.error(err)
32
33
  end
34
+
35
+ ##
36
+ # Called when 'object.deleted' event is published
37
+ # @param [Dry::Events::Event] event
38
+ # @return [void]
39
+ def on_object_deleted(event)
40
+ event = event.to_h
41
+ return unless event[:object]
42
+ gid = Hyrax::ValkyrieGlobalIdProxy.new(resource: event[:object]).to_global_id
43
+ return if gid.blank?
44
+ Sipity::Entity.where(proxy_for_global_id: gid.to_s).destroy_all
45
+ end
33
46
  end
34
47
  end
35
48
  end
@@ -17,7 +17,8 @@ module Hyrax
17
17
  module Listeners
18
18
  extend ActiveSupport::Autoload
19
19
 
20
- autoload :AclIndexListener
20
+ autoload :ACLIndexListener
21
+ autoload :ActiveFedoraACLIndexListener
21
22
  autoload :BatchNotificationListener
22
23
  autoload :FileMetadataListener
23
24
  autoload :FileSetLifecycleListener
@@ -10,6 +10,9 @@ module Hyrax
10
10
  Rails.cache.fetch(cache_key(id), expires_in: CACHE_EXPIRATION) do
11
11
  label.call(find(id))
12
12
  end
13
+ rescue URI::InvalidURIError
14
+ # Old data may be just a string, display it.
15
+ uri
13
16
  end
14
17
 
15
18
  private
@@ -47,11 +47,10 @@ module Hyrax
47
47
  # @api private
48
48
  #
49
49
  # @note support both a ConnectionPool and a raw Redis client for now.
50
- # we should drop support for `Redis.current` in 5.0.0.
51
50
  # `#then` supports both options. for a ConnectionPool it will block
52
51
  # until a connection is available.
53
52
  def pool
54
- Hyrax.config.redis_connection || Redis.current
53
+ Hyrax.config.redis_connection || Redis.new
55
54
  end
56
55
  end
57
56
  end
@@ -145,7 +145,7 @@ module Hyrax
145
145
  def collection_titles_from_list(collection_list)
146
146
  collection_list.map do |collection|
147
147
  collection.title.first
148
- end.to_sentence
148
+ end.sort.to_sentence
149
149
  end
150
150
  end
151
151
  end
@@ -15,7 +15,7 @@ module Hyrax
15
15
  # types
16
16
  def attributes_for(schema:)
17
17
  definitions(schema).each_with_object({}) do |definition, hash|
18
- hash[definition.name] = definition.type
18
+ hash[definition.name] = definition.type.meta(definition.config)
19
19
  end
20
20
  end
21
21
 
@@ -43,6 +43,12 @@ module Hyrax
43
43
  end
44
44
  end
45
45
 
46
+ def permissive_schema_for_valkrie_adapter
47
+ metadata_files.each_with_object({}) do |schema_name, ret_hsh|
48
+ predicate_pairs(ret_hsh, schema_name)
49
+ end
50
+ end
51
+
46
52
  ##
47
53
  # @api private
48
54
  class AttributeDefinition
@@ -154,5 +160,30 @@ module Hyrax
154
160
  def config_search_paths
155
161
  [Rails.root, Hyrax::Engine.root]
156
162
  end
163
+
164
+ def metadata_files
165
+ file_name_arr = []
166
+ config_search_paths.each { |root_path| file_name_arr += Dir.entries(root_path.to_s + "/config/metadata/") }
167
+ file_name_arr.reject { |fn| !fn.include?('.yaml') }.uniq.map { |y| y.gsub('.yaml', '') }
168
+ end
169
+
170
+ def predicate_pairs(ret_hsh, schema_name)
171
+ schema_config(schema_name)['attributes'].each do |name, config|
172
+ predicate = RDF::URI(config['predicate'])
173
+ if ret_hsh[name].blank?
174
+ ret_hsh[name.to_sym] = predicate
175
+ elsif ret_hsh[name] != predicate
176
+ multiple_predicate_message(name, ret_hsh[name], predicate)
177
+ end
178
+ end
179
+ end
180
+
181
+ def multiple_predicate_message(name, existing, incoming)
182
+ message = "The attribute of #{name} has been assigned a predicate multiple times " \
183
+ "within the metadata YAMLs. Please be aware that once the attribute's " \
184
+ "predicate value is first assigned, any other value will be ignored. " \
185
+ "The existing value is #{existing} preventing the use of #{incoming}"
186
+ Hyrax.logger.warn(message)
187
+ end
157
188
  end
158
189
  end
@@ -9,6 +9,22 @@ module Hyrax
9
9
  class SolrService
10
10
  COMMIT_PARAMS = { softCommit: true }.freeze
11
11
 
12
+ ##
13
+ # @!group Class Attributes
14
+ #
15
+ # @!attribute additional_solr_get_and_post_params
16
+ #
17
+ # ActiveFedora::SolrService always assumed that it would pass `qt: 'standard'`. However, as
18
+ # Valkyrie arrived, we have a case where we would not pass the `qt: standard`. We're favoring
19
+ # a default value to preserve prior expectations that ActiveFedora::SolrService set and to not
20
+ # suddenly break those that switch to Valkyrie and Hyrax::SolrService.
21
+ #
22
+ # @return [Hash<Symbol, String>]
23
+ # @see https://github.com/samvera/hyrax/pull/6677
24
+ class_attribute :additional_solr_get_and_post_params, default: { qt: 'standard' }
25
+ # @!endgroup Class Attributes
26
+ ##
27
+
12
28
  ##
13
29
  # @!attribute [r] use_valkyrie
14
30
  # @private
@@ -17,7 +33,7 @@ module Hyrax
17
33
  delegate :commit, to: :connection
18
34
 
19
35
  def initialize(use_valkyrie: Hyrax.config.query_index_from_valkyrie)
20
- @old_service = ActiveFedora::SolrService
36
+ @old_service = ActiveFedora::SolrService # What hopefully will be the lone reference to ActiveFedora::SolrService
21
37
  @use_valkyrie = use_valkyrie
22
38
  end
23
39
 
@@ -46,9 +62,8 @@ module Hyrax
46
62
  def get(query = nil, **args)
47
63
  # Make Hyrax.config.solr_select_path the default SOLR path
48
64
  solr_path = args.delete(:path) || Hyrax.config.solr_select_path
49
- args = args.merge(q: query) if query.present?
65
+ args = args.merge(additional_solr_get_and_post_params.merge(q: query)) if query.present?
50
66
 
51
- args = args.merge(qt: 'standard') unless query.blank? || use_valkyrie
52
67
  connection.get(solr_path, params: args)
53
68
  end
54
69
 
@@ -66,9 +81,8 @@ module Hyrax
66
81
  def post(query = nil, **args)
67
82
  # Make Hyrax.config.solr_select_path the default SOLR path
68
83
  solr_path = args.delete(:path) || Hyrax.config.solr_select_path
69
- args = args.merge(q: query) if query.present?
84
+ args = args.merge(additional_solr_get_and_post_params.merge(q: query)) if query.present?
70
85
 
71
- args = args.merge(qt: 'standard') unless query.blank? || use_valkyrie
72
86
  connection.post(solr_path, data: args)
73
87
  end
74
88