hyrax 5.0.0 → 5.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (331) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +7 -176
  3. data/.dassie/.env +8 -3
  4. data/.dassie/Gemfile +13 -2
  5. data/.dassie/app/controllers/hyrax/generic_work_resources_controller.rb +17 -0
  6. data/.dassie/app/controllers/hyrax/generic_works_controller.rb +7 -1
  7. data/.dassie/app/forms/generic_work_resource_form.rb +20 -0
  8. data/.dassie/app/indexers/generic_work_resource_indexer.rb +16 -0
  9. data/.dassie/app/models/admin_set_resource.rb +9 -0
  10. data/.dassie/app/models/collection_resource.rb +2 -0
  11. data/.dassie/app/models/file_set.rb +2 -0
  12. data/.dassie/app/models/generic_work_resource.rb +10 -0
  13. data/.dassie/app/views/hyrax/generic_work_resources/_generic_work_resource.html.erb +2 -0
  14. data/.dassie/config/analytics.yml +6 -1
  15. data/.dassie/config/application.rb +24 -0
  16. data/.dassie/config/initializers/hyrax.rb +13 -3
  17. data/.dassie/config/initializers/wings.rb +109 -0
  18. data/.dassie/config/metadata/generic_work_resource.yaml +22 -0
  19. data/.dassie/config/valkyrie_index.yml +4 -10
  20. data/.dassie/db/migrate/20240506070809_valkyrie_id_to_string.rb +5 -0
  21. data/.dassie/db/schema.rb +2 -2
  22. data/.dassie/spec/indexers/generic_work_resource_indexer_spec.rb +13 -0
  23. data/.dassie/spec/models/generic_work_resource_spec.rb +12 -0
  24. data/.dassie/spec/views/generic_work_resources/_generic_work_resource.html.erb_spec.rb +7 -0
  25. data/.dockerignore +6 -4
  26. data/.github/release.yml +3 -0
  27. data/.github/workflows/lint-build-test.yml +130 -0
  28. data/.github/workflows/test-results.yml +40 -0
  29. data/.koppie/.env +7 -5
  30. data/.koppie/Gemfile +12 -1
  31. data/.koppie/config/analytics.yml +6 -1
  32. data/.koppie/config/environments/test.rb +2 -0
  33. data/.koppie/config/initializers/1_valkyrie.rb +6 -2
  34. data/.koppie/config/solr.yml +1 -1
  35. data/.regen +1 -1
  36. data/.rubocop.yml +5 -0
  37. data/Dockerfile +16 -36
  38. data/Gemfile +2 -0
  39. data/app/assets/javascripts/hydra-editor/field_manager.es6 +187 -0
  40. data/app/assets/javascripts/hyrax/analytics_events.js +48 -24
  41. data/app/assets/javascripts/hyrax/autocomplete/linked_data.es6 +3 -0
  42. data/app/assets/javascripts/hyrax/collapse.js +4 -4
  43. data/app/assets/javascripts/hyrax/editor/controlled_vocabulary.es6 +38 -5
  44. data/app/assets/javascripts/hyrax/file_manager/save_manager.es6 +2 -0
  45. data/app/assets/javascripts/hyrax/search.js +2 -3
  46. data/app/assets/javascripts/hyrax/select_work_type.es6 +3 -1
  47. data/app/assets/javascripts/hyrax/uploader.js +20 -18
  48. data/app/assets/javascripts/hyrax.js +1 -0
  49. data/app/assets/stylesheets/_bootstrap-default-overrides.scss +4 -0
  50. data/app/assets/stylesheets/hyrax/_card.scss +4 -0
  51. data/app/assets/stylesheets/hyrax/_catalog.scss +21 -0
  52. data/app/assets/stylesheets/hyrax/_collections.scss +1 -1
  53. data/app/assets/stylesheets/hyrax/_facets.scss +15 -3
  54. data/app/assets/stylesheets/hyrax/_featured.scss +4 -0
  55. data/app/assets/stylesheets/hyrax/_file_upload.scss +6 -0
  56. data/app/assets/stylesheets/hyrax/_form.scss +4 -0
  57. data/app/assets/stylesheets/hyrax/_forms.scss +2 -1
  58. data/app/assets/stylesheets/hyrax/_nestable.scss +9 -8
  59. data/app/assets/stylesheets/hyrax/_select_work_type.scss +12 -0
  60. data/app/assets/stylesheets/hyrax/_styles.scss +4 -0
  61. data/app/assets/stylesheets/hyrax/_work-show.scss +3 -0
  62. data/app/assets/stylesheets/hyrax/controlled_vocabulary.scss +2 -2
  63. data/app/controllers/concerns/hyrax/singular_subresource_controller.rb +7 -2
  64. data/app/controllers/concerns/hyrax/valkyrie_downloads_controller_behavior.rb +11 -2
  65. data/app/controllers/concerns/hyrax/works_controller_behavior.rb +9 -2
  66. data/app/controllers/hyrax/admin/analytics/collection_reports_controller.rb +2 -2
  67. data/app/controllers/hyrax/admin/analytics/work_reports_controller.rb +7 -8
  68. data/app/controllers/hyrax/dashboard/collections_controller.rb +2 -1
  69. data/app/controllers/hyrax/downloads_controller.rb +24 -3
  70. data/app/controllers/hyrax/file_sets_controller.rb +33 -7
  71. data/app/controllers/hyrax/my/works_controller.rb +20 -0
  72. data/app/controllers/hyrax/single_use_links_viewer_controller.rb +9 -2
  73. data/app/controllers/hyrax/stats_controller.rb +1 -1
  74. data/app/controllers/hyrax/uploads_controller.rb +28 -2
  75. data/app/forms/hyrax/forms/admin/appearance.rb +1 -1
  76. data/app/forms/hyrax/forms/admin/collection_type_form.rb +1 -7
  77. data/app/forms/hyrax/forms/pcdm_collection_form.rb +9 -0
  78. data/app/forms/hyrax/forms/work_embargo_form.rb +6 -0
  79. data/app/forms/hyrax/forms/work_lease_form.rb +6 -0
  80. data/app/indexers/concerns/hyrax/location_indexer.rb +2 -2
  81. data/app/indexers/hyrax/indexers/file_set_indexer.rb +4 -0
  82. data/app/indexers/hyrax/indexers/resource_indexer.rb +1 -0
  83. data/app/indexers/hyrax/valkyrie_indexer.rb +3 -5
  84. data/app/jobs/migrate_files_to_valkyrie_job.rb +109 -0
  85. data/app/jobs/migrate_resources_job.rb +34 -0
  86. data/app/jobs/valkyrie_create_derivatives_job.rb +2 -1
  87. data/app/models/admin_set.rb +1 -0
  88. data/app/models/collection.rb +13 -1
  89. data/app/models/concerns/hyrax/ar_resource.rb +104 -0
  90. data/app/models/concerns/hyrax/solr_document/ordered_members.rb +2 -1
  91. data/app/models/concerns/hyrax/solr_document_behavior.rb +13 -2
  92. data/app/models/concerns/hyrax/valkyrie_lazy_migration.rb +82 -0
  93. data/app/models/file_download_stat.rb +1 -1
  94. data/app/models/file_view_stat.rb +1 -1
  95. data/app/models/hyrax/collection_type.rb +12 -4
  96. data/app/models/hyrax/file_metadata.rb +19 -0
  97. data/app/models/hyrax/file_set.rb +25 -0
  98. data/app/models/hyrax/model_registry.rb +3 -4
  99. data/app/models/hyrax/resource.rb +5 -0
  100. data/app/models/hyrax/statistic.rb +12 -37
  101. data/app/presenters/hyrax/file_set_presenter.rb +2 -1
  102. data/app/presenters/hyrax/file_usage.rb +3 -3
  103. data/app/presenters/hyrax/iiif_manifest_presenter.rb +2 -1
  104. data/app/presenters/hyrax/member_presenter_factory.rb +7 -1
  105. data/app/presenters/hyrax/menu_presenter.rb +1 -1
  106. data/app/presenters/hyrax/pcdm_member_presenter_factory.rb +2 -2
  107. data/app/presenters/hyrax/stats_usage_presenter.rb +2 -1
  108. data/app/presenters/hyrax/work_show_presenter.rb +15 -19
  109. data/app/presenters/hyrax/work_usage.rb +5 -2
  110. data/app/search_builders/hyrax/expired_embargo_search_builder.rb +7 -1
  111. data/app/search_builders/hyrax/expired_lease_search_builder.rb +7 -1
  112. data/app/search_builders/hyrax/filter_by_type.rb +1 -3
  113. data/app/search_builders/hyrax/valkyrie_abstract_type_relation.rb +7 -2
  114. data/app/services/hyrax/access_control_list.rb +1 -1
  115. data/app/services/hyrax/admin_set_create_service.rb +16 -5
  116. data/app/services/hyrax/admin_set_service.rb +2 -1
  117. data/app/services/hyrax/analytics/ga4/base.rb +96 -0
  118. data/app/services/hyrax/analytics/ga4/events.rb +25 -0
  119. data/app/services/hyrax/analytics/ga4/events_daily.rb +36 -0
  120. data/app/services/hyrax/analytics/ga4/visits.rb +33 -0
  121. data/app/services/hyrax/analytics/ga4/visits_daily.rb +24 -0
  122. data/app/services/hyrax/analytics/ga4.rb +204 -0
  123. data/app/services/hyrax/analytics/google.rb +16 -2
  124. data/app/services/hyrax/analytics/matomo.rb +16 -3
  125. data/app/services/hyrax/analytics/results.rb +6 -0
  126. data/app/services/hyrax/custom_queries/find_access_control.rb +1 -1
  127. data/app/services/hyrax/custom_queries/find_by_date_range.rb +6 -23
  128. data/app/services/hyrax/custom_queries/find_collections_by_type.rb +2 -2
  129. data/app/services/hyrax/custom_queries/find_count_by.rb +3 -31
  130. data/app/services/hyrax/custom_queries/find_file_metadata.rb +2 -2
  131. data/app/services/hyrax/custom_queries/find_models_by_access.rb +5 -27
  132. data/app/services/hyrax/embargo_manager.rb +2 -1
  133. data/app/services/hyrax/file_set_file_service.rb +10 -1
  134. data/app/services/hyrax/listeners/file_listener.rb +39 -0
  135. data/app/services/hyrax/listeners/file_metadata_listener.rb +0 -30
  136. data/app/services/hyrax/lock_manager.rb +7 -7
  137. data/app/services/hyrax/lockable.rb +4 -3
  138. data/app/services/hyrax/simple_schema_loader.rb +1 -1
  139. data/app/services/hyrax/solr_service.rb +22 -8
  140. data/app/services/hyrax/statistics/query_service.rb +1 -1
  141. data/app/services/hyrax/statistics/works/over_time.rb +1 -1
  142. data/app/services/hyrax/thumbnail_path_service.rb +2 -0
  143. data/app/services/hyrax/user_stat_importer.rb +5 -5
  144. data/app/services/hyrax/valkyrie_upload.rb +14 -9
  145. data/app/services/hyrax/versioning_service.rb +10 -2
  146. data/app/services/hyrax/work_query_service.rb +2 -2
  147. data/app/services/migrate_resource_service.rb +55 -0
  148. data/app/views/_controls.html.erb +5 -5
  149. data/app/views/_masthead.html.erb +1 -1
  150. data/app/views/catalog/_search_form.html.erb +9 -16
  151. data/app/views/catalog/_thumbnail_list_collection.html.erb +1 -1
  152. data/app/views/catalog/_thumbnail_list_default.html.erb +2 -2
  153. data/app/views/hyrax/admin/analytics/collection_reports/index.html.erb +4 -4
  154. data/app/views/hyrax/admin/analytics/work_reports/index.html.erb +1 -1
  155. data/app/views/hyrax/admin/collection_types/_form.html.erb +4 -4
  156. data/app/views/hyrax/admin/collection_types/index.html.erb +1 -1
  157. data/app/views/hyrax/admin/features/index.html.erb +1 -1
  158. data/app/views/hyrax/base/_file_manager_actions.html.erb +1 -1
  159. data/app/views/hyrax/base/_file_manager_member.html.erb +7 -4
  160. data/app/views/hyrax/base/_file_manager_thumbnail.html.erb +1 -1
  161. data/app/views/hyrax/base/_form_files.html.erb +1 -1
  162. data/app/views/hyrax/base/_form_member_of_collections.html.erb +4 -0
  163. data/app/views/hyrax/base/_show_actions.html.erb +7 -8
  164. data/app/views/hyrax/base/_work_button_row.html.erb +1 -1
  165. data/app/views/hyrax/batch_select/_add_button.html.erb +1 -1
  166. data/app/views/hyrax/content_blocks/_form.html.erb +3 -3
  167. data/app/views/hyrax/dashboard/_sidebar.html.erb +1 -1
  168. data/app/views/hyrax/dashboard/_user_activity.html.erb +2 -2
  169. data/app/views/hyrax/dashboard/collections/_form.html.erb +4 -4
  170. data/app/views/hyrax/dashboard/collections/_form_share.html.erb +6 -4
  171. data/app/views/hyrax/dashboard/collections/_list_collections.html.erb +1 -1
  172. data/app/views/hyrax/dashboard/collections/_show_document_list_row.html.erb +1 -1
  173. data/app/views/hyrax/dashboard/show_admin.html.erb +18 -19
  174. data/app/views/hyrax/dashboard/sidebar/_activity.html.erb +1 -1
  175. data/app/views/hyrax/embargoes/_list_expired_active_embargoes.html.erb +7 -7
  176. data/app/views/hyrax/file_sets/_actions.html.erb +9 -1
  177. data/app/views/hyrax/file_sets/_permission_form.html.erb +4 -2
  178. data/app/views/hyrax/file_sets/_show_actions.html.erb +1 -1
  179. data/app/views/hyrax/homepage/_featured.html.erb +1 -1
  180. data/app/views/hyrax/homepage/_recent_document.html.erb +2 -2
  181. data/app/views/hyrax/leases/_list_expired_active_leases.html.erb +6 -6
  182. data/app/views/hyrax/my/collections/_list_collections.html.erb +1 -1
  183. data/app/views/hyrax/my/collections/_tabs.html.erb +1 -1
  184. data/app/views/hyrax/pages/_form.html.erb +8 -8
  185. data/app/views/hyrax/transfers/_received.html.erb +1 -1
  186. data/app/views/hyrax/uploads/_js_templates.html.erb +9 -9
  187. data/app/views/hyrax/uploads/_js_templates_branding.html.erb +3 -3
  188. data/app/views/hyrax/uploads/_js_templates_versioning.html.erb +1 -1
  189. data/app/views/hyrax/uploads/create.json.jbuilder +2 -2
  190. data/app/views/hyrax/users/_activity_log.html.erb +15 -9
  191. data/app/views/hyrax/users/_user_row.html.erb +6 -3
  192. data/app/views/hyrax/users/_vitals.html.erb +3 -2
  193. data/app/views/layouts/_head_tag_content.html.erb +2 -0
  194. data/app/views/shared/_appearance_styles.html.erb +5 -1
  195. data/app/views/shared/_ga4.html.erb +11 -0
  196. data/app/views/shared/_select_work_type_modal.html.erb +10 -1
  197. data/bin/db-migrate-seed.sh +3 -3
  198. data/bin/dev-entrypoint.sh +7 -2
  199. data/bin/{db-wait.sh → service-wait.sh} +1 -1
  200. data/bin/worker-entrypoint.sh +8 -0
  201. data/chart/hyrax/Chart.yaml +1 -1
  202. data/chart/hyrax/templates/deployment-worker.yaml +2 -2
  203. data/chart/hyrax/templates/deployment.yaml +12 -0
  204. data/chart/hyrax/values.yaml +10 -0
  205. data/config/locales/hyrax.en.yml +4 -2
  206. data/config/metadata/basic_metadata.yaml +20 -0
  207. data/config/metadata/hyrax_internal_metadata.yaml +1 -1
  208. data/docker-compose-dassie.yml +167 -0
  209. data/docker-compose-koppie.yml +21 -36
  210. data/docker-compose-sirenia.yml +50 -44
  211. data/docker-compose.yml +2 -183
  212. data/documentation/developing-your-hyrax-based-app.md +4 -4
  213. data/hyrax.gemspec +7 -12
  214. data/lib/freyja/custom_query_container.rb +5 -0
  215. data/lib/freyja/metadata_adapter.rb +32 -0
  216. data/lib/freyja/persister.rb +42 -0
  217. data/lib/freyja/query_service.rb +20 -0
  218. data/lib/freyja/resource_factory.rb +8 -0
  219. data/lib/freyja.rb +14 -0
  220. data/lib/frigg/custom_query_container.rb +5 -0
  221. data/lib/frigg/metadata_adapter.rb +22 -0
  222. data/lib/frigg/persister.rb +33 -0
  223. data/lib/frigg/query_service.rb +15 -0
  224. data/lib/frigg.rb +13 -0
  225. data/lib/generators/hyrax/install_generator.rb +5 -0
  226. data/lib/generators/hyrax/templates/config/analytics.yml +6 -1
  227. data/lib/generators/hyrax/templates/config/initializers/1_valkyrie.rb +6 -2
  228. data/lib/generators/hyrax/templates/config/valkyrie_index.yml +1 -1
  229. data/lib/goddess/custom_query_container.rb +71 -0
  230. data/lib/goddess/metadata.rb +13 -0
  231. data/lib/goddess/query.rb +176 -0
  232. data/lib/hyrax/configuration.rb +83 -0
  233. data/lib/hyrax/engine.rb +2 -0
  234. data/lib/hyrax/form_fields.rb +1 -3
  235. data/lib/hyrax/name.rb +5 -0
  236. data/lib/hyrax/publisher.rb +11 -0
  237. data/lib/hyrax/rubocop/custom_cops.rb +30 -0
  238. data/lib/hyrax/specs/capybara.rb +10 -6
  239. data/{spec → lib/hyrax/specs/shared_specs}/factories/admin_sets.rb +2 -0
  240. data/{spec → lib/hyrax/specs/shared_specs}/factories/hyrax_embargo.rb +4 -0
  241. data/{spec → lib/hyrax/specs/shared_specs}/factories/hyrax_lease.rb +4 -0
  242. data/{spec → lib/hyrax/specs/shared_specs}/factories/hyrax_work.rb +26 -1
  243. data/lib/hyrax/specs/shared_specs/hydra_works.rb +1 -1
  244. data/lib/hyrax/transactions/admin_set_destroy.rb +2 -1
  245. data/lib/hyrax/transactions/collection_destroy.rb +2 -1
  246. data/lib/hyrax/transactions/container.rb +9 -0
  247. data/lib/hyrax/transactions/steps/add_file_sets.rb +2 -1
  248. data/lib/hyrax/transactions/steps/delete_all_file_metadata.rb +4 -5
  249. data/lib/hyrax/transactions/steps/delete_permission_template.rb +30 -0
  250. data/lib/hyrax/transactions/steps/delete_resource.rb +1 -1
  251. data/lib/hyrax/transactions/steps/save_collection_logo.rb +2 -1
  252. data/lib/hyrax/valkyrie_can_can_adapter.rb +8 -1
  253. data/lib/hyrax/version.rb +1 -1
  254. data/lib/wings/active_fedora_converter.rb +13 -5
  255. data/lib/wings/converter_value_mapper.rb +1 -0
  256. data/lib/wings/services/custom_queries/find_collections_by_type.rb +2 -1
  257. data/lib/wings/services/custom_queries/find_file_metadata.rb +2 -2
  258. data/lib/wings/setup.rb +12 -3
  259. data/lib/wings/transformer_value_mapper.rb +5 -1
  260. data/lib/wings/valkyrie/persister.rb +3 -1
  261. data/template.rb +1 -1
  262. metadata +118 -94
  263. data/.koppie/scripts/db-migrate-seed.sh +0 -9
  264. data/.koppie/scripts/entrypoint.sh +0 -10
  265. data/spec/support/book_resource.rb +0 -36
  266. data/spec/support/can_can_overrides.rb +0 -43
  267. data/spec/support/clean_solr.rb +0 -7
  268. data/spec/support/controller_level_helpers.rb +0 -27
  269. data/spec/support/factory_helpers.rb +0 -94
  270. data/spec/support/fakes/fake_actor.rb +0 -22
  271. data/spec/support/fakes/fake_authority.rb +0 -14
  272. data/spec/support/fakes/fake_search_builder_scope.rb +0 -44
  273. data/spec/support/fakes/indexing_adapter.rb +0 -17
  274. data/spec/support/fakes/test_hydra_group_service.rb +0 -55
  275. data/spec/support/features/batch_edit_actions.rb +0 -37
  276. data/spec/support/features/session_helpers.rb +0 -15
  277. data/spec/support/features/workflow.rb +0 -10
  278. data/spec/support/features.rb +0 -11
  279. data/spec/support/form_with_validations.rb +0 -15
  280. data/spec/support/input_support.rb +0 -12
  281. data/spec/support/logging_formatter.rb +0 -67
  282. data/spec/support/matchers/api_responses.rb +0 -27
  283. data/spec/support/matchers/collection_type_property_matchers.rb +0 -30
  284. data/spec/support/matchers/embargo.rb +0 -9
  285. data/spec/support/matchers/lease.rb +0 -9
  286. data/spec/support/matchers/match_valkyrie_ids_with_af_ids.rb +0 -12
  287. data/spec/support/matchers/pcdm_matchers.rb +0 -34
  288. data/spec/support/matchers/permission.rb +0 -31
  289. data/spec/support/matchers/response_matchers.rb +0 -8
  290. data/spec/support/optional_example.rb +0 -17
  291. data/spec/support/rake.rb +0 -42
  292. data/spec/support/selectors.rb +0 -112
  293. data/spec/support/shared_examples_for_collection_presenter.rb +0 -44
  294. data/spec/support/simple_work.rb +0 -28
  295. data/spec/support/spec_statistic.rb +0 -24
  296. data/spec/support/speedup.rb +0 -7
  297. data/spec/support/statistic_helper.rb +0 -10
  298. data/spec/support/valkyrie_indexing.rb +0 -2
  299. data/spec/support/wings_models.rb +0 -9
  300. /data/{spec → lib/hyrax/specs/shared_specs}/factories/access_control.rb +0 -0
  301. /data/{spec → lib/hyrax/specs/shared_specs}/factories/admin_sets_lw.rb +0 -0
  302. /data/{spec → lib/hyrax/specs/shared_specs}/factories/administrative_sets.rb +0 -0
  303. /data/{spec → lib/hyrax/specs/shared_specs}/factories/api_items.rb +0 -0
  304. /data/{spec → lib/hyrax/specs/shared_specs}/factories/collection_branding_infos.rb +0 -0
  305. /data/{spec → lib/hyrax/specs/shared_specs}/factories/collection_type_participants.rb +0 -0
  306. /data/{spec → lib/hyrax/specs/shared_specs}/factories/collection_types.rb +0 -0
  307. /data/{spec → lib/hyrax/specs/shared_specs}/factories/collections.rb +0 -0
  308. /data/{spec → lib/hyrax/specs/shared_specs}/factories/collections_factory.rb +0 -0
  309. /data/{spec → lib/hyrax/specs/shared_specs}/factories/content_blocks.rb +0 -0
  310. /data/{spec → lib/hyrax/specs/shared_specs}/factories/counter_metrics.rb +0 -0
  311. /data/{spec → lib/hyrax/specs/shared_specs}/factories/featured_works.rb +0 -0
  312. /data/{spec → lib/hyrax/specs/shared_specs}/factories/file_sets.rb +0 -0
  313. /data/{spec → lib/hyrax/specs/shared_specs}/factories/generic_works.rb +0 -0
  314. /data/{spec → lib/hyrax/specs/shared_specs}/factories/hyrax_collection.rb +0 -0
  315. /data/{spec → lib/hyrax/specs/shared_specs}/factories/hyrax_default_admin_set.rb +0 -0
  316. /data/{spec → lib/hyrax/specs/shared_specs}/factories/hyrax_file_metadata.rb +0 -0
  317. /data/{spec → lib/hyrax/specs/shared_specs}/factories/hyrax_file_set.rb +0 -0
  318. /data/{spec → lib/hyrax/specs/shared_specs}/factories/hyrax_resource.rb +0 -0
  319. /data/{spec → lib/hyrax/specs/shared_specs}/factories/object_id.rb +0 -0
  320. /data/{spec → lib/hyrax/specs/shared_specs}/factories/operations.rb +0 -0
  321. /data/{spec → lib/hyrax/specs/shared_specs}/factories/permission.rb +0 -0
  322. /data/{spec → lib/hyrax/specs/shared_specs}/factories/permission_template_accesses.rb +0 -0
  323. /data/{spec → lib/hyrax/specs/shared_specs}/factories/permission_templates.rb +0 -0
  324. /data/{spec → lib/hyrax/specs/shared_specs}/factories/proxy_deposit_requests.rb +0 -0
  325. /data/{spec → lib/hyrax/specs/shared_specs}/factories/single_use_links.rb +0 -0
  326. /data/{spec → lib/hyrax/specs/shared_specs}/factories/sipity_entities.rb +0 -0
  327. /data/{spec → lib/hyrax/specs/shared_specs}/factories/uploaded_files.rb +0 -0
  328. /data/{spec → lib/hyrax/specs/shared_specs}/factories/users.rb +0 -0
  329. /data/{spec → lib/hyrax/specs/shared_specs}/factories/workflow_actions.rb +0 -0
  330. /data/{spec → lib/hyrax/specs/shared_specs}/factories/workflow_states.rb +0 -0
  331. /data/{spec → lib/hyrax/specs/shared_specs}/factories/workflows.rb +0 -0
