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
@@ -2,147 +2,11 @@
2
2
 
3
3
  module Hyrax
4
4
  ##
5
- # Indexes Hyrax::FileSet objects
6
- class ValkyrieFileSetIndexer < Hyrax::ValkyrieIndexer # rubocop:disable Metrics/ClassLength
7
- include Hyrax::ResourceIndexer
8
- include Hyrax::PermissionIndexer
9
- include Hyrax::VisibilityIndexer
10
- include Hyrax::ThumbnailIndexer
11
- include Hyrax::Indexer(:core_metadata)
12
- include Hyrax::Indexer(:file_set_metadata)
13
-
14
- def to_solr # rubocop:disable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/MethodLength, Metrics/PerceivedComplexity
15
- super.tap do |solr_doc| # rubocop:disable Metrics/BlockLength
16
- solr_doc['generic_type_si'] = 'FileSet'
17
-
18
- # Metadata from the FileSet
19
- solr_doc['file_ids_ssim'] = resource.file_ids&.map(&:to_s)
20
- solr_doc['original_file_id_ssi'] = original_file_id
21
- solr_doc['extracted_text_id_ssi'] = resource.extracted_text_id.to_s
22
- solr_doc['hasRelatedMediaFragment_ssim'] = resource.representative_id.to_s
23
- solr_doc['hasRelatedImage_ssim'] = resource.thumbnail_id.to_s
24
-
25
- index_lease(solr_doc)
26
- index_embargo(solr_doc)
27
-
28
- # Add in metadata from the original file.
29
- file_metadata = Hyrax::FileSetFileService.new(file_set: resource).original_file
30
- return solr_doc unless file_metadata
31
-
32
- # Label is the actual file name. It's not editable by the user.
33
- solr_doc['original_file_alternate_ids_tesim'] = file_metadata.alternate_ids&.map(&:to_s) if file_metadata.alternate_ids.present?
34
-
35
- solr_doc['original_filename_tesi'] = file_metadata.original_filename if file_metadata.original_filename.present?
36
- solr_doc['original_filename_ssi'] = file_metadata.original_filename if file_metadata.original_filename.present?
37
- solr_doc['mime_type_tesi'] = file_metadata.mime_type if file_metadata.mime_type.present?
38
- solr_doc['mime_type_ssi'] = file_metadata.mime_type if file_metadata.mime_type.present?
39
-
40
- solr_doc['file_format_tesim'] = file_format(file_metadata)
41
- solr_doc['file_format_sim'] = file_format(file_metadata)
42
- solr_doc['file_size_lts'] = file_metadata.recorded_size[0]
43
- solr_doc['type_tesim'] = file_metadata.pcdm_use.map(&:to_s) if file_metadata.pcdm_use.present?
44
- solr_doc['pcdm_use_tesim'] = file_metadata.pcdm_use.map(&:to_s) if file_metadata.pcdm_use.present?
45
-
46
- # attributes set by fits
47
- solr_doc['format_label_tesim'] = file_metadata.format_label if file_metadata.format_label.present?
48
- solr_doc['size_tesim'] = file_metadata.recorded_size if file_metadata.recorded_size.present?
49
- solr_doc['well_formed_tesim'] = file_metadata.well_formed if file_metadata.well_formed.present?
50
- solr_doc['valid_tesim'] = file_metadata.valid if file_metadata.valid.present?
51
- solr_doc['fits_version_tesim'] = file_metadata.fits_version if file_metadata.fits_version.present?
52
- solr_doc['exif_version_tesim'] = file_metadata.exif_version if file_metadata.exif_version.present?
53
- solr_doc['checksum_tesim'] = file_metadata.checksum if file_metadata.checksum.present?
54
-
55
- # shared attributes across multiple file types
56
- solr_doc['frame_rate_tesim'] = file_metadata.frame_rate if file_metadata.frame_rate.present? # audio, video
57
- solr_doc['bit_rate_tesim'] = file_metadata.bit_rate if file_metadata.bit_rate.present? # audio, video
58
- solr_doc['duration_tesim'] = file_metadata.duration if file_metadata.duration.present? # audio, video
59
- solr_doc['sample_rate_tesim'] = file_metadata.sample_rate if file_metadata.sample_rate.present? # audio, video
60
-
61
- solr_doc['height_tesim'] = file_metadata.height if file_metadata.height.present? # image, video
62
- solr_doc['width_tesim'] = file_metadata.width if file_metadata.width.present? # image, video
63
- solr_doc['height_is'] = Integer(file_metadata.height.first) if file_metadata.height.present?
64
- solr_doc['width_is'] = Integer(file_metadata.width.first) if file_metadata.width.present?
65
-
66
- # attributes set by fits for audio files
67
- solr_doc['bit_depth_tesim'] = file_metadata.bit_depth if file_metadata.bit_depth.present?
68
- solr_doc['channels_tesim'] = file_metadata.channels if file_metadata.channels.present?
69
- solr_doc['alpha_channels_ssi'] = file_metadata.channels.first if file_metadata.channels.present?
70
- solr_doc['data_format_tesim'] = file_metadata.data_format if file_metadata.data_format.present?
71
- solr_doc['offset_tesim'] = file_metadata.offset if file_metadata.offset.present?
72
-
73
- # attributes set by fits for documents
74
- solr_doc['file_title_tesim'] = file_metadata.file_title if file_metadata.file_title.present?
75
- solr_doc['page_count_tesim'] = file_metadata.page_count if file_metadata.page_count.present?
76
- solr_doc['language_tesim'] = file_metadata.language if file_metadata.language.present?
77
- solr_doc['word_count_tesim'] = file_metadata.word_count if file_metadata.word_count.present?
78
- solr_doc['character_count_tesim'] = file_metadata.character_count if file_metadata.character_count.present?
79
- solr_doc['line_count_tesim'] = file_metadata.line_count if file_metadata.line_count.present?
80
- solr_doc['character_set_tesim'] = file_metadata.character_set if file_metadata.character_set.present?
81
- solr_doc['markup_basis_tesim'] = file_metadata.markup_basis if file_metadata.markup_basis.present?
82
- solr_doc['paragraph_count_tesim'] = file_metadata.paragraph_count if file_metadata.paragraph_count.present?
83
- solr_doc['markup_language_tesim'] = file_metadata.markup_language if file_metadata.markup_language.present?
84
- solr_doc['table_count_tesim'] = file_metadata.table_count if file_metadata.table_count.present?
85
- solr_doc['graphics_count_tesim'] = file_metadata.graphics_count if file_metadata.graphics_count.present?
86
-
87
- # attributes set by fits for images
88
- solr_doc['byte_order_tesim'] = file_metadata.byte_order if file_metadata.byte_order.present?
89
- solr_doc['compression_tesim'] = file_metadata.compression if file_metadata.compression.present?
90
- solr_doc['color_space_tesim'] = file_metadata.color_space if file_metadata.color_space.present?
91
- solr_doc['profile_name_tesim'] = file_metadata.profile_name if file_metadata.profile_name.present?
92
- solr_doc['profile_version_tesim'] = file_metadata.profile_version if file_metadata.profile_version.present?
93
- solr_doc['orientation_tesim'] = file_metadata.orientation if file_metadata.orientation.present?
94
- solr_doc['color_map_tesim'] = file_metadata.color_map if file_metadata.color_map.present?
95
- solr_doc['image_producer_tesim'] = file_metadata.image_producer if file_metadata.image_producer.present?
96
- solr_doc['capture_device_tesim'] = file_metadata.capture_device if file_metadata.capture_device.present?
97
- solr_doc['scanning_software_tesim'] = file_metadata.scanning_software if file_metadata.scanning_software.present?
98
- solr_doc['gps_timestamp_tesim'] = file_metadata.gps_timestamp if file_metadata.gps_timestamp.present?
99
- solr_doc['latitude_tesim'] = file_metadata.latitude if file_metadata.latitude.present?
100
- solr_doc['longitude_tesim'] = file_metadata.longitude if file_metadata.longitude.present?
101
-
102
- # attributes set by fits for video
103
- solr_doc['aspect_ratio_tesim'] = file_metadata.aspect_ratio if file_metadata.aspect_ratio.present?
104
- end
105
- end
106
-
107
- private
108
-
109
- # Convert Valkyrie Original File Pointer to versioned url syntax expected by the iiif_presenter
110
- def original_file_id
111
- "#{resource.id}/files/#{resource.original_file_id}"
112
- end
113
-
114
- def file_format(file)
115
- if file.mime_type.present? && file.format_label.present?
116
- "#{file.mime_type.split('/').last} (#{file.format_label.join(', ')})"
117
- elsif file.mime_type.present?
118
- file.mime_type.split('/').last
119
- elsif file.format_label.present?
120
- file.format_label
121
- end
122
- end
123
-
124
- def index_lease(doc)
125
- if resource.lease&.active?
126
- doc['lease_expiration_date_dtsi'] = resource.lease.lease_expiration_date&.to_datetime
127
- doc['visibility_after_lease_ssim'] = resource.lease.visibility_after_lease
128
- doc['visibility_during_lease_ssim'] = resource.lease.visibility_during_lease
129
- else
130
- doc['lease_history_ssim'] = resource&.lease&.lease_history
131
- end
132
-
133
- doc
134
- end
135
-
136
- def index_embargo(doc)
137
- if resource.embargo&.active?
138
- doc['embargo_release_date_dtsi'] = resource.embargo.embargo_release_date&.to_datetime
139
- doc['visibility_after_embargo_ssim'] = resource.embargo.visibility_after_embargo
140
- doc['visibility_during_embargo_ssim'] = resource.embargo.visibility_during_embargo
141
- else
142
- doc['embargo_history_ssim'] = resource&.embargo&.embargo_history
143
- end
144
-
145
- doc
5
+ # @deprecated use +Hyrax::Indexers::FileSetIndexer+ instead
6
+ class ValkyrieFileSetIndexer < Hyrax::Indexers::FileSetIndexer
7
+ def initialize(*args, **kwargs)
8
+ Deprecation.warn "`Hyrax::ValkyrieFileSetIndexer` is deprecated. Use `Hyrax::Indexers::FileSetIndexer` instead."
9
+ super
146
10
  end
