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
@@ -3,52 +3,50 @@ module Hyrax
3
3
  module Ability
4
4
  module CollectionAbility
5
5
  def collection_abilities # rubocop:disable Metrics/MethodLength, Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity
6
- models = [Hyrax::PcdmCollection, Hyrax.config.collection_class].uniq
6
+ models = Hyrax::ModelRegistry.collection_classes
7
7
  if admin?
8
- models.each do |collection_model|
9
- can :manage, collection_model
10
- can :manage_any, collection_model
11
- can :create_any, collection_model
12
- can :view_admin_show_any, collection_model
13
- end
8
+ can :manage, models
9
+ can :manage_any, models
10
+ can :create_any, models
11
+ can :view_admin_show_any, models
14
12
  else
15
- models.each { |collection_model| can :manage_any, collection_model } if
16
- Hyrax::Collections::PermissionsService.can_manage_any_collection?(ability: self)
13
+ can :manage_any, models if Hyrax::Collections::PermissionsService.can_manage_any_collection?(ability: self)
17
14
 
18
- models.each { |collection_model| can :create_any, collection_model } if
19
- Hyrax::CollectionTypes::PermissionsService.can_create_any_collection_type?(ability: self)
15
+ can :create_any, models if Hyrax::CollectionTypes::PermissionsService.can_create_any_collection_type?(ability: self)
20
16
 
21
- models.each { |collection_model| can :view_admin_show_any, collection_model } if
22
- Hyrax::Collections::PermissionsService.can_view_admin_show_for_any_collection?(ability: self)
17
+ can :view_admin_show_any, models if Hyrax::Collections::PermissionsService.can_view_admin_show_for_any_collection?(ability: self)
23
18
 
24
- models.each do |collection_model|
25
- can [:edit, :update, :destroy], collection_model do |collection|
26
- test_edit(collection.id)
27
- end
19
+ can [:edit, :update, :destroy], models do |collection|
20
+ test_edit(collection.id)
21
+ end
28
22
 
29
- can :deposit, collection_model do |collection|
30
- Hyrax::Collections::PermissionsService.can_deposit_in_collection?(ability: self, collection_id: collection.id)
31
- end
23
+ can :deposit, models do |collection|
24
+ Hyrax::Collections::PermissionsService.can_deposit_in_collection?(ability: self, collection_id: collection.id)
25
+ end
32
26
 
33
- can :view_admin_show, collection_model do |collection| # admin show page
34
- Hyrax::Collections::PermissionsService.can_view_admin_show_for_collection?(ability: self, collection_id: collection.id)
35
- end
27
+ can :view_admin_show, models do |collection| # admin show page
28
+ Hyrax::Collections::PermissionsService.can_view_admin_show_for_collection?(ability: self, collection_id: collection.id)
29
+ end
36
30
 
37
- can :read, collection_model do |collection| # public show page
38
- test_read(collection.id)
39
- end
31
+ can :read, models do |collection| # public show page
32
+ test_read(collection.id)
40
33
  end
41
34
 
42
35
  can :deposit, ::SolrDocument do |solr_doc|
43
36
  Hyrax::Collections::PermissionsService.can_deposit_in_collection?(ability: self, collection_id: solr_doc.id) # checks collections and admin_sets
44
37
  end
45
- can :deposit, String do |collection_id|
46
- Hyrax::Collections::PermissionsService.can_deposit_in_collection?(ability: self, collection_id: collection_id)
38
+
39
+ can :deposit, [::String, ::Valkyrie::ID] do |collection_id|
40
+ Hyrax::Collections::PermissionsService.can_deposit_in_collection?(ability: self, collection_id: collection_id.to_s)
47
41
  end
48
42
 
49
43
  can :view_admin_show, ::SolrDocument do |solr_doc| # admin show page
50
44
  Hyrax::Collections::PermissionsService.can_view_admin_show_for_collection?(ability: self, collection_id: solr_doc.id) # checks collections and admin_sets
51
45
  end