data/template.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
- gem 'hyrax', '5.0.0'
2
+ gem 'hyrax', '5.0.3'
3
3
  run 'bundle install'
4
4
  generate 'hyrax:install', '-f'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hyrax
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.0.0
4
+ version: 5.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Coyne
@@ -14,7 +14,7 @@ authors:
14
14
  autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
- date: 2024-03-01 00:00:00.000000000 Z
17
+ date: 2025-02-04 00:00:00.000000000 Z
18
18
  dependencies:
19
19
  - !ruby/object:Gem::Dependency
20
20
  name: rails
@@ -92,14 +92,14 @@ dependencies:
92
92
  requirements:
93
93
  - - "~>"
94
94
  - !ruby/object:Gem::Version
95
- version: '4.0'
95
+ version: 4.7.0
96
96
  type: :runtime
97
97
  prerelease: false
98
98
  version_requirements: !ruby/object:Gem::Requirement
99
99
  requirements:
100
100
  - - "~>"
101
101
  - !ruby/object:Gem::Version
102
- version: '4.0'
102
+ version: 4.7.0
103
103
  - !ruby/object:Gem::Dependency
104
104
  name: breadcrumbs_on_rails
105
105
  requirement: !ruby/object:Gem::Requirement
@@ -166,16 +166,16 @@ dependencies:
166
166
  name: concurrent-ruby
