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
@@ -15,14 +15,29 @@ module Hyrax
15
15
  @current = true
16
16
  end
17
17
 
18
+ def label
19
+ version.try(:label) || version.version_id.to_s
20
+ end
21
+
22
+ def uri
23
+ version.try(:uri) || version.version_id.to_s
24
+ end
25
+
18
26
  def created
19
- @created ||= version.created.in_time_zone.to_formatted_s(:long_ordinal)
27
+ @created ||= created_time&.in_time_zone&.to_formatted_s(:long_ordinal) || "Unknown"
20
28
  end
21
29
 
22
- def committer
30
+ def created_time
31
+ version.try(:created) || version_committer.try(:created_at)
32
+ end
33
+
34
+ def version_committer
23
35
  Hyrax::VersionCommitter
24
- .find_by(version_id: @version.uri)
25
- &.committer_login
36
+ .find_by(version_id: @version.try(:uri) || @version.try(:version_id))
37
+ end
38
+
39
+ def committer
40
+ version_committer&.committer_login
26
41
  end
27
42
  end
28
43
  end
@@ -14,7 +14,7 @@ module Hyrax
14
14
 
15
15
  # This overrides the models in FilterByType
16
16
  def models
17
- [::AdminSet, Hyrax::AdministrativeSet]
17
+ Hyrax::ModelRegistry.admin_set_classes
18
18
  end
19
19
 
20
20
  # Overrides Hydra::AccessControlsEnforcement
@@ -78,8 +78,8 @@ class Hyrax::CatalogSearchBuilder < Hyrax::SearchBuilder
78
78
  "{!dismax v=$user_query}"
79
79
  end
80
80
 
81
- # join from file id to work relationship solrized file_set_ids_ssim
81
+ # join from file id to work relationship solrized member_ids_ssim
82
82
  def join_for_works_from_files
83
- "{!join from=#{Hyrax.config.id_field} to=file_set_ids_ssim}#{dismax_query}"
83
+ "{!join from=#{Hyrax.config.id_field} to=member_ids_ssim v=has_model_ssim:*FileSet}#{dismax_query}"
84
84
  end
85
85
  end
@@ -9,7 +9,7 @@ module Hyrax
9
9
 
10
10
  # This overrides the models in FilterByType
11
11
  def models
12
- [::AdminSet, Hyrax::AdministrativeSet, ::Collection, Hyrax.config.collection_class].uniq.compact
12
+ Hyrax::ModelRegistry.admin_set_classes + Hyrax::ModelRegistry.collection_classes
13
13
  end
14
14
 
15
15
  # adds a filter to exclude collections and admin sets created by the
@@ -18,9 +18,11 @@ module Hyrax
18
18
  def show_only_managed_collections_for_non_admins(solr_parameters)
19
19
  return if current_ability.admin?
20
20
  clauses = [
21
- '-' + ActiveFedora::SolrQueryBuilder.construct_query_for_rel(depositor: current_user_key),
22
- '-' + ActiveFedora::SolrQueryBuilder.construct_query_for_rel(has_model: Hyrax.config.admin_set_model, creator: current_user_key)
21
+ '-' + ActiveFedora::SolrQueryBuilder.construct_query_for_rel(depositor: current_user_key)
23
22
  ]
23
+ Hyrax::ModelRegistry.admin_set_rdf_representations.each do |has_model|
24
+ clauses += ['-' + ActiveFedora::SolrQueryBuilder.construct_query_for_rel(has_model: has_model, creator: current_user_key)]
25
+ end
24
26
  solr_parameters[:fq] ||= []
25
27
  solr_parameters[:fq] += ["(#{clauses.join(' OR ')})"]
26
28
  end
@@ -3,7 +3,7 @@ module Hyrax
3
3
  # A relation that scopes to all user visible models (e.g. works + collections + file sets)
4
4
  class ExposedModelsRelation < AbstractTypeRelation
5
5
  def allowable_types
6
- (Hyrax.config.curation_concerns + [Hyrax.config.collection_class, ::Collection, ::FileSet]).uniq
6
+ Hyrax::ModelRegistry.work_classes + Hyrax::ModelRegistry.collection_classes + Hyrax::ModelRegistry.file_set_classes
7
7
  end
8
8
  end
9
9
  end