147
11
  end
148
12
  end
@@ -2,121 +2,17 @@
2
2
 
3
3
  module Hyrax
4
4
  ##
5
- # @api public
6
- #
7
- # Transforms +Valkyrie::Resource+ models to solr-ready key-value hashes. Use
8
- # {#to_solr} to retrieve the indexable hash.
9
- #
10
- # The default {Hyrax::ValkyrieIndexer} implementation provides minimal
11
- # indexing for the Valkyrie id and the reserved +#created_at+ and
12
- # +#updated_at+ attributes.
13
- #
14
- # Custom indexers inheriting from others are responsible for providing a full
15
- # index hash. A common pattern for doing this is to employ method composition
16
- # to retrieve the parent's data, then modify it:
17
- # +def to_solr; super.tap { |index_document| transform(index_document) }; end+.
18
- # This technique creates infinitely composible index building behavior, with
19
- # indexers that can always see the state of the resource and the full current
20
- # index document.
21
- #
22
- # It's recommended to *never* modify the state of +resource+ in an indexer.
23
- #
24
- # @example defining a custom indexer with composition
25
- # class MyIndexer < ValkyrieIndexer
26
- # def to_solr
27
- # super.tap do |index_document|
28
- # index_document[:my_field_tesim] = resource.my_field.map(&:to_s)
29
- # index_document[:other_field_ssim] = resource.other_field
30
- # end
31
- # end
32
- # end
33
- #
34
- # @example pairing an indexer with a model class
35
- # class Book < Hyrax::Resource
36
- # attribute :author
37
- # end
38
- #
39
- # # match by name "#{model_class}Indexer"
40
- # class BookIndexer < ValkyrieIndexer
41
- # def to_solr
42
- # super.tap do |index_document|
43
- # index_document[:author_si] = resource.author
44
- # end
45
- # end
46
- # end
47
- #
48
- # ValkyrieIndexer.for(resource: Book.new) # => #<BookIndexer:0x0000563715a9f1f8 ...>
49
- #
50
- # @see Valkyrie::Indexing::Solr::IndexingAdapter
51
- class ValkyrieIndexer
52
- ##
53
- # @!attribute [r] resource
54
- # @api public
55
- # @return [Valkyrie::Resource]
56
- attr_reader :resource
57
-
58
- ##
59
- # @api private
60
- # @param [Valkyrie::Resource] resource
61
- def initialize(resource:)
62
- @resource = resource
63
- end
64
-
65
- ##
66
- # @api public
67
- # @return [HashWithIndifferentAccess<Symbol, Object>]
68
- def to_solr
69
- {
70
- "id": resource.id.to_s,
71
- "date_uploaded_dtsi": resource.created_at,
72
- "date_modified_dtsi": resource.updated_at,
73
- "system_create_dtsi": resource.created_at,
74
- "system_modified_dtsi": resource.updated_at,
75
- "has_model_ssim": resource.internal_resource
76
- }.with_indifferent_access
77
- end
78
-
79
- ##
80
- # @api private
81
- # @note provided for ActiveFedora compatibility.
82
- def generate_solr_document
83
- to_solr.stringify_keys
5
+ # @deprecated use +Hyrax::Indexers::ResourceIndexer+ instead
6
+ class ValkyrieIndexer < Hyrax::Indexers::ResourceIndexer
7
+ def initialize(*args, **kwargs)
8
+ Deprecation.warn "`Hyrax::ValkyrieIndexer` is deprecated. Use `Hyrax::Indexers::ResourceIndexer` instead."
9
+ super
84
10
  end