167
167
  requirement: !ruby/object:Gem::Requirement
168
168
  requirements:
169
- - - "~>"
169
+ - - '='
170
170
  - !ruby/object:Gem::Version
171
- version: '1.0'
171
+ version: 1.3.4
172
172
  type: :runtime
173
173
  prerelease: false
174
174
  version_requirements: !ruby/object:Gem::Requirement
175
175
  requirements:
176
- - - "~>"
176
+ - - '='
177
177
  - !ruby/object:Gem::Version
178
- version: '1.0'
178
+ version: 1.3.4
179
179
  - !ruby/object:Gem::Dependency
180
180
  name: connection_pool
181
181
  requirement: !ruby/object:Gem::Requirement
@@ -322,6 +322,20 @@ dependencies:
322
322
  - - "~>"
323
323
  - !ruby/object:Gem::Version
324
324
  version: '4.2'
325
+ - !ruby/object:Gem::Dependency
326
+ name: google-analytics-data
327
+ requirement: !ruby/object:Gem::Requirement
328
+ requirements:
329
+ - - "~>"
330
+ - !ruby/object:Gem::Version
331
+ version: '0.6'
332
+ type: :runtime
333
+ prerelease: false
334
+ version_requirements: !ruby/object:Gem::Requirement
335
+ requirements:
336
+ - - "~>"
337
+ - !ruby/object:Gem::Version
338
+ version: '0.6'
325
339
  - !ruby/object:Gem::Dependency
