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,49 +1,20 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module Hyrax
4
+ ##
5
+ # A Plain Old Ruby Object (PORO) representing a named group.
6
+ #
7
+ # In Hyku, we replace the PORO with an Application Record. But there is significant duplication
8
+ # of logic.
9
+ #
10
+ # @see Hyrax::GroupBehavior
3
11
  class Group
4
- DEFAULT_NAME_PREFIX = 'group/'
5
-
6
- def self.name_prefix
7
- DEFAULT_NAME_PREFIX
8
- end
9
-
10
- ##
11
- # @return [Hyrax::Group]
12
- def self.from_agent_key(key)
13
- new(key.delete_prefix(name_prefix))
14
- end
12
+ include Hyrax::GroupBehavior
15
13
 
16
14
  def initialize(name)
17
15
  @name = name
18
16
  end
19
17
 
20
18
  attr_reader :name
21
-
22
- ##
23
- # @return [Boolean]
24
- def ==(other)
25
- other.class == self.class && other.name == name
26
- end
27
-
28
- ##
29
- # @return [String] a local identifier for this group; for use (e.g.) in ACL
30
- # data
31
- def agent_key
32
- self.class.name_prefix + name
33
- end
34
-
35
- def to_sipity_agent
36
- sipity_agent || create_sipity_agent!
37
- end
38
-
39
- private
40
-
41
- def sipity_agent
42
- Sipity::Agent.find_by(proxy_for_id: name, proxy_for_type: self.class.name)
43
- end
44
-
45
- def create_sipity_agent!
46
- Sipity::Agent.create!(proxy_for_id: name, proxy_for_type: self.class.name)
47
- end
48
19
  end
49
20
  end