46
+
47
+ can :view_admin_show, [::String, ::Valkyrie::ID] do |collection_id| # admin show page
48
+ Hyrax::Collections::PermissionsService.can_view_admin_show_for_collection?(ability: self, collection_id: collection_id.to_s) # checks collections and admin_sets
49
+ end
52
50
  end
53
51
  end
54
52
  end
@@ -0,0 +1,19 @@
1
+ # frozen_string_literal: true
2
+ module Hyrax
3
+ module Ability
4
+ module ResourceAbility
5
+ def resource_abilities
6
+ if admin?
7
+ can [:manage], ::Hyrax::Resource
8
+ else
9
+ can [:edit, :update, :destroy], ::Hyrax::Resource do |res|
10
+ test_edit(res.id)
11
+ end
12
+ can :read, ::Hyrax::Resource do |res|
13
+ test_read(res.id)
14
+ end
15
+ end
16
+ end
17
+ end
18
+ end
19
+ end
@@ -53,6 +53,7 @@ module Hyrax
53
53
  include Hyrax::Ability::CollectionAbility
54
54
  include Hyrax::Ability::CollectionTypeAbility
55
55
  include Hyrax::Ability::PermissionTemplateAbility
56
+ include Hyrax::Ability::ResourceAbility
56
57
  include Hyrax::Ability::SolrDocumentAbility
57
58
 
58
59
  class_attribute :admin_group_name, :registered_group_name, :public_group_name
@@ -76,6 +77,7 @@ module Hyrax
76
77
  :collection_abilities,
77
78
  :collection_type_abilities,
78
79
  :permission_template_abilities,
80
+ :resource_abilities,
79
81
  :solr_document_abilities,
80
82
  :trophy_abilities]
81
83
  end
@@ -102,7 +104,7 @@ module Hyrax
102
104
  # Returns true if can create at least one type of work and they can deposit
103
105
  # into at least one AdminSet
104
106
  def can_create_any_work?
105
- Hyrax.config.curation_concerns.any? do |curation_concern_type|
107
+ curation_concerns_models.any? do |curation_concern_type|
106
108
  can?(:create, curation_concern_type)
107
109
  end && admin_set_with_deposit?
108
110
  end
@@ -122,8 +124,8 @@ module Hyrax
122
124
  #
123
125
  # Overrides hydra-head, (and restores the method from blacklight-access-controls)
124
126
  def download_permissions
125
- can :download, String do |id|
126
- test_download(id)
127
+ can :download, [::String, ::Valkyrie::ID] do |id|
128
+ test_download(id.to_s)
127
129
  end
128
130
 
129
131
  can :download, ::SolrDocument do |obj|
@@ -187,8 +189,8 @@ module Hyrax
187
189
  # self.ability_logic += [:proxy_deposit_abilities]
188
190
  def proxy_deposit_abilities
189
191
  if Flipflop.transfer_works?
190
- can :transfer, String do |id|
191
- user_is_depositor?(id)
192
+ can :transfer, [::String, Valkyrie::ID] do |id|
193
+ user_is_depositor?(id.to_s)
192
194
  end
193
195
  end
194
196
 
@@ -366,10 +368,11 @@ module Hyrax
366
368
  alias_action :show, to: :read
367
369
  alias_action :discover, to: :read
368
370
  can :update, :appearance
369
- can :manage, String # The identifier of a work or FileSet
371
+ can :manage, [String, Valkyrie::ID] # The identifier of a work or FileSet
370
372
  can :manage, curation_concerns_models
371
373
  can :manage, Sipity::WorkflowResponsibility
372
374
  can :manage, :collection_types
375
+ can :manage, ::FileSet
373
376
  end
374
377
 
375
378
  ##
@@ -411,14 +414,14 @@ module Hyrax
411
414
  end
412
415
 
413
416
  # Returns true if the current user is the depositor of the specified work
414
- # @param document_id [String] the id of the document.
417
+ # @param document_id [String, Valkyrie::ID] the id of the document.
415
418
  def user_is_depositor?(document_id)
416
- doc = Hyrax::SolrService.search_by_id(document_id, fl: 'depositor_ssim')
419
+ doc = Hyrax::SolrService.search_by_id(document_id.to_s, fl: 'depositor_ssim')
417
420
  current_user.user_key == doc['depositor_ssim']&.first