326
340
  name: hydra-derivatives
327
341
  requirement: !ruby/object:Gem::Requirement
@@ -528,16 +542,16 @@ dependencies:
528
542
  name: openseadragon
529
543
  requirement: !ruby/object:Gem::Requirement
530
544
  requirements:
531
- - - ">="
545
+ - - "~>"
532
546
  - !ruby/object:Gem::Version
533
- version: '0'
547
+ version: '0.9'
534
548
  type: :runtime
535
549
  prerelease: false
536
550
  version_requirements: !ruby/object:Gem::Requirement
537
551
  requirements:
538
- - - ">="
552
+ - - "~>"
539
553
  - !ruby/object:Gem::Version
540
- version: '0'
554
+ version: '0.9'
541
555
  - !ruby/object:Gem::Dependency
542
556
  name: posix-spawn
543
557
  requirement: !ruby/object:Gem::Requirement
@@ -744,14 +758,14 @@ dependencies:
744
758
  requirements:
745
759
  - - "~>"
746
760
  - !ruby/object:Gem::Version
747
- version: 3.1.1
761
+ version: '3.5'
748
762
  type: :runtime
749
763
  prerelease: false
750
764
  version_requirements: !ruby/object:Gem::Requirement
751
765
  requirements:
752
766
  - - "~>"
753
767
  - !ruby/object:Gem::Version
754
- version: 3.1.1
768
+ version: '3.5'
755
769
  - !ruby/object:Gem::Dependency
756
770
  name: view_component
757
771
  requirement: !ruby/object:Gem::Requirement
@@ -770,16 +784,16 @@ dependencies:
770
784
  name: sprockets
771
785
  requirement: !ruby/object:Gem::Requirement
772
786
  requirements:
773
- - - "~>"
787
+ - - '='
774
788
  - !ruby/object:Gem::Version
775
- version: '3.7'
789
+ version: 3.7.2
776
790
  type: :runtime