@@ -0,0 +1,58 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Hyrax
4
+ ##
5
+ # An {ActiveSupport::Concern} module that contains the {Hyrax::Group} logic. It is extracted to a
6
+ # behavior because downstream Hyku has a Hyrax::Group that inherits from ApplicationRecord. In
7
+ # other words it eschews the plain old Ruby object (PORO). However, both Hyku and Hyrax's
8
+ # {Hyrax::Group} both have notable amounts of duplicated logic.
9
+ #
10
+ # @see Hyrax::Group
11
+ module GroupBehavior
12
+ extend ActiveSupport::Concern
13
+
14
+ DEFAULT_NAME_PREFIX = 'group/'
15
+
16
+ class_methods do
17
+ ##
18
+ # @return [String]
19
+ # @see DEFAULT_NAME_PREFIX
20
+ def name_prefix
21
+ DEFAULT_NAME_PREFIX
22
+ end
23
+
24
+ ##
25
+ # @return [Hyrax::Group]
26
+ def from_agent_key(key)
27
+ new(key.delete_prefix(name_prefix))
28
+ end
29
+ end
30
+
31
+ ##
32
+ # @return [Boolean]
33
+ def ==(other)
34
+ other.class == self.class && other.name == name
35
+ end
36
+
37
+ ##
38
+ # @return [String] a local identifier for this group; for use (e.g.) in ACL
39
+ # data
40
+ def agent_key
41
+ self.class.name_prefix + name
42
+ end
43
+
44
+ def to_sipity_agent
45
+ sipity_agent || create_sipity_agent!
46
+ end
47
+
48
+ private
49
+
50
+ def sipity_agent
51
+ Sipity::Agent.find_by(proxy_for_id: name, proxy_for_type: self.class.name)
52
+ end
53
+
54
+ def create_sipity_agent!
55
+ Sipity::Agent.create!(proxy_for_id: name, proxy_for_type: self.class.name)
56
+ end
57
+ end
58
+ end
@@ -0,0 +1,111 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Hyrax
4
+ ##
5
+ # There are four conceptual high-level models for the metadata modeling:
6
+ #
7
+ # - AdminSet :: Where things are "physically" stored.
8
+ # - Collection :: What things "logically" belong to.
9
+ # - Work :: What the thing is about; these are often sub-divided into different work types
10
+ # (e.g. an Article, a Monograph, etc.)
11
+ # - FileSet :: Artifacts that further describe the thing.
12
+ #
13
+ # The purpose of this module is to provide an overview and map of the modeling concepts. This is
14
+ # envisioned as a module to interrogate to see how Hyrax conceptually organizes your models.
15
+ #
16
+ # For each of the above high-level models the {Hyrax::ModelRegistry} implements two methods:
17
+ #
18
+ # - <model_type>_classes :: These are the Ruby constants that represent the conceptual models.
19
+ # - <model_type>_rdf_representations :: These are the stored strings that help us describe what #
20
+ # - the data models. Very useful in our Solr queries when we want to filter/query on the
21
+ # - "has_model_ssim" attribute.
22
+ #
23
+ # Consider that an {AdminSet} and a {Hyrax::AdministrativeSet} conceptually model the same thing;
24
+ # the latter implements via Valkyrie and the former via ActiveFedora.
25
+ #
26
+ # @note Due to the shift from ActiveFedora to Valkyrie, we are at a crossroads where we might have
27
+ # multiple models for the versions: an ActiveFedora AdminSet and a Valkyrie AdminSet.
28
+ class ModelRegistry
29
+ ##
30
+ # @return [Array<String>]
31
+ def self.admin_set_class_names
32
+ ["::AdminSet", "::Hyrax::AdministrativeSet", Hyrax.config.admin_set_model].uniq
33
+ end
34
+
35
+ ##
36
+ # @return [Array<Class>]
37
+ def self.admin_set_classes
38
+ classes_from(admin_set_class_names)
39
+ end
40
+
41
+ ##
42
+ # @return [Array<String>]
43
+ def self.admin_set_rdf_representations
44
+ rdf_representations_from(admin_set_classes)
45
+ end
46
+
47
+ ##
48
+ # @return [Array<String>]
49
+ def self.collection_class_names
50
+ ["::Collection", "::Hyrax::PcdmCollection", Hyrax.config.collection_model].uniq
51
+ end
52
+
53
+ ##
54
+ # @return [Array<String>]
55
+ def self.collection_classes
56
+ classes_from(collection_class_names)
57
+ end
58
+
59
+ def self.collection_rdf_representations
60
+ rdf_representations_from(collection_classes)
61
+ end
62
+
63
+ def self.collection_has_model_ssim
64
+ collection_rdf_representations
65
+ end
66
+
67
+ ##
68
+ # @return [Array<String>]
69
+ def self.file_set_class_names
70
+ ["::FileSet", "::Hyrax::FileSet", Hyrax.config.file_set_model].uniq
71
+ end
72
+
73
+ def self.file_set_classes
74
+ classes_from(file_set_class_names)
75
+ end
76
+
77
+ ##
78
+ # @return [Array<String>]
79
+ def self.file_set_rdf_representations
80
+ rdf_representations_from(file_set_classes)
81
+ end
82
+
83
+ ##
84
+ # @return [Array<Class>]
85
+ #
86
+ # @todo Consider the Wings::ModelRegistry and how we perform mappings.
87
+ def self.work_class_names
88
+ Hyrax.config.registered_curation_concern_types
89
+ end
90
+
91
+ def self.work_classes
92
+ classes_from(work_class_names)
93
+ end
94
+
95
+ ##
96
+ # @return [Array<String>]
97
+ def self.work_rdf_representations
98
+ rdf_representations_from(work_classes)
99
+ end
100
+
101
+ def self.classes_from(strings)
102
+ strings.map(&:safe_constantize).flatten.uniq
103
+ end
104
+ private_class_method :classes_from
105
+
106
+ def self.rdf_representations_from(klasses)
107
+ klasses.map { |klass| klass.respond_to?(:to_rdf_representation) ? klass.to_rdf_representation : klass.name }.uniq
108
+ end
109
+ private_class_method :rdf_representations_from
110
+ end
111
+ end
@@ -7,12 +7,6 @@ module Hyrax
7
7
  record.errors.add(:orcid, 'must be a string of 19 characters, e.g., "0000-0000-0000-0000"') unless ORCID_REGEXP.match?(record.orcid)
8
8
  end
9
9
 
10
- # @deprecated
11
- def self.match(string)
12
- Deprecation.warn "Use 'Hyrax::OrcidValidator.extract_bare_orcid(from:)'"
13
- extract_bare_orcid_from(from: string)
14
- end
15
-
16
10
  # @api public
17
11
  # @param [String] from
18
12
  # @return nil if the given string is not in the Orcid form
@@ -56,13 +56,7 @@ module Hyrax
56
56
 
57
57
  ##
58
58
  # @return [Boolean] true
59
- def collection?
60
- true
61
- end
62
-
63
- ##
64
- # @return [Boolean] true
65
- def pcdm_object?
59
+ def self.pcdm_collection?
66
60
  true