418
421
  end
419
422
 
420
423
  def curation_concerns_models
421
- [::FileSet, Hyrax.config.collection_class] + Hyrax.config.curation_concerns
424
+ Hyrax::ModelRegistry.collection_classes + Hyrax::ModelRegistry.file_set_classes + Hyrax::ModelRegistry.work_classes
422
425
  end
423
426
 
424
427
  def can_review_submissions?
@@ -17,7 +17,15 @@ module Hyrax
17
17
 
18
18
  self.indexer = Hyrax::CollectionIndexer
19
19
 
20
+ ##
21
+ # @!group Class Attributes
22
+ #
23
+ # @!attribute internal_resource
24
+ # @return [String]
25
+ class_attribute :internal_resource, default: "Collection"
26
+
20
27
  class_attribute :index_collection_type_gid_as, instance_writer: false
28
+ ##
21
29
  self.index_collection_type_gid_as = [:symbol]
22
30
 
23
31
  property :collection_type_gid, predicate: ::RDF::Vocab::SCHEMA.additionalType, multiple: false do |index|
@@ -28,9 +36,11 @@ module Hyrax
28
36
  validates :collection_type_gid, presence: true
29
37
 
30
38
  # Need to define here in order to override setter defined by ActiveTriples
31
- def collection_type_gid=(new_collection_type_gid, force: false)
39
+ def collection_type_gid=(new_collection_type_gid)
32
40
  new_collection_type_gid = new_collection_type_gid&.to_s
33
- raise "Can't modify collection type of this collection" if !force && persisted? && !collection_type_gid_was.nil? && collection_type_gid_was != new_collection_type_gid
41
+ raise "Can't modify collection type of this collection" if
42
+ !Thread.current[:force_collection_type_gid] && # Used by update_collection_type_global_ids rake task
43
+ persisted? && !collection_type_gid_was.nil? && collection_type_gid_was != new_collection_type_gid
34
44
  new_collection_type = Hyrax::CollectionType.find_by_gid!(new_collection_type_gid)
35
45
  super(new_collection_type_gid)
36
46
  @collection_type = new_collection_type
@@ -38,16 +48,6 @@ module Hyrax
38
48
  end
39
49
  end
40
50
 
41
- delegate(*Hyrax::CollectionType.settings_attributes, to: :collection_type)
42
- ActiveSupport::Deprecation.deprecate_methods(self, *Hyrax::CollectionType.settings_attributes)
43
-
44
- # Get the collection_type when accessed
45
- def collection_type
46
- Deprecation.warn("'##{__method__}' will be removed in Hyrax 4.0. " \
47
- "Instead, use Hyrax::CollectionType.for(collection: collection).")
48
- @collection_type ||= Hyrax::CollectionType.find_by_gid!(collection_type_gid)
49
- end
50
-
51
51
  def collection_type=(new_collection_type)
52
52
  self.collection_type_gid = new_collection_type.to_global_id
53
53
  end
@@ -53,25 +53,25 @@ module Hyrax
53
53
  ##
54
54
  # @return [Boolean]
55
55
  def collection?
56
- hydra_model == Hyrax.config.collection_class
56
+ Hyrax::ModelRegistry.collection_classes.include?(hydra_model)
57
57
  end
58
58
 
59
59
  ##
60
60
  # @return [Boolean]
61
61
  def file_set?
62
- hydra_model == ::FileSet || hydra_model == Hyrax::FileSet
62
+ Hyrax::ModelRegistry.file_set_classes.include?(hydra_model)
63
63
  end
64
64
 
65
65
  ##
66
66
  # @return [Boolean]
67
67
  def admin_set?
68
- hydra_model == Hyrax.config.admin_set_class
68
+ Hyrax::ModelRegistry.admin_set_classes.include?(hydra_model)
69
69
  end
70
70
 
71
71
  ##
72
72
  # @return [Boolean]
73
73
  def work?
74
- Hyrax.config.curation_concerns.include? hydra_model
74
+ Hyrax::ModelRegistry.work_classes.include?(hydra_model)
75
75
  end