@@ -5,7 +5,7 @@ module Hyrax
5
5
 
6
6
  # This overrides the models in FilterByType
7
7
  def models
8
- [::FileSet, ::Hyrax::FileSet]
8
+ Hyrax::ModelRegistry.file_set_classes
9
9
  end
10
10
  end
11
11
  end
@@ -43,7 +43,7 @@ module Hyrax
43
43
  # types from appearing in search results
44
44
  # @return [Array<Class>] the list of work types to include in searches
45
45
  def work_types
46
- Hyrax.config.curation_concerns
46
+ Hyrax::ModelRegistry.work_classes
47
47
  end
48
48
 
49
49
  def work_classes
@@ -53,7 +53,8 @@ module Hyrax
53
53
 
54
54
  def collection_classes
55
55
  return [] if only_works?
56
- [::Collection, Hyrax.config.collection_class].uniq
56
+
57
+ Hyrax::ModelRegistry.collection_classes
57
58
  end
58
59
  end
59
60
  end
@@ -9,7 +9,7 @@ module Hyrax
9
9
  # This is like include_collection_ids, but it also joins the files.
10
10
  def include_contained_files(solr_parameters)
11
11
  solr_parameters[:fq] ||= []
12
- solr_parameters[:fq] << "{!join from=file_set_ids_ssim to=id}{!join from=child_object_ids_ssim to=id}id:#{collection_id}"
12
+ solr_parameters[:fq] << "{!join from=member_ids_ssim to=id}{!join from=child_object_ids_ssim to=id}id:#{collection_id}"
13
13
  end
14
14
 
15
15
  # include filters into the query to only include the collection memebers
@@ -18,7 +18,7 @@ class Hyrax::My::CollectionsSearchBuilder < ::Hyrax::CollectionSearchBuilder
18
18
  # This overrides the models in FilterByType
19
19
  # @return [Array<Class>] a list of classes to include
20
20
  def models
21
- [::AdminSet, Hyrax::AdministrativeSet, ::Collection, Hyrax.config.collection_class].uniq.compact
21
+ Hyrax::ModelRegistry.admin_set_classes + Hyrax::ModelRegistry.collection_classes
22
22
  end
23
23
 
24
24
  private
@@ -26,7 +26,7 @@ class Hyrax::My::CollectionsSearchBuilder < ::Hyrax::CollectionSearchBuilder
26
26
  def query_for_my_collections
27
27
  query_service = Hyrax::SolrQueryService.new
28
28
  query_service.with_field_pairs(field_pairs: { depositor_ssim: current_user_key }, type: 'terms')