777
791
  prerelease: false
778
792
  version_requirements: !ruby/object:Gem::Requirement
779
793
  requirements:
780
- - - "~>"
794
+ - - '='
781
795
  - !ruby/object:Gem::Version
782
- version: '3.7'
796
+ version: 3.7.2
783
797
  - !ruby/object:Gem::Dependency
784
798
  name: sass-rails
785
799
  requirement: !ruby/object:Gem::Requirement
@@ -1106,11 +1120,12 @@ email:
1106
1120
  - escowles@ticklefish.org
1107
1121
  executables:
1108
1122
  - db-migrate-seed.sh
1109
- - db-wait.sh
1110
1123
  - dev-entrypoint.sh
1111
1124
  - hyrax-entrypoint.sh
1125
+ - service-wait.sh
1112
1126
  - solrcloud-assign-configset.sh
1113
1127
  - solrcloud-upload-configset.sh
1128
+ - worker-entrypoint.sh
1114
1129
  extensions: []
1115
1130
  extra_rdoc_files: []
1116
1131
  files:
@@ -1141,10 +1156,12 @@ files:
1141
1156
  - ".dassie/app/controllers/application_controller.rb"
1142
1157
  - ".dassie/app/controllers/catalog_controller.rb"
1143
1158
  - ".dassie/app/controllers/concerns/.keep"
1159
+ - ".dassie/app/controllers/hyrax/generic_work_resources_controller.rb"
1144
1160
  - ".dassie/app/controllers/hyrax/generic_works_controller.rb"
1145
1161
  - ".dassie/app/controllers/hyrax/monographs_controller.rb"
1146
1162
  - ".dassie/app/controllers/hyrax/namespaced_works/nested_works_controller.rb"
1147
1163
  - ".dassie/app/forms/collection_resource_form.rb"
1164
+ - ".dassie/app/forms/generic_work_resource_form.rb"
1148
1165
  - ".dassie/app/forms/hyrax/generic_work_form.rb"
1149
1166
  - ".dassie/app/forms/hyrax/namespaced_works/nested_work_form.rb"
1150
1167
  - ".dassie/app/forms/monograph_form.rb"
@@ -1152,18 +1169,21 @@ files:
1152
1169
  - ".dassie/app/helpers/hyrax_helper.rb"
1153
1170
  - ".dassie/app/indexers/collection_resource_indexer.rb"
1154
1171
  - ".dassie/app/indexers/generic_work_indexer.rb"
1172
+ - ".dassie/app/indexers/generic_work_resource_indexer.rb"
1155
1173
  - ".dassie/app/indexers/monograph_indexer.rb"
1156
1174
  - ".dassie/app/indexers/namespaced_works/nested_work_indexer.rb"
1157
1175
  - ".dassie/app/jobs/application_job.rb"
1158
1176
  - ".dassie/app/listeners/hyrax_listener.rb"
1159
1177
  - ".dassie/app/mailers/application_mailer.rb"
1160
1178
  - ".dassie/app/models/ability.rb"
1179
+ - ".dassie/app/models/admin_set_resource.rb"
1161
1180
  - ".dassie/app/models/application_record.rb"
1162
1181
  - ".dassie/app/models/collection.rb"
1163
1182
  - ".dassie/app/models/collection_resource.rb"
1164
1183
  - ".dassie/app/models/concerns/.keep"
1165
1184
  - ".dassie/app/models/file_set.rb"
1166
1185
  - ".dassie/app/models/generic_work.rb"
1186
+ - ".dassie/app/models/generic_work_resource.rb"
1167
1187
  - ".dassie/app/models/monograph.rb"
1168
1188
  - ".dassie/app/models/namespaced_works/nested_work.rb"
1169
1189
  - ".dassie/app/models/qa.rb"
@@ -1175,6 +1195,7 @@ files:
1175
1195
  - ".dassie/app/models/user.rb"
1176
1196
  - ".dassie/app/presenters/hyrax/generic_work_presenter.rb"
1177
1197
  - ".dassie/app/presenters/hyrax/namespaced_works/nested_work_presenter.rb"
1198
+ - ".dassie/app/views/hyrax/generic_work_resources/_generic_work_resource.html.erb"
1178
1199
  - ".dassie/app/views/hyrax/generic_works/_generic_work.html.erb"
1179
1200
  - ".dassie/app/views/hyrax/monographs/_monograph.html.erb"
1180
1201
  - ".dassie/app/views/hyrax/namespaced_works/nested_works/_nested_work.html.erb"
@@ -1222,6 +1243,7 @@ files:
1222
1243
  - ".dassie/config/initializers/riiif.rb"
1223
1244
  - ".dassie/config/initializers/simple_form.rb"
1224
1245
  - ".dassie/config/initializers/simple_form_bootstrap.rb"
1246
+ - ".dassie/config/initializers/wings.rb"
1225
1247
  - ".dassie/config/initializers/wrap_parameters.rb"
1226
1248
  - ".dassie/config/locales/blacklight.en.yml"
1227
1249
  - ".dassie/config/locales/devise.en.yml"
@@ -1247,6 +1269,7 @@ files:
1247
1269
  - ".dassie/config/locales/namespaced_works/nested_work.pt-BR.yml"
1248
1270
  - ".dassie/config/locales/namespaced_works/nested_work.zh.yml"
1249
1271
  - ".dassie/config/metadata/collection_resource.yaml"
1272
+ - ".dassie/config/metadata/generic_work_resource.yaml"
1250
1273
  - ".dassie/config/metadata/monograph.yaml"
1251
1274
  - ".dassie/config/metadata/sample_metadata.yaml"
1252
1275
  - ".dassie/config/puma.rb"
@@ -1341,6 +1364,7 @@ files:
1341
1364
  - ".dassie/db/migrate/20230803165135_change_work_id_to_string.rb"
1342
1365
  - ".dassie/db/migrate/20230808102105_add_indices_to_hyrax_counter_metrics.hyrax.rb"
1343
1366
  - ".dassie/db/migrate/20230821153635_add_fields_to_counter_metric.rb"
1367
+ - ".dassie/db/migrate/20240506070809_valkyrie_id_to_string.rb"
1344
1368
  - ".dassie/db/schema.rb"
1345
1369
  - ".dassie/db/seeds.rb"
1346
1370
  - ".dassie/lib/assets/.keep"
@@ -1368,7 +1392,10 @@ files:
1368
1392
  - ".dassie/solr/sample_solr_documents.yml"
1369
1393
  - ".dassie/spec/forms/collection_resource_form_spec.rb"
1370
1394
  - ".dassie/spec/indexers/collection_resource_indexer_spec.rb"
1395
+ - ".dassie/spec/indexers/generic_work_resource_indexer_spec.rb"
1371
1396
  - ".dassie/spec/models/collection_resource_spec.rb"
1397
+ - ".dassie/spec/models/generic_work_resource_spec.rb"
1398
+ - ".dassie/spec/views/generic_work_resources/_generic_work_resource.html.erb_spec.rb"
1372
1399
  - ".dassie/storage/.keep"
1373
1400
  - ".dassie/tmp/pids/.keep"
1374
1401
  - ".dassie/values.stage.yaml"
@@ -1386,8 +1413,10 @@ files:
1386
1413
  - ".github/release.yml"
1387
1414
  - ".github/stale.yml"
1388
1415
  - ".github/workflows/build.yml"
1416
+ - ".github/workflows/lint-build-test.yml"
1389
1417
  - ".github/workflows/main.yml"
1390
1418
  - ".github/workflows/release.yml"
1419
+ - ".github/workflows/test-results.yml"
1391
1420
  - ".gitignore"
1392
1421
  - ".hound.yml"