76
76
 
77
77
  # Method to return the model
@@ -86,14 +86,15 @@ module Hyrax
86
86
  end
87
87
 
88
88
  def creator
89
+ # TODO: should we replace "hydra_model == AdminSet" with by #admin_set?
89
90
  solr_term = hydra_model == AdminSet ? "creator_ssim" : "creator_tesim"
90
91
  fetch(solr_term, [])
91
92
  end
92
93
 
93
94
  def visibility
94
- @visibility ||= if embargo_release_date.present?
95
+ @visibility ||= if embargo_enforced?
95
96
  Hydra::AccessControls::AccessRight::VISIBILITY_TEXT_VALUE_EMBARGO
96
- elsif lease_expiration_date.present?
97
+ elsif lease_enforced?
97
98
  Hydra::AccessControls::AccessRight::VISIBILITY_TEXT_VALUE_LEASE
98
99
  elsif public?
99
100
  Hydra::AccessControls::AccessRight::VISIBILITY_TEXT_VALUE_PUBLIC
@@ -108,6 +109,32 @@ module Hyrax
108
109
  first(Hyrax.config.collection_type_index_field)
109
110
  end
110
111
 
112
+ def embargo_enforced?
113
+ return false if embargo_release_date.blank?
114
+
115
+ indexed_embargo_visibility = first('visibility_during_embargo_ssim')
116
+ # if we didn't index an embargo visibility, assume the release date means
117
+ # it's enforced
118
+ return true if indexed_embargo_visibility.blank?
119
+
120
+ # if the visibility and the visibility during embargo are the same, we're
121
+ # enforcing the embargo
122
+ self['visibility_ssi'] == indexed_embargo_visibility
123
+ end
124
+
125
+ def lease_enforced?
126
+ return false if lease_expiration_date.blank?
127
+
128
+ indexed_lease_visibility = first('visibility_during_lease_ssim')
129
+ # if we didn't index an embargo visibility, assume the release date means
130
+ # it's enforced
131
+ return true if indexed_lease_visibility.blank?
132
+
133
+ # if the visibility and the visibility during lease are the same, we're
134
+ # enforcing the lease
135
+ self['visibility_ssi'] == indexed_lease_visibility
136
+ end
137
+
111
138
  private
112
139
 
113
140
  def model_classifier(classifier)
@@ -30,6 +30,10 @@ module Hyrax
30
30
  self.default_system_virus_scanner = Hyrax::VirusScanner
31
31
  end
32
32
 
33
+ def to_rdf_representation
34
+ self.class.to_rdf_representation
35
+ end
36
+
33
37
  module ClassMethods
34
38
  # This governs which partial to draw when you render this type of object
35
39
  def _to_partial_path # :nodoc:
@@ -1,21 +1,29 @@
1
1
  # frozen_string_literal: true
2
2
  class FeaturedWork < ActiveRecord::Base
3
- FEATURE_LIMIT = 5
3
+ ##
4
+ # @!group Class Attributes
5
+ #
6
+ # @!attribute feature_limit [r|w]
7
+ # @return [Integer]
8
+ class_attribute :feature_limit, default: 5
9
+ # @!endgroup Class Attributes
10
+ ##
11
+
4
12
  validate :count_within_limit, on: :create
5
- validates :order, inclusion: { in: proc { 0..FEATURE_LIMIT } }
13
+ validates :order, inclusion: { in: proc { 0..feature_limit } }
6
14
 
7
15
  default_scope { order(:order) }
8
16
 
9
17
  def count_within_limit
10
18
  return if FeaturedWork.can_create_another?
11
- errors.add(:base, "Limited to #{FEATURE_LIMIT} featured works.")
19
+ errors.add(:base, "Limited to #{feature_limit} featured works.")
12
20
  end
13
21
 
14
22
  attr_accessor :presenter
15
23
 
16
24
  class << self
17
25
  def can_create_another?
18
- FeaturedWork.count < FEATURE_LIMIT
26
+ FeaturedWork.count < feature_limit
19
27
  end