29
- query_service.with_field_pairs(field_pairs: { has_model_ssim: Hyrax.config.admin_set_model,
29
+ query_service.with_field_pairs(field_pairs: { has_model_ssim: Hyrax::ModelRegistry.admin_set_rdf_representations.join(','),
30
30
  creator_ssim: current_user_key }, type: 'terms')
31
31
  query_service.build(join_with: 'OR')
32
32
  end
@@ -20,11 +20,11 @@ class Hyrax::My::FindWorksSearchBuilder < Hyrax::My::SearchBuilder
20
20
 
21
21
  def show_only_other_works(solr_parameters)
22
22
  solr_parameters[:fq] ||= []
23
- solr_parameters[:fq] += ["-#{Hyrax::SolrQueryBuilderService.construct_query_for_ids([@id])}"]
23
+ solr_parameters[:fq] += ["-#{Hyrax::SolrQueryBuilderService.construct_query_for_ids([parsed_id])}"]
24
24
  end
25
25
 
26
26
  def show_only_works_not_child(solr_parameters)
27
- ids = Hyrax::SolrService.query("{!field f=id}#{@id}", fl: "member_ids_ssim", rows: 10_000).flat_map { |x| x.fetch("member_ids_ssim", []) }
27
+ ids = Hyrax::SolrService.query("{!field f=id}#{parsed_id}", fl: "member_ids_ssim", rows: 10_000).flat_map { |x| x.fetch("member_ids_ssim", []) }
28
28
  solr_parameters[:fq] ||= []
29
29
  solr_parameters[:fq] += ["-#{Hyrax::SolrQueryBuilderService.construct_query_for_ids([ids])}"]
30
30
  end
@@ -32,11 +32,16 @@ class Hyrax::My::FindWorksSearchBuilder < Hyrax::My::SearchBuilder
32
32
  def show_only_works_not_parent(solr_parameters)
33
33
  solr_parameters[:fq] ||= []
34
34
  solr_parameters[:fq] += [
35
- "-" + Hyrax::SolrQueryBuilderService.construct_query(member_ids_ssim: @id)
35
+ "-" + Hyrax::SolrQueryBuilderService.construct_query(member_ids_ssim: parsed_id)
36
36
  ]
37
37
  end
38
38
 
39
39
  def only_works?
40
40
  true
41
41
  end
42
+
43
+ # Since Valkyrie objects pass is an Id object, additional parsing is needed.
44
+ def parsed_id
45
+ @id.is_a?(String) ? @id : @id.id
46
+ end
42
47
  end
@@ -48,14 +48,24 @@ module Hyrax
48
48
  # # => #<Set: {#<Hyrax::Permission access_to=#<Valkyrie::ID:0x000055628b0ae0b8 @id="my_id"> agent="group/public" mode=:read>}>
49
49
  class AccessControlList
50
50
  ##
51
- # @!attribute [rw] resource
51
+ # @!attribute [r] resource
52
52
  # @return [Valkyrie::Resource]
53
53
  # @!attribute [r] persister
54
54
  # @return [#save]
55
55
  # @!attribute [r] query_service
56
56
  # @return [#find_inverse_references_by]
57
57
  attr_reader :persister, :query_service
58
- attr_accessor :resource
58
+ attr_reader :resource
59
+
60
+ ##
61
+ # @param value [Valkyrie::Resource]
62
+ # @return [Valkyrie::Resource]
63
+ def resource=(value)
64
+ # We need to remove the memoization as the @resource has changed.
65
+ @change_set = nil
66
+ @access_control_model = nil
67
+ @resource = value
68
+ end
59
69
 
60
70
  ##
61
71
  # @api public
@@ -167,7 +177,14 @@ module Hyrax
167
177
  return true unless pending_changes?
168
178
 
169
179
  change_set.sync
170
- persister.save(resource: change_set.resource)
180
+
181
+ # change_set.resource is a Hyrax::AccessControl
182
+ #
183
+ # We're setting the once fetched access_control_model to what was returned, so as to avoid
184
+ # a refetch
185
+ @access_control_model = persister.save(resource: change_set.resource)
186
+
187
+ # self.resource is a Hyrax::Resource
171
188
  Hyrax.publisher.publish('object.acl.updated', acl: self, result: :success)
172
189
  @change_set = nil
173
190
 
@@ -251,7 +268,7 @@ module Hyrax
251
268
  ##
252
269
  # @api private
253
270
  def access_control_model
254
- AccessControl.for(resource: resource, query_service: query_service)
271
+ @access_control_model ||= AccessControl.for(resource: resource, query_service: query_service)
255
272
  end
256
273
 
257
274
  ##
@@ -0,0 +1,80 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Hyrax
4
+ module Action
5
+ ##
6
+ # @since 5.0.0
7
+ # @api public
8
+ #
9
+ # Encapsulating the logic of several interacting objects. Namely the idea of using a form to
10
+ # {#validate} given parameters then to {#perform} the action by leveraging the {#transactions}'s
11
+ # {#transaction_name} configured with appropriate {#step_args} and ultimately providing the
12
+ # {#form} to then perform that work.
13
+ class CreateValkyrieWork
14
+ ##
15
+ # @!group Class Attributes
16
+ #
17
+ # @!attribute transaction_name
18
+ # @return [String] the name of the transaction that we call for the CreateValkyrieWorkAction.
19
+ class_attribute :transaction_name, default: 'change_set.create_work'
20
+ # @!endgroup Class Attributes
21
+ ##
22
+
23
+ ##
24
+ # @param form [Object] the form that we'll use for validation and performing the action.
25
+ # @param transactions [Hyrax::Transactions::Container] the transactions
26
+ # @param user [User] the person performing the action
27
+ # @param params [Hash] the contextual parameters for the action; ApplicationController#params
28
+ # if you will.
29
+ # @param work_attribute_key [String] the name of the key within the params that contains
30
+ # the work's attributes
31
+ def initialize(form:, transactions:, user:, params:, work_attributes_key:)
32
+ @form = form
33
+ @transactions = transactions
34
+ @user = user
35
+ @params = params
36
+ @work_attributes_key = work_attributes_key
37
+ @work_attributes = @params.fetch(work_attributes_key, {})
38
+ end
39
+
40
+ attr_reader :form, :transactions, :user, :parent_id, :work_attributes, :uploaded_files, :params, :work_attributes_key
41
+
42
+ ##
43
+ # @api public
44
+ # @return [TrueClass] when the object is valid.
45
+ # @return [FalseClass] when the object is valid.
46
+ def validate
47
+ form.validate(work_attributes)
48
+ end
49
+
50
+ ##
51
+ # @api public
52
+ # @return [#value_or] the resulting created work, when successful. When not successful, the
53
+ # returned value call the given block.
54
+ def perform
55
+ transactions[transaction_name].with_step_args(**step_args).call(form)
56
+ end
57
+
58
+ ##
59
+ # @api public
60
+ #
61
+ # @return [Hash<String,Hash>] the step args to use for the given {#transactions}'s
62
+ # {.transaction_name}
63
+ def step_args
64
+ {
65
+ 'work_resource.add_to_parent' => { parent_id: params[:parent_id], user: user },
66
+ 'work_resource.add_file_sets' => { uploaded_files: uploaded_files, file_set_params: work_attributes[:file_set] },
67
+ 'change_set.set_user_as_depositor' => { user: user },
68
+ 'work_resource.change_depositor' => { user: ::User.find_by_user_key(form.on_behalf_of) },
69
+ 'work_resource.save_acl' => { permissions_params: form.input_params["permissions"] }
70
+ }
71
+ end
72
+
73
+ # rubocop:disable Lint/DuplicateMethods
74
+ def uploaded_files
75
+ UploadedFile.find(params.fetch(:uploaded_files, []))
76
+ end
77
+ # rubocop:enable Lint/DuplicateMethods
78
+ end
79
+ end
80
+ end
@@ -18,23 +18,6 @@ module Hyrax
18
18
  self.default_admin_set_persister = Hyrax::DefaultAdministrativeSet
19
19
 
20
20
  class << self
21
- # @api public
22
- # Creates the default Hyrax::AdministrativeSet and corresponding data
23
- # @param admin_set_id [String] The default admin set ID
24
- # @param title [Array<String>] The title of the default admin set
25
- # @return [TrueClass]
26
- # @see Hyrax::AdministrativeSet
27
- # @deprecated
28
- # TODO: When this deprecated method is removed, update private method
29
- # .create_default_admin_set! to remove the parameters.
30
- def create_default_admin_set(admin_set_id: DEFAULT_ID, title: DEFAULT_TITLE)
31
- Deprecation.warn("'##{__method__}' will be removed in Hyrax 4.0. " \
32
- "Instead, use 'Hyrax::AdminSetCreateService.find_or_create_default_admin_set'.")
33
- create_default_admin_set!(admin_set_id: admin_set_id, title: title).present?
34
- rescue RuntimeError => _err
35
- false
36
- end
37
-
38
21
  # @api public
39
22
  # Finds the default AdministrativeSet if it exists; otherwise, creates it and corresponding data
40
23
  # @return [Hyrax::AdministrativeSet] The default admin set.
@@ -101,12 +84,16 @@ module Hyrax
101
84
  # Create an instance of `Hyrax::AdministrativeSet` with the suggested_id if supported.
102
85
  # @return [Hyrax::AdministrativeSet] the new admin set
103
86
  def create_admin_set(suggested_id:, title:)
104
- if suggested_id.blank? || Hyrax.config.disable_wings || !Hyrax.metadata_adapter.is_a?(Wings::Valkyrie::MetadataAdapter)
87
+ # Leverage the configured admin class, if it is a Valkyrie resource, otherwise fallback.
88
+ # Until we have fully moved to Valkyrie, we will need this logic. Once past, we can
89
+ # use `Hyrax.config.admin_set_class`
90
+ klass = Hyrax.config.admin_set_class < Valkyrie::Resource ? Hyrax.config.admin_set_class : Hyrax::AdministrativeSet
91
+ if suggested_id.blank? || Hyrax.config.disable_wings
105
92
  # allow persister to assign id
106
- Hyrax::AdministrativeSet.new(title: Array.wrap(title))
93
+ klass.new(title: Array.wrap(title))
107
94
  else
108
95
  # use suggested_id
109
- Hyrax::AdministrativeSet.new(id: suggested_id, title: Array.wrap(title))
96
+ klass.new(id: suggested_id, title: Array.wrap(title))
110
97
  end
111
98
  end
112
99
 
@@ -52,8 +52,8 @@ module Hyrax
52
52
  def count_files(admin_sets)
53
53
  file_counts = Hash.new(0)
54
54
  admin_sets.each do |admin_set|
55
- query = "{!join from=file_set_ids_ssim to=id}isPartOf_ssim:#{admin_set.id}"
56
- file_results = Hyrax::SolrService.get(fq: [query, "has_model_ssim:FileSet"], rows: 0)
55
+ query = "{!join from=member_ids_ssim to=id}isPartOf_ssim:#{admin_set.id}"
56
+ file_results = Hyrax::SolrService.get(fq: [query, "{!terms f=has_model_ssim}FileSet,Hyrax::FileSet"], rows: 0)
57
57
  file_counts[admin_set.id] = file_results['response']['numFound']
58
58
  end
59
59
  file_counts
@@ -15,6 +15,11 @@ class Hyrax::Characterization::ValkyrieCharacterizationService
15
15
  new(metadata: metadata, file: file, **options).characterize
16
16
  saved = Hyrax.persister.save(resource: metadata)
17
17
  Hyrax.publisher.publish('file.metadata.updated', metadata: saved, user: user)
18
+
19
+ Hyrax.publisher.publish('file.characterized',
20
+ file_set: Hyrax.query_service.find_by(id: saved.file_set_id),
21
+ file_id: saved.id.to_s,
22
+ path_hint: saved.file_identifier.to_s)
18
23
  end
19
24
 
20
25
  ##
@@ -46,8 +46,10 @@ module Hyrax
46
46
  #
47
47
  # @return [Blacklight::Solr::Response]
48
48
  def available_member_works
49
+ sort_field = user_params[:sort]
49
50
  response, _docs = search_results do |builder|
50
51
  builder.search_includes_models = :works
52
+ builder.merge(sort: sort_field)
51
53
  builder
52
54
  end
53
55
  response
@@ -106,7 +106,7 @@ module Hyrax
106
106
  def add_member(collection_id:, new_member:, user:)
107
107
  message = Hyrax::MultipleMembershipChecker.new(item: new_member).check(collection_ids: [collection_id], include_current_members: true)
108
108
  raise Hyrax::SingleMembershipError, message if message.present?
109
- new_member.member_of_collection_ids << collection_id # only populate this direction
109
+ new_member.member_of_collection_ids += [collection_id] # only populate this direction
110
110
  new_member = Hyrax.persister.save(resource: new_member)
111
111
  publish_metadata_updated(new_member, user)
112
112
  new_member
@@ -1,6 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
  module Hyrax
3
3
  module Collections
4
+ # rubocop:disable Metrics/ClassLength
4
5
  class PermissionsService
5
6
  # @api private
6
7
  #
@@ -20,17 +21,34 @@ module Hyrax
20
21
  end
21
22
  private_class_method :source_ids_for_user
22
23
 
24
+ # rubocop:disable Metrics/MethodLength
23
25
  def self.filter_source(source_type:, ids:)
24
26
  return [] if ids.empty?
25
- model = case source_type
26
- when 'admin_set'
27
- Hyrax::AdministrativeSet
28
- when 'collection'
29
- Hyrax::PcdmCollection
30
- end
27
+ models = case source_type
28
+ when 'admin_set'
29
+ Hyrax::ModelRegistry.admin_set_classes
30
+ when 'collection'
31
+ Hyrax::ModelRegistry.collection_classes
32
+ end
31
33
 
32
- Hyrax.custom_queries.find_ids_by_model(model: model, ids: ids).to_a
34
+ # Antics to cope with all of the how the custom queries work.
35
+ if defined?(Wings::ModelRegistry)
36
+ models = models.map do |model|
37
+ Wings::ModelRegistry.reverse_lookup(model)
38
+ rescue NoMethodError
39
+ nil
40
+ end.compact
41
+ end
42
+
43
+ models.flat_map do |model|
44
+ if model
45
+ Hyrax.custom_queries.find_ids_by_model(model: model, ids: ids).to_a
46
+ else
47
+ []
48
+ end
49
+ end.uniq
33
50
  end
51
+ # rubocop:enable Metrics/MethodLength
34
52
  private_class_method :filter_source
35
53
 
36
54
  # @api private
@@ -203,7 +221,7 @@ module Hyrax
203
221
  end
204
222
  private_class_method :deposit_access_to_collection?
205
223
 
206
- # @api private
224
+ # @api public
207
225
  #
208
226
  # Determine if the given user has :manage access for the given collection
209
227
  #
@@ -215,7 +233,6 @@ module Hyrax
215
233
  def self.manage_access_to_collection?(collection_id:, ability:, exclude_groups: [])
216
234
  access_to_collection?(collection_id: collection_id, access: 'manage', ability: ability, exclude_groups: exclude_groups)
217
235
  end
218
- private_class_method :manage_access_to_collection?
219
236
 
220
237
  # @api private
221
238
  #
@@ -250,5 +267,6 @@ module Hyrax
250
267
  end
251
268
  private_class_method :access_to_collection?
252
269
  end
270
+ # rubocop:enable Metrics/ClassLength
253
271
  end
254
272
  end
@@ -30,7 +30,7 @@ module Hyrax
30
30
  # @return [Enumerable<PcdmCollection>]
31
31
  def find_collections_by_type(global_id:)
32
32
  query_service
33
- .find_all_of_model(model: PcdmCollection)
33
+ .find_all_of_model(model: Hyrax.config.collection_model.safe_constantize)
34
34
  .select { |collection| collection.collection_type_gid == global_id }
35
35
  end
36
36
  end
@@ -64,7 +64,7 @@ module Hyrax
64
64
  # @example
65
65
  # Hyrax.query_service.find_file_metadata_by_use(use: ::RDF::URI("http://pcdm.org/ExtractedText"))
66
66
  def find_many_file_metadata_by_use(resource:, use:)
67
- return [] unless resource.try(:file_ids)
67
+ return [] if resource.try(:file_ids).blank?
68
68
 
69
69
  results = find_many_file_metadata_by_ids(ids: resource.file_ids)
70
70
  results.select { |fm| fm.pcdm_use.include?(use) }
@@ -65,7 +65,7 @@ module Hyrax
65
65
  def find_thumbnail(file_set:)
66
66
  find_exactly_one_file_by_use(
67
67
  file_set: file_set,
68
- use: Hyrax::FileMetadata::Use::THUMBNAIL
68
+ use: Hyrax::FileMetadata::Use::THUMBNAIL_IMAGE
69
69
  )
70
70
  end
71
71
 
@@ -33,7 +33,7 @@ module Hyrax
33
33
  if results.count > 1
34
34
  Hyrax.logger.warn("#{resource.work? ? 'Work' : 'File set'} " \
35
35
  "#{resource.id} is in #{results.count} works when it " \
36
- "should be in no more than one.")
36
+ "should be in no more than one. Found in #{results.map(&:id).join(', ')}.")
37
37
  end
38
38
  results.first
39
39
  end
@@ -215,7 +215,7 @@ module Hyrax
215
215
  # @todo Refactor inner working of code as there's lots of branching logic with potential hidden assumptions.
216
216
  def qualifies_as_unauthorized_collection?(resource:)
217
217
  case resource
218
- when AdminSet, Hyrax::AdministrativeSet
218
+ when *Hyrax::ModelRegistry.admin_set_classes
219
219
  # Prior to this refactor, we looked at AdminSet only; However with the advent of the
220
220
  # Hyrax::AdministrativeSet, we need to test both cases.
221
221
  true
@@ -12,12 +12,13 @@ module Hyrax
12
12
  # date is today or later.
13
13
  # - "Applied" means the embargo's pre-release visibility has been set on
14
14
  # the resource.
15
- # - "Released" means the embargo's post-release visibility has been set on
16
- # the resource.
17
15
  # - "Enforced" means the object's visibility matches the pre-release
18
16
  # visibility of the embargo; i.e. the embargo has been applied,
19
17
  # but not released.
20
- # - "Deactivate" means that the existing embargo will be removed
18
+ # - "Released" means the embargo's post-release visibility has been set on
19
+ # the resource.
20
+ # - "Deactivate" means that the existing embargo will be removed, even
21
+ # if it active.
21
22
  #
22
23
  # Note that an resource may be `#under_embargo?` even if the embargo is not
23
24
  # be `#enforced?` (in this case, the application should seek to apply the
@@ -109,11 +110,25 @@ module Hyrax
109
110
  .embargo
110
111
  end
111
112
 
113
+ # @return [Boolean]
114
+ def deactivate_embargo_for(resource:, query_service: Hyrax.query_service)
115
+ new(resource: resource, query_service: query_service)
116
+ .deactivate
117
+ end
118
+
119
+ # @return [Boolean]
120
+ def deactivate_embargo_for!(resource:, query_service: Hyrax.query_service)
121
+ new(resource: resource, query_service: query_service)
122
+ .deactivate!
123
+ end
124
+
125
+ # @return [Boolean]
112
126
  def release_embargo_for(resource:, query_service: Hyrax.query_service)
113
127
  new(resource: resource, query_service: query_service)
114
128
  .release
115
129
  end
116
130
 
131
+ # @return [Boolean]
117
132
  def release_embargo_for!(resource:, query_service: Hyrax.query_service)
118
133
  new(resource: resource, query_service: query_service)
119
134
  .release!
@@ -149,20 +164,20 @@ module Hyrax
149
164
  # rubocop:enable Metrics/AbcSize, Metrics/MethodLength
150
165
  end
151
166
 
152
- # Deactivates the embargo and logs a message to the embargo_history property
153
- def deactivate!
154
- embargo_state = embargo.active? ? 'active' : 'expired'
155
- embargo_record = embargo_history_message(
156
- embargo_state,
157
- Time.zone.today,
158
- embargo.embargo_release_date,
159
- embargo.visibility_during_embargo,
160
- embargo.visibility_after_embargo
161
- )
167
+ ##
168
+ # Deactivates the embargo
169
+ # @return [Boolean]
170
+ def deactivate
171
+ release(force: true) &&
172
+ nullify(force: true)
173
+ end
162
174
 
175
+ ##
176
+ # Deactivates the embargo
177
+ # @return [Boolean]
178
+ def deactivate!
163
179
  release(force: true)
164
180
  nullify(force: true)
165
- embargo.embargo_history += [embargo_record]
166
181
  end
167
182
 
168
183
  ##
@@ -211,15 +226,16 @@ module Hyrax
211
226
  ##
212
227
  # Drop the embargo by setting its release date and visibility settings to `nil`.
213
228
  #
214
- # @param force [boolean] force the nullify even when the embargo period is current
229
+ # @param force [Boolean] force the nullify even when the embargo period is current
215
230
  #
216
- # @return [void]
231
+ # @return [Boolean]
217
232
  def nullify(force: false)
218
233
  return false if !force && under_embargo?
219
234
 
220
235
  embargo.embargo_release_date = nil
221
236
  embargo.visibility_during_embargo = nil
222
237
  embargo.visibility_after_embargo = nil
238
+ true
223
239
  end
224
240
 
225
241
  ##
@@ -231,6 +247,17 @@ module Hyrax
231
247
  # @return [Boolean] truthy if the embargo has been applied
232
248
  def release(force: false)
233
249
  return false if !force && under_embargo?
250
+
251
+ embargo_state = embargo.active? ? 'active' : 'expired'
252
+ history_record = embargo_history_message(
253
+ embargo_state,
254
+ Hyrax::TimeService.time_in_utc,
255
+ embargo.embargo_release_date,
256
+ embargo.visibility_during_embargo,
257
+ embargo.visibility_after_embargo
258
+ )
259
+ embargo.embargo_history += [history_record]
260
+
234
261
  return true if embargo.visibility_after_embargo.nil?
235
262
 
236
263
  resource.visibility = embargo.visibility_after_embargo
@@ -266,7 +293,7 @@ module Hyrax
266
293
 
267
294
  protected
268
295
 
269
- # Create the log message used when deactivating an embargo
296
+ # Create the log message used when releasing an embargo
270
297
  def embargo_history_message(state, deactivate_date, release_date, visibility_during, visibility_after)
271
298
  I18n.t 'hydra.embargo.history_message',
272
299
  state: state,