67
61
  end
68
62
 
@@ -35,8 +35,8 @@ module Hyrax
35
35
  include Hyrax::WithEvents
36
36
 
37
37
  attribute :alternate_ids, Valkyrie::Types::Array.of(Valkyrie::Types::ID)
38
- attribute :embargo_id, Valkyrie::Types::ID
39
- attribute :lease_id, Valkyrie::Types::ID
38
+ attribute :embargo_id, Valkyrie::Types::Params::ID
39
+ attribute :lease_id, Valkyrie::Types::Params::ID
40
40
 
41
41
  delegate :edit_groups, :edit_groups=,
42
42
  :edit_users, :edit_users=,
@@ -50,6 +50,50 @@ module Hyrax
50
50
  I18n.translate("hyrax.models.#{model_name.i18n_key}", default: model_name.human)
51
51
  end
52
52
 
53
+ ##
54
+ # @return [Boolean]
55
+ def collection?
56
+ pcdm_collection?
57
+ end
58
+
59
+ ##
60
+ # @return [Boolean]
61
+ def file?
62
+ false
63
+ end
64
+
65
+ ##
66
+ # @return [Boolean]
67
+ def file_set?
68
+ false
69
+ end
70
+
71
+ ##
72
+ # @return [Boolean]
73
+ def pcdm_collection?
74
+ false
75
+ end
76
+
77
+ ##
78
+ # @return [Boolean]
79
+ def pcdm_object?
80
+ false
81
+ end
82
+
83
+ ##
84
+ # Works are PCDM Objects which are not File Sets.
85
+ #
86
+ # @return [Boolean]
87
+ def work?
88
+ pcdm_object? && !file_set?
89
+ end
90
+
91
+ ##
92
+ # @return [String]
93
+ def to_rdf_representation
94
+ name
95
+ end
96
+
53
97
  private
54
98
 
55
99
  ##
@@ -64,35 +108,49 @@ module Hyrax
64
108
  ##
65
109
  # @return [Boolean]
66
110
  def collection?
67
- false
111
+ self.class.collection?
68
112
  end
69
113
 
70
114
  ##
71
115
  # @return [Boolean]
72
116
  def file?
73
- false
117
+ self.class.file?
74
118
  end
75
119
 
76
120
  ##
77
121
  # @return [Boolean]
78
122
  def file_set?
79
- false
123
+ self.class.file_set?
124
+ end
125
+
126
+ ##
127
+ # @return [Boolean]
128
+ def pcdm_collection?
129
+ self.class.pcdm_collection?
80
130
  end
81
131
 
82
132
  ##
83
133
  # @return [Boolean]
84
134
  def pcdm_object?
85
- false
135
+ self.class.pcdm_object?
136
+ end
137
+
138
+ ##
139
+ # @return [String]
140
+ def to_rdf_representation
141
+ self.class.to_rdf_representation
86
142
  end
87
143
 
88
144
  ##
145
+ # Works are PCDM Objects which are not File Sets.
146
+ #
89
147
  # @return [Boolean]
90
148
  def work?
91
- false
149
+ self.class.work?
92
150
  end
93
151
 
94
152
  def ==(other)
95
- attributes.except(:created_at, :updated_at) == other.attributes.except(:created_at, :updated_at)
153
+ attributes.except(:created_at, :updated_at) == other.attributes.except(:created_at, :updated_at) if other.respond_to?(:attributes)
96
154
  end
97
155
 
98
156
  def permission_manager
@@ -43,7 +43,7 @@ module Hyrax
43
43
 
44
44
  def query_works(query)
45
45
  models = Hyrax.config.curation_concerns.map { |m| "\"#{m}\"" }
46
- ActiveFedora::SolrService.query("has_model_ssim:(#{models.join(' OR ')})", fl: query, rows: 100_000)
46
+ Hyrax::SolrService.query("has_model_ssim:(#{models.join(' OR ')})", fl: query, rows: 100_000)
47
47
  end
48
48
 
49
49
  def work_types
@@ -63,7 +63,7 @@ module Hyrax
63
63
  # `it_behaves_like 'has_members'`. Shared specs are defined in /lib/hyrax/specs/shared_specs/hydra_works.rb.
64
64
  # * Work to File Set: (0..m) A work can have many file sets.