1393
1422
  - ".koppie/.env"
@@ -1617,8 +1646,6 @@ files:
1617
1646
  - ".koppie/public/branding/.keep"
1618
1647
  - ".koppie/public/favicon.ico"
1619
1648
  - ".koppie/public/robots.txt"
1620
- - ".koppie/scripts/db-migrate-seed.sh"
1621
- - ".koppie/scripts/entrypoint.sh"
1622
1649
  - ".koppie/solr/conf/_rest_managed.json"
1623
1650
  - ".koppie/solr/conf/admin-extra.html"
1624
1651
  - ".koppie/solr/conf/elevate.xml"
@@ -1711,6 +1738,7 @@ files:
1711
1738
  - app/assets/images/unauthorized.png
1712
1739
  - app/assets/images/work.png
1713
1740
  - app/assets/images/zotero.png
1741
+ - app/assets/javascripts/hydra-editor/field_manager.es6
1714
1742
  - app/assets/javascripts/hyrax.js
1715
1743
  - app/assets/javascripts/hyrax/admin/admin_set/group_participants.es6
1716
1744
  - app/assets/javascripts/hyrax/admin/admin_set/participants.es6
@@ -2067,6 +2095,8 @@ files:
2067
2095
  - app/jobs/ingest_local_file_job.rb
2068
2096
  - app/jobs/inherit_permissions_job.rb
2069
2097
  - app/jobs/lease_expiry_job.rb
2098
+ - app/jobs/migrate_files_to_valkyrie_job.rb
2099
+ - app/jobs/migrate_resources_job.rb
2070
2100
  - app/jobs/resolrize_job.rb
2071
2101
  - app/jobs/stream_notifications_job.rb
2072
2102
  - app/jobs/user_edit_profile_event_job.rb
@@ -2087,6 +2117,7 @@ files:
2087
2117
  - app/models/concerns/hyrax/ability/permission_template_ability.rb
2088
2118
  - app/models/concerns/hyrax/ability/resource_ability.rb
2089
2119
  - app/models/concerns/hyrax/ability/solr_document_ability.rb
2120
+ - app/models/concerns/hyrax/ar_resource.rb
2090
2121
  - app/models/concerns/hyrax/basic_metadata.rb
2091
2122
  - app/models/concerns/hyrax/collection_behavior.rb
2092
2123
  - app/models/concerns/hyrax/core_metadata.rb
@@ -2116,6 +2147,7 @@ files:
2116
2147
  - app/models/concerns/hyrax/suppressible.rb
2117
2148
  - app/models/concerns/hyrax/user.rb
2118
2149
  - app/models/concerns/hyrax/user_usage_stats.rb
2150
+ - app/models/concerns/hyrax/valkyrie_lazy_migration.rb
2119
2151
  - app/models/concerns/hyrax/virus_check.rb
2120
2152
  - app/models/concerns/hyrax/with_events.rb
2121
2153
  - app/models/concerns/hyrax/work_behavior.rb
@@ -2302,6 +2334,12 @@ files:
2302
2334
  - app/services/hyrax/admin_set_member_service.rb
2303
2335
  - app/services/hyrax/admin_set_service.rb
2304
2336
  - app/services/hyrax/analytics.rb
2337
+ - app/services/hyrax/analytics/ga4.rb
2338
+ - app/services/hyrax/analytics/ga4/base.rb
2339
+ - app/services/hyrax/analytics/ga4/events.rb
2340
+ - app/services/hyrax/analytics/ga4/events_daily.rb
2341
+ - app/services/hyrax/analytics/ga4/visits.rb
2342
+ - app/services/hyrax/analytics/ga4/visits_daily.rb
2305
2343
  - app/services/hyrax/analytics/google.rb
2306
2344
  - app/services/hyrax/analytics/google/events.rb
2307
2345
  - app/services/hyrax/analytics/google/events_daily.rb
@@ -2387,6 +2425,7 @@ files:
2387
2425
  - app/services/hyrax/listeners/acl_index_listener.rb
2388
2426
  - app/services/hyrax/listeners/active_fedora_acl_index_listener.rb
2389
2427
  - app/services/hyrax/listeners/batch_notification_listener.rb
2428
+ - app/services/hyrax/listeners/file_listener.rb
2390
2429
  - app/services/hyrax/listeners/file_metadata_listener.rb
2391
2430
  - app/services/hyrax/listeners/file_set_lifecycle_listener.rb
2392
2431
  - app/services/hyrax/listeners/file_set_lifecycle_notification_listener.rb
@@ -2484,6 +2523,7 @@ files:
2484
2523
  - app/services/hyrax/working_directory.rb
2485
2524
  - app/services/hyrax/works/managed_works_service.rb
2486
2525
  - app/services/hyrax/works/migration_service.rb
2526
+ - app/services/migrate_resource_service.rb
2487
2527
  - app/strategies/hyrax/strategies/yaml_strategy.rb
2488
2528
  - app/uploaders/hyrax/avatar_uploader.rb
2489
2529
  - app/uploaders/hyrax/uploaded_file_uploader.rb
@@ -2916,6 +2956,7 @@ files:
2916
2956
  - app/views/shared/_citations.html.erb
2917
2957
  - app/views/shared/_footer.html.erb
2918
2958
  - app/views/shared/_ga.html.erb
2959
+ - app/views/shared/_ga4.html.erb
2919
2960
  - app/views/shared/_locale_picker.html.erb
2920
2961
  - app/views/shared/_matomo.html.erb
2921
2962
  - app/views/shared/_nav_safety_modal.html.erb
@@ -2924,11 +2965,12 @@ files:
2924
2965
  - artifacts/entity-relationship-diagram.dot
2925
2966
  - artifacts/entity-relationship-diagram.pdf
2926
2967
  - bin/db-migrate-seed.sh
2927
- - bin/db-wait.sh
2928
2968
  - bin/dev-entrypoint.sh
2929
2969
  - bin/hyrax-entrypoint.sh
2970
+ - bin/service-wait.sh
2930
2971
  - bin/solrcloud-assign-configset.sh
2931
2972
  - bin/solrcloud-upload-configset.sh
2973
+ - bin/worker-entrypoint.sh
2932
2974
  - chart/hyrax/.gitignore
2933
2975
  - chart/hyrax/.helmignore
2934
2976
  - chart/hyrax/Chart.yaml
@@ -2985,6 +3027,7 @@ files:
2985
3027
  - config/routes.rb
2986
3028
  - config/schema_org.yml
2987
3029
  - db/seeds.rb
3030
+ - docker-compose-dassie.yml
2988
3031
  - docker-compose-koppie.yml
2989
3032
  - docker-compose-sirenia.yml
2990
3033
  - docker-compose.yml
@@ -2994,6 +3037,17 @@ files:
2994
3037
  - documentation/note-about-versions.md
2995
3038
  - hyrax.gemspec
2996
3039
  - karma.conf.js
3040
+ - lib/freyja.rb
3041
+ - lib/freyja/custom_query_container.rb
3042
+ - lib/freyja/metadata_adapter.rb
3043
+ - lib/freyja/persister.rb
3044
+ - lib/freyja/query_service.rb
3045
+ - lib/freyja/resource_factory.rb
3046
+ - lib/frigg.rb
3047
+ - lib/frigg/custom_query_container.rb
3048
+ - lib/frigg/metadata_adapter.rb
3049
+ - lib/frigg/persister.rb
3050
+ - lib/frigg/query_service.rb
2997
3051
  - lib/generators/hyrax/arkivo_api_generator.rb
2998
3052
  - lib/generators/hyrax/assets_generator.rb
2999
3053
  - lib/generators/hyrax/clamav_generator.rb