85
11
 
86
12
  class << self
87
- ##
88
- # @api public
89
- # @param resource [Valkyrie::Resource] an instance of a +Valkyrie::Resource+
90
- # or an inherited class
91
- # @note This factory will attempt to return an indexer following a naming convention
92
- # where the indexer for a resource class is expected to be the class name
93
- # appended with 'Indexer'. It will return default {ValkyrieIndexer} if
94
- # an indexer class following the naming convention is not found.
95
- #
96
- # @return [Valkyrie::Indexer] an instance of ValkyrieIndexer or an inherited class based on naming convention
97
- #
98
- # @example
99
- # ValkyrieIndexer.for(resource: Book.new) # => #<BookIndexer ...>
100
- def for(resource:)
101
- case resource
102
- when Hyrax::FileSet
103
- Hyrax::ValkyrieFileSetIndexer.new(resource: resource)
104
- else
105
- indexer_class_for(resource).new(resource: resource)
106
- end
107
- end
108
-
109
- private
110
-
111
- ##
112
- # @param [Object]
113
- # @return [Class]
114
- def indexer_class_for(resource)
115
- indexer_class = "#{resource.class.name}Indexer".safe_constantize
116
-
117
- return indexer_class if indexer_class.is_a?(Class) &&
118
- indexer_class.instance_methods.include?(:to_solr)
119
- resource.try(:work?) ? Hyrax::ValkyrieWorkIndexer : ValkyrieIndexer
13
+ def for(*args, **kwargs)
14
+ Deprecation.warn "`Hyrax::ValkyrieIndexer.for` is deprecated. Use `Hyrax::Indexers::ResourceIndexer.for` instead."
15
+ Hyrax::Indexers::ResourceIndexer.for(*args, **kwargs)
120
16
  end