65
65
  # @example Add a file set to a work (code from Hyrax::WorkUploadsHandler#append_to_work)
66
- # work.member_ids << file_set.id
66
+ # work.member_ids += [file_set.id]
67
67
  # work.representative_id = file_set.id if work.respond_to?(:representative_id) && work.representative_id.blank?
68
68
  # work.thumbnail_id = file_set.id if work.respond_to?(:thumbnail_id) && work.thumbnail_id.blank?
69
69
  # Hyrax.persister.save(resource: work)
@@ -91,11 +91,8 @@ module Hyrax
91
91
  #
92
92
  # @see /lib/hyrax/specs/shared_specs/hydra_works.rb
93
93
  #
94
- # @todo The description in Hydra::Works Shared Modeling is out of date and uses
95
- # terminology to describe the relationships that is no longer used in code.
96
- # Update the model and link to it. This can be a simple relationship diagram
97
- # with a link to the original Works Shared Modeling for historical perspective.
98
94
  # @see https://wiki.lyrasis.org/display/samvera/Hydra::Works+Shared+Modeling
95
+ # for a historical perspective.
99
96
  class Work < Hyrax::Resource
100
97
  include Hyrax::Schema(:core_metadata)
101
98
 
@@ -111,13 +108,7 @@ module Hyrax
111
108
 
112
109
  ##
113
110
  # @return [Boolean] true
114
- def pcdm_object?
115
- true
116
- end
117
-
118
- ##
119
- # @return [Boolean] true
120
- def work?
111
+ def self.pcdm_object?
121
112
  true
122
113
  end
123
114
  end
@@ -2,15 +2,18 @@
2
2
  module Hyrax
3
3
  # Draws a collapsable list widget using the Bootstrap 3 / Collapse.js plugin
4
4
  class CollapsableSectionPresenter
5
- def initialize(view_context:, text:, id:, icon_class:, open:)
5
+ # rubocop:disable Metrics/ParameterLists
6
+ def initialize(view_context:, text:, id:, icon_class:, open:, title: nil)
6
7
  @view_context = view_context
7
8
  @text = text
8
9
  @id = id
9
10
  @icon_class = icon_class
10
11
  @open = open
12
+ @title = title
11
13
  end
14
+ # rubocop:enable Metrics/ParameterLists
12
15
 
13
- attr_reader :view_context, :text, :id, :icon_class, :open
16
+ attr_reader :view_context, :text, :id, :icon_class, :open, :title
14
17
  delegate :content_tag, :safe_join, :tag, to: :view_context
15
18
 
16
19
  def render(&block)
@@ -26,7 +29,8 @@ module Hyrax
26
29
  href: "##{id}",
27
30
  onclick: "toggleCollapse(this)",
28
31
  'aria-expanded' => open,
29
- 'aria-controls' => id) do
32
+ 'aria-controls' => id,
33
+ title: title) do
30
34
  safe_join([tag.span('', class: icon_class, 'aria-hidden': true),
31
35
  tag.span(text)], ' ')
32
36
  end
@@ -172,23 +172,6 @@ module Hyrax
172
172
  create_work_presenter.first_model
173
173
  end
174
174
 
175
- ##
176
- # @deprecated this implementation requires an extra db round trip, had a
177
- # buggy cacheing mechanism, and was largely duplicative of other code.
178
- # all versions of this code are replaced by
179
- # {CollectionsHelper#available_parent_collections_data}.
180
- def available_parent_collections(scope:)
181
- Deprecation.warn("#{self.class}#available_parent_collections is " \
182
- "deprecated. Use available_parent_collections_data " \
183
- "helper instead.")
184
- return @available_parents if @available_parents.present?
185
- collection = Hyrax.config.collection_class.find(id)
186
- colls = Hyrax::Collections::NestedCollectionQueryService.available_parent_collections(child: collection, scope: scope, limit_to_id: nil)
187
- @available_parents = colls.map do |col|
188
- { "id" => col.id, "title_first" => col.title.first }
189
- end.to_json
190
- end
191
-
192
175
  def subcollection_count=(total)
193
176
  @subcollection_count = total unless total.nil?
194
177
  end
@@ -23,5 +23,9 @@ module Hyrax
23
23
  def embargo_history
24
24
  solr_document['embargo_history_ssim']
25
25
  end
26
+
27
+ def enforced?
28
+ solr_document.embargo_enforced?
29
+ end
26
30
  end
27
31
  end