20
28
  end
21
29
  end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Provide plain file set model if not defined by the application.
4
+ # Needed until Hyrax internals do not assume its existence.
5
+ class ::FileSet < Hyrax.config.file_set_class; end unless '::FileSet'.safe_constantize
@@ -33,7 +33,7 @@ module Hyrax
33
33
 
34
34
  ##
35
35
  # @return [Boolean] true
36
- def collection?
36
+ def self.pcdm_collection?
37
37
  true
38
38
  end
39
39
 
@@ -21,8 +21,8 @@ module Hyrax
21
21
 
22
22
  ##
23
23
  # @return [String]
24
- def self.inspect
25
- return "Hyrax::ChangeSet(#{model_class})" if name.blank?
24
+ define_singleton_method :inspect do
25
+ return "Hyrax::ChangeSet(#{resource_class})" if name.blank?
26
26
  super
27
27
  end
28
28
  end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Hyrax
4
+ class CounterMetric < ApplicationRecord
5
+ validates :work_id, :date, presence: true
6
+ end
7
+ end
@@ -18,7 +18,7 @@ module Hyrax
18
18
  "with id #{file.id}. Initializing a new one")
19
19
 
20
20
  FileMetadata.new(file_identifier: file.id,
21
- original_filename: File.basename(file.io))
21
+ original_filename: File.basename(file.disk_path))
22
22
  end
23
23
 
24
24
  class FileMetadata < Valkyrie::Resource
@@ -32,25 +32,39 @@ module Hyrax
32
32
  # Constants for PCDM Use URIs; use these constants in place of hard-coded
33
33
  # URIs in the `::Valkyrie::Vocab::PCDMUse` vocabulary.
34
34
  module Use
35
- ORIGINAL_FILE = ::Valkyrie::Vocab::PCDMUse.OriginalFile
36
35
  EXTRACTED_TEXT = ::Valkyrie::Vocab::PCDMUse.ExtractedText
37
- THUMBNAIL = ::Valkyrie::Vocab::PCDMUse.ThumbnailImage
36
+ INTERMEDIATE_FILE = ::Valkyrie::Vocab::PCDMUse.IntermediateFile
37
+ ORIGINAL_FILE = ::Valkyrie::Vocab::PCDMUse.OriginalFile
38
+ PRESERVATION_FILE = ::Valkyrie::Vocab::PCDMUse.PreservationFile
39
+ SERVICE_FILE = ::Valkyrie::Vocab::PCDMUse.ServiceFile
40
+ THUMBNAIL_IMAGE = ::Valkyrie::Vocab::PCDMUse.ThumbnailImage
41
+ TRANSCRIPT = ::Valkyrie::Vocab::PCDMUse.Transcript
42
+
43
+ THUMBNAIL = ::Valkyrie::Vocab::PCDMUse.ThumbnailImage # for compatibility with earlier versions of Hyrax; prefer +THUMBNAIL_IMAGE+
38
44
 
39
45
  ##
40
46
  # @param use [RDF::URI, Symbol]
41
47
  #
42
48
  # @return [RDF::URI]
43
49
  # @raise [ArgumentError] if no use is known for the argument
44
- def uri_for(use:)
50
+ def uri_for(use:) # rubocop:disable Metrics/MethodLength
45
51
  case use
46
52
  when RDF::URI
47
53
  use
48
- when :original_file
49
- ORIGINAL_FILE
50
54
  when :extracted_file
51
55
  EXTRACTED_TEXT
56
+ when :intermediate_file
57
+ INTERMEDIATE_FILE
58
+ when :original_file
59
+ ORIGINAL_FILE
60
+ when :preservation_file
61
+ PRESERVATION_FILE
62
+ when :service_file
63
+ SERVICE_FILE
52
64
  when :thumbnail_file
53
- THUMBNAIL
65
+ THUMBNAIL_IMAGE
66
+ when :transcript_file
67
+ TRANSCRIPT
54
68
  else
55
69
  raise ArgumentError, "No PCDM use is recognized for #{use}"
56
70
  end
@@ -58,7 +72,7 @@ module Hyrax
58
72
  module_function :uri_for