121
17
  end
122
18
  end
@@ -2,69 +2,11 @@
2
2
 
3
3
  module Hyrax
4
4
  ##
5
- # Indexes Hyrax::Work objects
6
- class ValkyrieWorkIndexer < Hyrax::ValkyrieIndexer
7
- include Hyrax::ResourceIndexer
8
- include Hyrax::PermissionIndexer
9
- include Hyrax::VisibilityIndexer
10
- include Hyrax::ThumbnailIndexer
11
- include Hyrax::Indexer(:core_metadata)
12
-
13
- def to_solr # rubocop:disable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/MethodLength
14
- super.tap do |solr_doc|
15
- solr_doc['generic_type_si'] = 'Work'
16
- solr_doc['suppressed_bsi'] = suppressed?(resource)
17
- solr_doc['admin_set_id_ssim'] = [resource.admin_set_id.to_s]
18
- admin_set_label = admin_set_label(resource)
19
- solr_doc['admin_set_sim'] = admin_set_label
20
- solr_doc['admin_set_tesim'] = admin_set_label
21
- solr_doc["#{Hyrax.config.admin_set_predicate.qname.last}_ssim"] = [resource.admin_set_id.to_s]
22
- solr_doc['member_of_collection_ids_ssim'] = resource.member_of_collection_ids.map(&:to_s)
23
- solr_doc['member_ids_ssim'] = resource.member_ids.map(&:to_s)
24
- solr_doc['depositor_ssim'] = [resource.depositor]
25
- solr_doc['depositor_tesim'] = [resource.depositor]
26
- solr_doc['hasRelatedMediaFragment_ssim'] = [resource.representative_id.to_s]
27
- solr_doc['hasRelatedImage_ssim'] = [resource.thumbnail_id.to_s]
28
- solr_doc['hasFormat_ssim'] = resource.rendering_ids.map(&:to_s) if resource.rendering_ids.present?
29
- index_embargo(solr_doc)
30
- index_lease(solr_doc)
31
- end
32
- end
33
-
34
- private
35
-
36
- def suppressed?(resource)
37
- Hyrax::ResourceStatus.new(resource: resource).inactive?
38
- end
39
-
40
- def admin_set_label(resource)
41
- return if resource.admin_set_id.blank?
42
- admin_set = Hyrax.query_service.find_by(id: resource.admin_set_id)
43
- admin_set.title
44
- end
45
-
46
- def index_embargo(doc)
47
- if resource.embargo&.active?
48
- doc['embargo_release_date_dtsi'] = resource.embargo.embargo_release_date&.to_datetime
49
- doc['visibility_after_embargo_ssim'] = resource.embargo.visibility_after_embargo
50
- doc['visibility_during_embargo_ssim'] = resource.embargo.visibility_during_embargo
51
- else
52
- doc['embargo_history_ssim'] = resource&.embargo&.embargo_history
53
- end
54
-
55
- doc
56
- end
57
-
58
- def index_lease(doc)
59
- if resource.lease&.active?
60
- doc['lease_expiration_date_dtsi'] = resource.lease.lease_expiration_date&.to_datetime
61
- doc['visibility_after_lease_ssim'] = resource.lease.visibility_after_lease
62
- doc['visibility_during_lease_ssim'] = resource.lease.visibility_during_lease
63
- else
64
- doc['lease_history_ssim'] = resource&.lease&.lease_history
65
- end
66
-
67
- doc
5
+ # @deprecated use +Hyrax::Indexers::PcdmObjectIndexer+ instead
6
+ class ValkyrieWorkIndexer < Hyrax::Indexers::PcdmObjectIndexer
7
+ def initialize(*args, **kwargs)
8
+ Deprecation.warn "`Hyrax::ValkyrieWorkIndexer` is deprecated. Use `Hyrax::Indexers::PcdmObjectIndexer` instead."
9
+ super
68
10
  end