@@ -3151,6 +3205,9 @@ files:
3151
3205
  - lib/generators/hyrax/work_resource/templates/work.rb.erb
3152
3206
  - lib/generators/hyrax/work_resource/templates/work_spec.rb.erb
3153
3207
  - lib/generators/hyrax/work_resource/work_resource_generator.rb
3208
+ - lib/goddess/custom_query_container.rb
3209
+ - lib/goddess/metadata.rb
3210
+ - lib/goddess/query.rb
3154
3211
  - lib/hyrax.rb
3155
3212
  - lib/hyrax/active_fedora_dummy_model.rb
3156
3213
  - lib/hyrax/administrative_set_name.rb
@@ -3189,6 +3246,7 @@ files:
3189
3246
  - lib/hyrax/resource_sync/resource_list_writer.rb
3190
3247
  - lib/hyrax/resource_sync/source_description_writer.rb
3191
3248
  - lib/hyrax/role_registry.rb
3249
+ - lib/hyrax/rubocop/custom_cops.rb
3192
3250
  - lib/hyrax/schema.rb
3193
3251
  - lib/hyrax/search_state.rb
3194
3252
  - lib/hyrax/specs/capybara.rb
@@ -3197,8 +3255,44 @@ files:
3197
3255
  - lib/hyrax/specs/shared_specs.rb
3198
3256
  - lib/hyrax/specs/shared_specs/change_set.rb
3199
3257
  - lib/hyrax/specs/shared_specs/derivative_service.rb
3258
+ - lib/hyrax/specs/shared_specs/factories/access_control.rb
3259
+ - lib/hyrax/specs/shared_specs/factories/admin_sets.rb
3260
+ - lib/hyrax/specs/shared_specs/factories/admin_sets_lw.rb
3261
+ - lib/hyrax/specs/shared_specs/factories/administrative_sets.rb
3262
+ - lib/hyrax/specs/shared_specs/factories/api_items.rb
3263
+ - lib/hyrax/specs/shared_specs/factories/collection_branding_infos.rb
3264
+ - lib/hyrax/specs/shared_specs/factories/collection_type_participants.rb
3265
+ - lib/hyrax/specs/shared_specs/factories/collection_types.rb
3266
+ - lib/hyrax/specs/shared_specs/factories/collections.rb
3267
+ - lib/hyrax/specs/shared_specs/factories/collections_factory.rb
3268
+ - lib/hyrax/specs/shared_specs/factories/content_blocks.rb
3269
+ - lib/hyrax/specs/shared_specs/factories/counter_metrics.rb
3270
+ - lib/hyrax/specs/shared_specs/factories/featured_works.rb
3271
+ - lib/hyrax/specs/shared_specs/factories/file_sets.rb
3272
+ - lib/hyrax/specs/shared_specs/factories/generic_works.rb
3273
+ - lib/hyrax/specs/shared_specs/factories/hyrax_collection.rb
3274
+ - lib/hyrax/specs/shared_specs/factories/hyrax_default_admin_set.rb
3275
+ - lib/hyrax/specs/shared_specs/factories/hyrax_embargo.rb
3276
+ - lib/hyrax/specs/shared_specs/factories/hyrax_file_metadata.rb
3277
+ - lib/hyrax/specs/shared_specs/factories/hyrax_file_set.rb
3278
+ - lib/hyrax/specs/shared_specs/factories/hyrax_lease.rb
3279
+ - lib/hyrax/specs/shared_specs/factories/hyrax_resource.rb
3280
+ - lib/hyrax/specs/shared_specs/factories/hyrax_work.rb
3281
+ - lib/hyrax/specs/shared_specs/factories/object_id.rb
3282
+ - lib/hyrax/specs/shared_specs/factories/operations.rb
3283
+ - lib/hyrax/specs/shared_specs/factories/permission.rb
3284
+ - lib/hyrax/specs/shared_specs/factories/permission_template_accesses.rb
3285
+ - lib/hyrax/specs/shared_specs/factories/permission_templates.rb
3286
+ - lib/hyrax/specs/shared_specs/factories/proxy_deposit_requests.rb
3287
+ - lib/hyrax/specs/shared_specs/factories/single_use_links.rb
3288
+ - lib/hyrax/specs/shared_specs/factories/sipity_entities.rb
3200
3289
  - lib/hyrax/specs/shared_specs/factories/strategies/json_strategy.rb
3201
3290
  - lib/hyrax/specs/shared_specs/factories/strategies/valkyrie_resource.rb
3291
+ - lib/hyrax/specs/shared_specs/factories/uploaded_files.rb
3292
+ - lib/hyrax/specs/shared_specs/factories/users.rb
3293
+ - lib/hyrax/specs/shared_specs/factories/workflow_actions.rb
3294
+ - lib/hyrax/specs/shared_specs/factories/workflow_states.rb
3295
+ - lib/hyrax/specs/shared_specs/factories/workflows.rb
3202
3296
  - lib/hyrax/specs/shared_specs/hydra_works.rb
3203
3297
  - lib/hyrax/specs/shared_specs/identifiers.rb
3204
3298
  - lib/hyrax/specs/shared_specs/indexers.rb
@@ -3228,6 +3322,7 @@ files:
3228
3322
  - lib/hyrax/transactions/steps/delete_access_control.rb
3229
3323
  - lib/hyrax/transactions/steps/delete_all_file_metadata.rb
3230
3324
  - lib/hyrax/transactions/steps/delete_all_file_sets.rb
3325
+ - lib/hyrax/transactions/steps/delete_permission_template.rb
3231
3326
  - lib/hyrax/transactions/steps/delete_resource.rb
3232
3327
  - lib/hyrax/transactions/steps/ensure_admin_set.rb
3233
3328
  - lib/hyrax/transactions/steps/file_metadata_delete.rb
@@ -3299,77 +3394,6 @@ files:
3299
3394
  - lib/wings/valkyrizable.rb
3300
3395
  - package.json
3301
3396
  - samvera-fall-TM3.svg