59
73
  end
60
74
 
61
- attribute :file_identifier, Valkyrie::Types::ID # id of the file stored by the storage adapter
75
+ attribute :file_identifier, ::Valkyrie::Types::ID # id of the file stored by the storage adapter
62
76
  attribute :alternate_ids, Valkyrie::Types::Set.of(Valkyrie::Types::ID) # id of the file, populated for queryability
63
77
  attribute :file_set_id, ::Valkyrie::Types::ID # id of parent file set resource
64
78
 
@@ -126,6 +140,14 @@ module Hyrax
126
140
  # attributes set by fits for video
127
141
  attribute :aspect_ratio, ::Valkyrie::Types::Set
128
142
 
143
+ class << self
144
+ ##
145
+ # @return [String]
146
+ def to_rdf_representation
147
+ name
148
+ end
149
+ end
150
+
129
151
  ##
130
152
  # @return [Boolean]
131
153
  def original_file?
@@ -135,7 +157,7 @@ module Hyrax
135
157
  ##
136
158
  # @return [Boolean]
137
159
  def thumbnail_file?
138
- pcdm_use.include?(Use::THUMBNAIL)
160
+ pcdm_use.include?(Use::THUMBNAIL_IMAGE)
139
161
  end
140
162
 
141
163
  ##
@@ -144,6 +166,12 @@ module Hyrax
144
166
  pcdm_use.include?(Use::EXTRACTED_TEXT)
145
167
  end
146
168
 
169
+ ##
170
+ # @return [String]
171
+ def to_rdf_representation
172
+ self.class.to_rdf_representation
173
+ end
174
+
147
175
  def title
148
176
  label
149
177
  end
@@ -6,28 +6,47 @@ module Hyrax
6
6
  #
7
7
  # ## Relationships
8
8
  #
9
- # ### File Set and Work
9
+ # ### FileSet and Work
10
10
  #
11
11
  # * Defined: The relationship is defined by the inverse relationship stored in the
12
12
  # work's `:member_ids` attribute.
13
- # * Tested: The work tests the relationship.
14
- # * File Set to Work: (1..1) A file set must be in one and only one work.
13
+ # * Tested: The test for the Work class tests the relationship.
14
+ # * FileSet to Work: (n..1) A FileSet must be in one and only one work. A Work can have zero to many FileSets.
15
+ # * See Hyrax::Work for code to get and set file sets for the work.
15
16
  #
16
- # @example Get work for a file set:
17
+ # @example Get Work for a FileSet:
17
18
  # work = Hyrax.custom_queries.find_parent_work(resource: file_set)
18
19
  #
19
- # * Work to File Set: (0..m) A work can have many file sets.
20
- # * See Hyrax::Work for code to get and set file sets for the work.
20
+ # ### FileSet and FileMetadata
21
21
  #
22
- # ### File Set and File (TBD)
22
+ # * Defined: The relationship is defined by the FileSet's `:file_ids` attribute.
23
+ # * FileSet to FileMetadata: (0..n) A FileSet can have many FileMetadatas. A FileMetadata must be in one and only one FileSet.
24
+ #
25
+ # @example Get all FileMetadata for a FileSet:
26
+ # file_metadata = Hyrax.custom_queries.find_files(file_set: file_set)
27
+ #
28
+ # @example Attach a File to a FileSet through a FileMetadata. This will create
29
+ # a FileMetadata for a File object, attach the File to the FileMetadata, and
30
+ # attach that FileMetadata to a given FileSet.
31
+ # ::Hyrax::ValkyrieUpload.file(
32
+ # io: file_io,
33
+ # filename: "myfile.jpg",
34
+ # file_set: file_set,
35
+ # use: pcdm_use,
36
+ # user: user
37
+ # )
38
+ #
39
+ # ### FileMetadata and Files
40
+ #
41
+ # * Defined: The relationship is defined by the FileMetadata's `:file_identifier` attribute.
42
+ # * FileMetadata to File: (1..1) A FileMetadata can have one and only one File
43
+ #
44
+ # @example Get a File for a FileMetadata
45
+ # file = Hyrax.storage_adapter.find_by(id: file_metadata.file_identifier)
23
46
  #