69
11
  end
70
12
  end
@@ -15,6 +15,7 @@ module Hyrax
15
15
  # This enables us to return a Work when we have a FileSet that matches
16
16
  # the search query. While at the same time allowing us not to return Collections
17
17
  # when a work in the collection matches the query.
18
+ # NOTE: file_set_ids_ssim is not indexed for valkyrie resources
18
19
  solr_doc['file_set_ids_ssim'] = solr_doc['member_ids_ssim']
19
20
  solr_doc['visibility_ssi'] = object.visibility
20
21
 
@@ -44,7 +44,7 @@ class ControlledVocabularyInput < MultiValueInput
44
44
  def hidden_id_field(value, index)
45
45
  name = name_for(attribute_name, index, 'id')
46
46
  id = id_for(attribute_name, index, 'id')
47
- hidden_value = value.node? ? '' : value.rdf_subject
47
+ hidden_value = value.try(:node?) ? '' : value.rdf_subject
48
48
  @builder.hidden_field(attribute_name, name: name, id: id, value: hidden_value, data: { id: 'remote' })
49
49
  end
50
50
 
@@ -51,7 +51,7 @@ class CharacterizeJob < Hyrax::ApplicationJob
51
51
  # value. So later we'll ensure it's set to the new file's filename.
52
52
  reset_title = file_set.title.first == file_set.label