3302
- - spec/factories/access_control.rb
3303
- - spec/factories/admin_sets.rb
3304
- - spec/factories/admin_sets_lw.rb
3305
- - spec/factories/administrative_sets.rb
3306
- - spec/factories/api_items.rb
3307
- - spec/factories/collection_branding_infos.rb
3308
- - spec/factories/collection_type_participants.rb
3309
- - spec/factories/collection_types.rb
3310
- - spec/factories/collections.rb
3311
- - spec/factories/collections_factory.rb
3312
- - spec/factories/content_blocks.rb
3313
- - spec/factories/counter_metrics.rb
3314
- - spec/factories/featured_works.rb
3315
- - spec/factories/file_sets.rb
3316
- - spec/factories/generic_works.rb
3317
- - spec/factories/hyrax_collection.rb
3318
- - spec/factories/hyrax_default_admin_set.rb
3319
- - spec/factories/hyrax_embargo.rb
3320
- - spec/factories/hyrax_file_metadata.rb
3321
- - spec/factories/hyrax_file_set.rb
3322
- - spec/factories/hyrax_lease.rb
3323
- - spec/factories/hyrax_resource.rb
3324
- - spec/factories/hyrax_work.rb
3325
- - spec/factories/object_id.rb
3326
- - spec/factories/operations.rb
3327
- - spec/factories/permission.rb
3328
- - spec/factories/permission_template_accesses.rb
3329
- - spec/factories/permission_templates.rb
3330
- - spec/factories/proxy_deposit_requests.rb
3331
- - spec/factories/single_use_links.rb
3332
- - spec/factories/sipity_entities.rb
3333
- - spec/factories/uploaded_files.rb
3334
- - spec/factories/users.rb
3335
- - spec/factories/workflow_actions.rb
3336
- - spec/factories/workflow_states.rb
3337
- - spec/factories/workflows.rb
3338
- - spec/support/book_resource.rb
3339
- - spec/support/can_can_overrides.rb
3340
- - spec/support/clean_solr.rb
3341
- - spec/support/controller_level_helpers.rb
3342
- - spec/support/factory_helpers.rb
3343
- - spec/support/fakes/fake_actor.rb
3344
- - spec/support/fakes/fake_authority.rb
3345
- - spec/support/fakes/fake_search_builder_scope.rb
3346
- - spec/support/fakes/indexing_adapter.rb
3347
- - spec/support/fakes/test_hydra_group_service.rb
3348
- - spec/support/features.rb
3349
- - spec/support/features/batch_edit_actions.rb
3350
- - spec/support/features/session_helpers.rb
3351
- - spec/support/features/workflow.rb
3352
- - spec/support/form_with_validations.rb
3353
- - spec/support/input_support.rb
3354
- - spec/support/logging_formatter.rb
3355
- - spec/support/matchers/api_responses.rb
3356
- - spec/support/matchers/collection_type_property_matchers.rb
3357
- - spec/support/matchers/embargo.rb
3358
- - spec/support/matchers/lease.rb
3359
- - spec/support/matchers/match_valkyrie_ids_with_af_ids.rb
3360
- - spec/support/matchers/pcdm_matchers.rb
3361
- - spec/support/matchers/permission.rb
3362
- - spec/support/matchers/response_matchers.rb
3363
- - spec/support/optional_example.rb
3364
- - spec/support/rake.rb
3365
- - spec/support/selectors.rb
3366
- - spec/support/shared_examples_for_collection_presenter.rb
3367
- - spec/support/simple_work.rb
3368
- - spec/support/spec_statistic.rb
3369
- - spec/support/speedup.rb
3370
- - spec/support/statistic_helper.rb
3371
- - spec/support/valkyrie_indexing.rb
3372
- - spec/support/wings_models.rb
3373
3397
  - tasks/benchmark.rake
3374
3398
  - tasks/hyrax_dev.rake
3375
3399
  - template.rb
@@ -3416,7 +3440,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
3416
3440
  - !ruby/object:Gem::Version
3417
3441
  version: '0'
3418
3442
  requirements: []
3419
- rubygems_version: 3.5.5
3443
+ rubygems_version: 3.5.22
3420
3444
  signing_key:
3421
3445
  specification_version: 4
3422
3446
  summary: Hyrax is a front-end based on the robust Samvera framework, providing a user
@@ -1,9 +0,0 @@
1
- #!/bin/sh
2
- set -e
3
-
4
- db-wait.sh "$DB_HOST:$DB_PORT"
5
- bundle exec rails db:create
6
- bundle exec rails db:migrate
7
-
8
- db-wait.sh "$SOLR_HOST:$SOLR_PORT"
9
- bundle exec rails db:seed
@@ -1,10 +0,0 @@
1
- #!/bin/sh
2
- set -e
3
-
4
- mkdir -p /app/samvera/hyrax-webapp/tmp/pids
5
- rm -f /app/samvera/hyrax-webapp/tmp/pids/*
6
-
7
- bundle install --quiet
8
-
9
- # Run the command
10
- exec "$@"
@@ -1,36 +0,0 @@
1
- # frozen_string_literal: true
2
- module Hyrax
3
- module Test
4
- ##
5
- # A simple Hyrax::Resource with some metadata.
6
- #
7
- # Use this for testing valkyrie models generically, with Hyrax assumptions
8
- # but no PCDM modelling behavior.
9
- class BookResource < Hyrax::Resource
10
- attribute :author, Valkyrie::Types::String
11
- attribute :created, Valkyrie::Types::Date
12
- attribute :isbn, Valkyrie::Types::String
13
- attribute :publisher, Valkyrie::Types::String
14
- attribute :title, Valkyrie::Types::String
15
- end
16
-
17
- ##
18
- # A simple Hyrax::ChangeSet with one custom validation.
19
- #
20
- # Hyrax::Test::BookResource will use this based on naming convention by adding `ChangeSet`
21
- # to the end of the resource class name.
22
- class BookResourceChangeSet < Hyrax::ChangeSet
23
- validates :isbn, presence: true
24
- end
25
-
26
- class Book < ActiveFedora::Base
27
- property :author, predicate: ::RDF::URI('http://example.com/ns/author')
28
- property :created, predicate: ::RDF::URI('http://example.com/ns/created')
29
- property :isbn, predicate: ::RDF::URI('http://example.com/ns/isbn')
30
- property :publisher, predicate: ::RDF::URI('http://example.com/ns/publisher')
31
- property :title, predicate: ::RDF::URI("http://example.com/ns/title")
32
- end
33
- end
34
- end
35
-
36
- Wings::ModelRegistry.register(Hyrax::Test::BookResource, Hyrax::Test::Book) if defined?(Wings)
@@ -1,43 +0,0 @@
1
- # frozen_string_literal: true
2
- ##
3
- # This monkey-patch shim is for both active_fedora and valkyrie resources for tests
4
- # This shim handles the case where controllers are loaded with an ActiveFedora collection class
5
- # different than a test mocks Hyrax.config.collection_class.
6
- # This override checks the value in Hyrax.config and uses it when it is a known collection or admin set class.
7
- # This override also memoizes the resource_class to avoid multiple lookups.
8
- CanCan::ControllerResource.class_eval do
9
- def resource_class
10
- return @resource_class if @resource_class.present?
11
- @resource_class = case @options[:class]
12
- when false then
13
- name.to_sym
14
- when nil then
15
- namespaced_name.to_s.camelize.constantize
16
- when String then
17
- @options[:class].constantize
18
- else
19
- @options[:class]
20
- end
21
- @resource_class = dynamically_resolve_class(@resource_class)
22
- end
23
-
24
- private
25
-
26
- def dynamically_resolve_class(resource_class)
27
- if collection_class?(resource_class)
28
- Hyrax.config.collection_class
29
- elsif admin_set_class?(resource_class)
30
- Hyrax.config.admin_set_class
31
- else
32
- resource_class
33
- end
34
- end
35
-
36
- def collection_class?(model_class)
37
- model_class == Hyrax::PcdmCollection || model_class < Hyrax::PcdmCollection || model_class == ::Collection || model_class < ::Collection
38
- end
39
-
40
- def admin_set_class?(model_class)
41
- model_class == Hyrax::AdministrativeSet || model_class < Hyrax::AdministrativeSet || model_class == AdminSet || model_class < AdminSet
42
- end
43
- end
@@ -1,7 +0,0 @@
1
- # frozen_string_literal: true
2
- RSpec.configure do |config|
3
- config.before(:each, clean_index: true) do
4
- client = Valkyrie::IndexingAdapter.find(:solr_index).connection
5
- client.delete_by_query("*:*", params: { softCommit: true })
6
- end
7
- end
@@ -1,27 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module ControllerLevelHelpers
4
- # This provides some common mock methods for view tests.
5
- # These are normally provided by the controller.
6
- module ControllerViewHelpers
7
- def search_state
8
- @search_state ||= CatalogController.search_state_class.new(params, blacklight_config, controller)
9
- end
10
-
11
- # This allows you to set the configuration
12
- # @example: view.blacklight_config = Blacklight::Configuration.new
13
- attr_writer :blacklight_config
14
-
15
- def blacklight_config
16
- @blacklight_config ||= CatalogController.blacklight_config
17
- end
18
-
19
- def blacklight_configuration_context
20
- @blacklight_configuration_context ||= Blacklight::Configuration::Context.new(controller)
21
- end
22
- end
23
-
24
- def initialize_controller_helpers(helper)
25
- helper.extend ControllerViewHelpers
26
- end
27
- end