24
47
  # @see Hyrax::Work
48
+ # @see Hyrax::CustomQueries::Navigators::FindFiles#find_files
25
49
  # @see Hyrax::CustomQueries::Navigators::ParentWorkNavigator#find_parent_work
26
- #
27
- # @todo The description in Hydra::Works Shared Modeling is out of date and uses
28
- # terminology to describe the relationships that is no longer used in code.
29
- # Update the model and link to it. This can be a simple relationship diagram
30
- # with a link to the original Works Shared Modeling for historical perspective.
31
50
  # @see https://wiki.duraspace.org/display/samvera/Hydra%3A%3AWorks+Shared+Modeling
32
51
  class FileSet < Hyrax::Resource
33
52
  include Hyrax::Schema(:core_metadata)
@@ -41,33 +60,67 @@ module Hyrax
41
60
  self.characterization_proxy = Hyrax.config.characterization_proxy
42
61
 
43
62
  attribute :file_ids, Valkyrie::Types::Array.of(Valkyrie::Types::ID) # id for FileMetadata resources
44
- attribute :thumbnail_id, Valkyrie::Types::ID.optional # id for FileMetadata resource
45
- attribute :original_file_id, Valkyrie::Types::ID.optional # id for FileMetadata resource
46
- attribute :extracted_text_id, Valkyrie::Types::ID.optional # id for FileMetadata resource
47
63
 
48
- ##
49
- # @return [Valkyrie::ID]
50
- def representative_id
51
- id
64
+ # @return [Hyrax::FileMetadata, nil]
65
+ def original_file
66
+ Hyrax.custom_queries.find_original_file(file_set: self)
67
+ rescue Valkyrie::Persistence::ObjectNotFoundError
68
+ nil
69
+ end
70
+
71
+ # @return [Valkyrie::ID, nil]
72
+ def original_file_id
73
+ original_file&.id
74
+ end
75
+
76
+ # @return [String, Nil] versioned identifier suitable for use in a IIIF manifest
77
+ def iiif_id
78
+ orig_file = original_file
79
+ return nil if orig_file.nil? || orig_file.file_identifier.blank?
80
+ latest_file = Hyrax::VersioningService.latest_version_of(orig_file)
81
+ version = latest_file&.version_id ? Digest::MD5.hexdigest(latest_file.version_id) : nil
82
+ "#{id}/files/#{orig_file.id}#{'/' + version if version}"
83
+ end
84
+
85
+ # @return [Hyrax::FileMetadata, nil]
86
+ def thumbnail
87
+ Hyrax.custom_queries.find_thumbnail(file_set: self)
88
+ rescue Valkyrie::Persistence::ObjectNotFoundError
89
+ nil
90
+ end
91
+
92
+ # @return [Valkyrie::ID, nil]
93
+ def thumbnail_id
94
+ thumbnail&.id
95
+ end
96
+
97
+ # @return [Hyrax::FileMetadata, nil]
98
+ def extracted_text
99
+ Hyrax.custom_queries.find_extracted_text(file_set: self)
100
+ rescue Valkyrie::Persistence::ObjectNotFoundError
101
+ nil
102
+ end
103
+
104
+ # @return [Valkyrie::ID, nil]
105
+ def extracted_text_id
106
+ extracted_text&.id
52
107
  end
53
108
 
54
109
  ##
55
110
  # @return [Valkyrie::ID]
56
- def representative_id=(_input)
57
- # saving a file set using valkyrie would err because this method didn't exist.
58
- Rails.logger.warn('This is not a valid method for file sets')
111
+ def representative_id
59
112
  id
60
113
  end
61
114
 
62
115
  ##
63
116
  # @return [Boolean] true
64
- def pcdm_object?
117
+ def self.file_set?
65
118
  true
66
119
  end
67
120
 
68
121
  ##
69
122
  # @return [Boolean] true
70
- def file_set?
123
+ def self.pcdm_object?
71
124
  true
72
125
  end
73
126
  end