53
53
 
54
- characterization_service.run(file_set.characterization_proxy, filepath)
54
+ characterization_service.run(file_set.characterization_proxy, filepath, **Hyrax.config.characterization_options)
55
55
  Hyrax.logger.debug "Ran characterization on #{file_set.characterization_proxy.id} (#{file_set.characterization_proxy.mime_type})"
56
56
  file_set.characterization_proxy.alpha_channels = channels(filepath) if file_set.image? && Hyrax.config.iiif_image_server?
57
57
  file_set.characterization_proxy.save!
@@ -17,15 +17,48 @@ class CreateWorkJob < Hyrax::ApplicationJob
17
17
  def perform(user, model, attributes, operation)
18
18
  operation.performing!
19
19
  work = model.constantize.new
20
- current_ability = Ability.new(user)
21
- env = Hyrax::Actors::Environment.new(work, current_ability, attributes)
22
- status = work_actor.create(env)
20
+ if model.constantize < ActiveFedora::Base
21
+ status = batch_create_af_work(work, attributes, user)
22
+ errors = work.errors
23
+ else
24
+ result = batch_create_valkyrie_work(work, attributes, user)
25
+ status = result.success?
26
+ errors = result.failure&.last
27
+ end
28
+
23
29
  return operation.success! if status
24
- operation.fail!(work.errors.full_messages.join(' '))
30
+ operation.fail!(errors.full_messages.join(' '))
25
31
  end
26
32
 
27
33
  private
28
34
 
35
+ def batch_create_af_work(work, attributes, user)
36
+ current_ability = Ability.new(user)
37
+ env = Hyrax::Actors::Environment.new(work, current_ability, attributes)
38
+ work_actor.create(env)
39
+ end
40
+
41
+ def batch_create_valkyrie_work(work, attributes, user)
42
+ uploaded_file_ids = attributes.delete(:uploaded_files)
43
+ files = Hyrax::UploadedFile.find(uploaded_file_ids)
44
+ permissions_params = attributes.delete(:permissions_attributes)
45
+ form = Hyrax::FormFactory.new.build(work, nil, nil)
46
+ form.validate(attributes)
47
+
48
+ transactions['change_set.create_work']
49
+ .with_step_args(
50
+ 'work_resource.add_file_sets' => { uploaded_files: files },
51
+ 'change_set.set_user_as_depositor' => { user: user },
52
+ 'work_resource.change_depositor' => { user: ::User.find_by_user_key(form.on_behalf_of) },
53
+ 'work_resource.save_acl' => { permissions_params: permissions_params }
54
+ )
55
+ .call(form)
56
+ end
57
+
58
+ def transactions
59
+ Hyrax::Transactions::Container
60
+ end
61
+
29
62
  def work_actor