@@ -118,13 +118,15 @@ module Hyrax
118
118
  end
119
119
 
120
120
  def fetch_parent_presenter
121
- ids = Hyrax::SolrService.query("{!field f=member_ids_ssim}#{id}", fl: Hyrax.config.id_field)
121
+ ids = Hyrax::SolrService.query("{!field f=member_ids_ssim}#{id}", fl: Hyrax.config.id_field, rows: 1)
122
122
  .map { |x| x.fetch(Hyrax.config.id_field) }
123
- Hyrax.logger.warn("Couldn't find a parent work for FileSet: #{id}.") if ids.empty?
124
- ids.each do |id|
125
- doc = ::SolrDocument.find(id)
126
- next if current_ability.can?(:edit, doc)
127
- raise WorkflowAuthorizationException if doc.suppressed? && current_ability.can?(:read, doc)
123
+ if ids.empty?
124
+ Hyrax.logger.warn("Couldn't find a parent work for FileSet: #{id}.")
125
+ else
126
+ doc = ::SolrDocument.find(ids.first)
127
+ unless current_ability.can?(:edit, doc)
128
+ raise WorkflowAuthorizationException if doc.suppressed? && current_ability.can?(:read, doc)
129
+ end
128
130
  end
129
131
  Hyrax::PresenterFactory.build_for(ids: ids,
130
132
  presenter_class: WorkShowPresenter,
@@ -27,5 +27,9 @@ module Hyrax
27
27
  def lease_history
28
28
  solr_document['lease_history_ssim']
29
29
  end
30
+
31
+ def enforced?
32
+ solr_document.lease_enforced?
33
+ end
30
34
  end
31
35
  end
@@ -11,10 +11,20 @@ module Hyrax
11
11
  delegate :controller, :controller_name, :action_name, :content_tag,
12
12
  :current_page?, :link_to, :can?, :tag, to: :view_context
13
13
 
14
+ ##
15
+ # @!group Class Attributes
16
+ #
17
+ # @!attribute section_controller_names [r|w]
18
+ # @return [Array<String>]
19
+ # @see #settings_section?
20
+ class_attribute :section_controller_names, default: %w[appearances content_blocks features pages collection_types]
21
+ # @!endgroup Class Attributes
22
+ ##
23
+
14
24
  # Returns true if the current controller happens to be one of the controllers that deals
15
25
  # with settings. This is used to keep the parent section on the sidebar open.
16
26
  def settings_section?
17
- %w[appearances content_blocks features pages collection_types].include?(controller_name)
27
+ section_controller_names.include?(controller_name)
18
28
  end
19
29
 
20
30
  # @param options [Hash, String] a hash or string representing the path. Hash is prefered as it
@@ -47,12 +57,14 @@ module Hyrax
47
57
  %w[work_reports collection_reports].include?(controller_name)
48
58
  end
49
59
 
60
+ ##
50
61
  # Draw a collaspable menu section. The passed block should contain <li> items.
51
- def collapsable_section(text, id:, icon_class:, open:, &block)
62
+ def collapsable_section(text, id:, icon_class:, open:, title: nil, &block)
52
63
  CollapsableSectionPresenter.new(view_context: view_context,
53
64
  text: text,
54
65
  id: id,
55
66
  icon_class: icon_class,
67
+ title: title,
56
68
  open: open).render(&block)
57
69
  end
58
70
 
@@ -28,7 +28,7 @@ module Hyrax
28
28
  # @return [Array<FileSetPresenter, WorkShowPresenter>]
29
29
  # @return [Enumerator<FileSetPresenter>]
30
30
  def file_set_presenters
31
- return enum_for(:file_set_presenters) unless block_given?
31
+ return enum_for(:file_set_presenters).to_a unless block_given?
32
32
 
33
33
  results = query_docs(generic_type: "FileSet")
34
34
 
@@ -47,14 +47,14 @@ module Hyrax
47
47
  # we recommend making sparing use of this feature.
48
48
  #
49
49
  # @overload member_presenters
50
- # @return [Enumerator<FileSetPresenter, WorkShowPresenter>]
50
+ # @return [Array<FileSetPresenter, WorkShowPresenter>]
51
51
  # @raise [ArgumentError] if an unindexed id is passed
52
52
  # @overload member_presenters
53
53
  # @param [Array<#to_s>] ids
54
- # @return [Enumerator<FileSetPresenter, WorkShowPresenter>]
54
+ # @return [Array<FileSetPresenter, WorkShowPresenter>]
55
55
  # @raise [ArgumentError] if an unindexed id is passed
56
56
  def member_presenters(ids = object.member_ids)
57
- return enum_for(:member_presenters, ids) unless block_given?
57
+ return enum_for(:member_presenters, ids).to_a unless block_given?
58
58
 
59
59
  results = query_docs(ids: ids)
60
60
 
@@ -97,7 +97,7 @@ module Hyrax
97
97
  # @return
98
98
  def presenter_for(document:, ability:)
99
99
  case document['has_model_ssim'].first
100
- when Hyrax::FileSet.name, ::FileSet.name # ActiveFedora FileSet within a Valkyrie Resource
100
+ when *Hyrax::ModelRegistry.file_set_rdf_representations
101
101
  Hyrax::FileSetPresenter.new(document, ability)
102
102
  else
103
103
  Hyrax::WorkShowPresenter.new(document, ability)
@@ -109,6 +109,8 @@ module Hyrax
109
109
  def query_docs(generic_type: nil, ids: object.member_ids)
110
110
  query = "{!terms f=id}#{ids.join(',')}"
111
111
  query += "{!term f=generic_type_si}#{generic_type}" if generic_type
112
+ # works created via ActiveFedora use the _sim field
113
+ query += "{!term f=generic_type_sim}#{generic_type}" if generic_type
112
114
 
113
115
  Hyrax::SolrService
114
116
  .post(q: query, rows: 10_000)
@@ -5,39 +5,50 @@ module Hyrax
5
5
  class VersionListPresenter
6
6
  include Enumerable
7
7
 
8
+ attr_reader :versioning_service
9
+
8
10
  ##
9
- # @param version_list [Array<#created>]
10
- def initialize(version_list)
11
- @raw_list = version_list
11
+ # @param service [Hyrax::VersioningService]
12
+ def initialize(service)
13
+ @versioning_service = service
12
14
  end
13
15
 
14
16
  ##
15
17
  # @param [Object] an object representing the File Set
16
18
  #
17
- # @return [Enumerable<Hyrax::VersionPresenter>] an enumerable of presenters
18
- # for the relevant file versions.
19
+ # @return [Hyrax::VersionListPresenter] an enumerable of presenters for the
20
+ # relevant file versions.
19
21
  #
20
- # @raise [ArgumentError] if we can't build an enu
21
- def self.for(file_set:)
22
- original_file = if file_set.respond_to?(:original_file)
22
+ # @raise [ArgumentError] if we can't build an enumerable
23
+ def self.for(file_set:, file_service: Hyrax.config.file_set_file_service)
24
+ original_file = case file_set
25
+ when ActiveFedora::Base
23
26
  file_set.original_file
24
27
  else
25
- Hyrax::FileSetFileService.new(file_set: file_set).original_file
28
+ file_service.new(file_set: file_set).primary_file
26
29
  end
27
- new(Hyrax::VersioningService.new(resource: original_file).versions)
30
+
31
+ new(Hyrax::VersioningService.new(resource: original_file))
28
32
  rescue NoMethodError
29
33
  raise ArgumentError
30
34
  end
31
35
 
32
- delegate :each, to: :wrapped_list
36
+ delegate :each, :empty?, to: :wrapped_list
37
+ delegate :supports_multiple_versions?, to: :versioning_service
33
38
 
34
39
  private
35
40
 
36
41
  def wrapped_list
37
42
  @wrapped_list ||=
38
- @raw_list.map { |v| Hyrax::VersionPresenter.new(v) } # wrap each item in a presenter
39
- .sort { |a, b| b.version.created <=> a.version.created } # sort list of versions based on creation date
40
- .tap { |l| l.first.try(:current!) } # set the first version to the current version
43
+ begin
44
+ presenters = @versioning_service.versions.map { |v| Hyrax::VersionPresenter.new(v) } # wrap each item in a presenter
45
+ if presenters.first&.version&.respond_to?(:created)
46
+ presenters.sort! { |a, b| b.version.created <=> a.version.created } if presenters.first&.version.respond_to?(:created) # sort list of versions based on creation date
47
+ else
48
+ presenters.reverse!
49
+ end
50
+ presenters.tap { |l| l.first.try(:current!) } # set the first version to the current version
51
+ end
41
52
  end
42
53
  end
43
54
  end