30
63
  Hyrax::CurationConcern.actor
31
64
  end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+ class ValkyrieCharacterizationJob < Hyrax::ApplicationJob
3
+ queue_as Hyrax.config.ingest_queue_name
4
+ def perform(file_metadata_id)
5
+ file_metadata = Hyrax.custom_queries.find_file_metadata_by(id: file_metadata_id)
6
+ Hyrax.config.characterization_service
7
+ .run(metadata: file_metadata, file: file_metadata.file, **Hyrax.config.characterization_options)
8
+ end
9
+ end
@@ -25,14 +25,12 @@ class ValkyrieIngestJob < Hyrax::ApplicationJob
25
25
  def ingest(file:, pcdm_use:)
26
26
  file_set_uri = Valkyrie::ID.new(file.file_set_uri)
27
27
  file_set = Hyrax.query_service.find_by(id: file_set_uri)
28
- updated_metadata = upload_file(
28
+ upload_file(
29
29
  file: file,
30
30
  file_set: file_set,
31
31
  pcdm_use: pcdm_use,
32
32
  user: file.user
33
33
  )
34
-
35
- ValkyrieCreateDerivativesJob.perform_later(file_set.id.to_s, updated_metadata.id.to_s)
36
34
  end
37
35
 
38
36
  ##
@@ -28,7 +28,26 @@ class AdminSet < ActiveFedora::Base
28
28
  DEFAULT_WORKFLOW_NAME = Hyrax.config.default_active_workflow_name
29
29
 
30
30
  validates_with Hyrax::HasOneTitleValidator
31
+
32
+ ##
33
+ # @!group Class Attributes
34
+ #
35
+ # @!attribute internal_resource
36
+ # @return [String]
37
+ class_attribute :internal_resource, default: "AdminSet"
38
+
31
39
  class_attribute :human_readable_short_description
40
+ # @!endgroup Class Attributes
41
+ ##
42
+
43
+ def self.to_rdf_representation
44
+ internal_resource
45
+ end
46
+
47
+ def to_rdf_representation
48
+ internal_resource
49
+ end
50
+
32
51
  self.indexer = Hyrax::AdminSetIndexer
33
52
 
34
53
  property :title, predicate: ::RDF::Vocab::DC.title
@@ -39,7 +58,7 @@ class AdminSet < ActiveFedora::Base
39
58
  predicate: Hyrax.config.admin_set_predicate,
40
59
  class_name: 'ActiveFedora::Base'
41
60
 
42
- before_destroy :check_if_not_default_set, :check_if_empty
61
+ before_destroy :check_if_not_default_set, :check_if_empty, prepend: true
43
62
  after_destroy :destroy_permission_template
44
63
 
45
64
  def collection_type_gid
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Provide plain collection model if not defined by the application.
4
+ # Needed until Hyrax internals do not assume its existence.
5
+ class ::Collection < Hyrax.config.collection_class; end unless '::Collection'.safe_constantize
@@ -19,15 +19,8 @@ class CollectionBrandingInfo < ApplicationRecord
19
19
  super()
20
20
  end
21
21
 
22
- def delete(location_path = nil)
23
- id = if location_path
24
- Deprecation.warn('Passing an explict location path is ' \
25
- 'deprecated. Call without arguments instead.')
26
- location_path
27
- else
28
- local_path
29
- end
30
- storage.delete(id: id)
22
+ def delete(_location_path = nil)
23
+ storage.delete(id: local_path)
31
24
  end
32
25
 
33
26
  def find_local_filename(collection_id, role, filename)
@@ -3,49 +3,34 @@ module Hyrax
3
3
  module Ability
4
4
  module AdminSetAbility
5
5
  def admin_set_abilities # rubocop:disable Metrics/MethodLength, Metrics/AbcSize
6
+ models = Hyrax::ModelRegistry.admin_set_classes
6
7
  if admin?
7
- can :manage, [AdminSet, Hyrax::AdministrativeSet]
8
- can :manage_any, AdminSet
9
- can :manage_any, Hyrax::AdministrativeSet
10
- can :create_any, AdminSet
11
- can :create_any, Hyrax::AdministrativeSet
12
- can :view_admin_show_any, AdminSet
13
- can :view_admin_show_any, Hyrax::AdministrativeSet
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
- if Hyrax::Collections::PermissionsService.can_manage_any_admin_set?(ability: self)
16
- can :manage_any, AdminSet
17
- can :manage_any, Hyrax::AdministrativeSet
18
- end
13
+ can :manage_any, models if Hyrax::Collections::PermissionsService.can_manage_any_admin_set?(ability: self)
19
14
  if Hyrax::CollectionTypes::PermissionsService.can_create_admin_set_collection_type?(ability: self)
20
- can :create, [AdminSet, Hyrax::AdministrativeSet]
21
- can :create_any, AdminSet
22
- can :create_any, Hyrax::AdministrativeSet
23
- end
24
- if Hyrax::Collections::PermissionsService.can_view_admin_show_for_any_admin_set?(ability: self)
25
- can :view_admin_show_any, AdminSet
26
- can :view_admin_show_any, Hyrax::AdministrativeSet
15
+ can :create, models
16
+ can :create_any, models
27
17
  end
18
+ can :view_admin_show_any, models if Hyrax::Collections::PermissionsService.can_view_admin_show_for_any_admin_set?(ability: self)
28
19
  # [:edit, :update, :destroy] for AdminSet is controlled by Hydra::Ability #edit_permissions
29
- can [:edit, :update, :destroy], Hyrax::AdministrativeSet do |admin_set| # for test by solr_doc, see solr_document_ability.rb
20
+ can [:edit, :update, :destroy], models do |admin_set| # for test by solr_doc, see solr_document_ability.rb
30
21
  test_edit(admin_set.id)
31
22
  end
32
23
 
33
- can :deposit, AdminSet do |admin_set| # for test by solr_doc, see collection_ability.rb
34
- Hyrax::Collections::PermissionsService.can_deposit_in_collection?(ability: self, collection_id: admin_set.id)
35
- end
36
- can :deposit, Hyrax::AdministrativeSet do |admin_set| # for test by solr_doc, see collection_ability.rb
24
+ can :deposit, models do |admin_set| # for test by solr_doc, see collection_ability.rb
37
25
  Hyrax::Collections::PermissionsService.can_deposit_in_collection?(ability: self, collection_id: admin_set.id)
38
26
  end
39
27
 
40
- can :view_admin_show, AdminSet do |admin_set| # admin show page # for test by solr_doc, see collection_ability.rb
41
- Hyrax::Collections::PermissionsService.can_view_admin_show_for_collection?(ability: self, collection_id: admin_set.id)
42
- end
43
- can :view_admin_show, Hyrax::AdministrativeSet do |admin_set| # admin show page # for test by solr_doc, see collection_ability.rb
28
+ can :view_admin_show, models do |admin_set| # admin show page # for test by solr_doc, see collection_ability.rb
44
29
  Hyrax::Collections::PermissionsService.can_view_admin_show_for_collection?(ability: self, collection_id: admin_set.id)
45
30
  end
46
31
 
47
32
  # [:read] for AdminSet is controlled by Hydra::Ability #read_permissions
48
- can :read, Hyrax::AdministrativeSet do |admin_set| # admin show page # for test by solr_doc, see collection_ability.rb
33
+ can :read, models do |admin_set| # admin show page # for test by solr_doc, see collection_ability.rb
49
34
  test_read(admin_set.id)
50
35
  end
51
36
  end