hyrax 5.0.0.rc2 → 5.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (310) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +14 -0
  3. data/.dassie/app/listeners/hyrax_listener.rb +81 -0
  4. data/.dassie/config/environments/test.rb +0 -5
  5. data/.dassie/config/initializers/hyrax.rb +5 -0
  6. data/.dassie/config/initializers/publisher.rb +3 -0
  7. data/.dassie/config/initializers/riiif.rb +77 -0
  8. data/.gitignore +4 -0
  9. data/.koppie/.env +2 -2
  10. data/.koppie/app/forms/collection_resource_form.rb +1 -0
  11. data/.koppie/app/indexers/collection_resource_indexer.rb +1 -0
  12. data/.koppie/app/listeners/hyrax_listener.rb +81 -0
  13. data/.koppie/app/models/collection.rb +1 -1
  14. data/.koppie/app/models/collection_resource.rb +1 -0
  15. data/.koppie/config/analytics.yml +5 -5
  16. data/.koppie/config/initializers/publisher.rb +3 -0
  17. data/.koppie/config/initializers/riiif.rb +78 -0
  18. data/.koppie/config/metadata/collection_resource.yaml +8 -166
  19. data/.koppie/config/metadata/sample_metadata.yaml +4 -0
  20. data/CONTAINERS.md +39 -2
  21. data/Dockerfile +14 -11
  22. data/Gemfile +8 -7
  23. data/README.md +2 -0
  24. data/app/actors/hyrax/actors/base_actor.rb +6 -3
  25. data/app/actors/hyrax/actors/file_actor.rb +1 -1
  26. data/app/actors/hyrax/actors/lease_actor.rb +3 -6
  27. data/app/assets/javascripts/hyrax/save_work/uploaded_files.es6 +10 -2
  28. data/app/assets/stylesheets/hyrax/sidebar.scss +6 -1
  29. data/app/controllers/concerns/hyrax/collections_controller_behavior.rb +1 -1
  30. data/app/controllers/concerns/hyrax/local_file_downloads_controller_behavior.rb +12 -19
  31. data/app/controllers/concerns/hyrax/stream_file_downloads_controller_behavior.rb +54 -0
  32. data/app/controllers/concerns/hyrax/valkyrie_downloads_controller_behavior.rb +38 -9
  33. data/app/controllers/concerns/hyrax/works_controller_behavior.rb +19 -14
  34. data/app/controllers/hyrax/admin/admin_sets_controller.rb +2 -2
  35. data/app/controllers/hyrax/admin/analytics/work_reports_controller.rb +5 -5
  36. data/app/controllers/hyrax/dashboard/collections_controller.rb +2 -5
  37. data/app/controllers/hyrax/downloads_controller.rb +1 -0
  38. data/app/controllers/hyrax/file_sets_controller.rb +3 -2
  39. data/app/controllers/hyrax/my/collections_controller.rb +1 -1
  40. data/app/forms/concerns/hyrax/basic_metadata_form_fields_behavior.rb +1 -0
  41. data/app/forms/concerns/hyrax/contained_in_works_behavior.rb +24 -0
  42. data/app/forms/concerns/hyrax/deposit_agreement_behavior.rb +12 -0
  43. data/app/forms/concerns/hyrax/leaseability_behavior.rb +49 -0
  44. data/app/forms/concerns/hyrax/permission_behavior.rb +20 -0
  45. data/app/forms/hyrax/forms/administrative_set_form.rb +1 -5
  46. data/app/forms/hyrax/forms/collection_form.rb +19 -0
  47. data/app/forms/hyrax/forms/file_set_form.rb +5 -0
  48. data/app/forms/hyrax/forms/pcdm_collection_form.rb +1 -5
  49. data/app/forms/hyrax/forms/pcdm_object_form.rb +13 -22
  50. data/app/forms/hyrax/forms/resource_batch_edit_form.rb +7 -2
  51. data/app/forms/hyrax/forms/resource_form.rb +30 -100
  52. data/app/forms/hyrax/forms.rb +52 -0
  53. data/app/helpers/hyrax/hyrax_helper_behavior.rb +2 -0
  54. data/app/indexers/{hyrax → concerns/hyrax}/location_indexer.rb +1 -5
  55. data/app/indexers/{hyrax → concerns/hyrax}/permission_indexer.rb +2 -2
  56. data/app/indexers/{hyrax → concerns/hyrax}/visibility_indexer.rb +1 -1
  57. data/app/indexers/hyrax/administrative_set_indexer.rb +5 -17
  58. data/app/indexers/hyrax/indexers/administrative_set_indexer.rb +25 -0
  59. data/app/indexers/hyrax/indexers/file_set_indexer.rb +144 -0
  60. data/app/indexers/hyrax/indexers/pcdm_collection_indexer.rb +27 -0
  61. data/app/indexers/hyrax/indexers/pcdm_object_indexer.rb +72 -0
  62. data/app/indexers/hyrax/indexers/resource_indexer.rb +86 -0
  63. data/app/indexers/hyrax/indexers.rb +54 -0
  64. data/app/indexers/hyrax/pcdm_collection_indexer.rb +5 -18
  65. data/app/indexers/hyrax/valkyrie_collection_indexer.rb +6 -4
  66. data/app/indexers/hyrax/valkyrie_file_set_indexer.rb +5 -136
  67. data/app/indexers/hyrax/valkyrie_indexer.rb +8 -112
  68. data/app/indexers/hyrax/valkyrie_work_indexer.rb +5 -64
  69. data/app/indexers/hyrax/work_indexer.rb +1 -0
  70. data/app/jobs/create_work_job.rb +1 -0
  71. data/app/models/admin_set.rb +20 -1
  72. data/app/models/collection.rb +5 -0
  73. data/app/models/concerns/hyrax/ability/admin_set_ability.rb +13 -28
  74. data/app/models/concerns/hyrax/ability/collection_ability.rb +26 -28
  75. data/app/models/concerns/hyrax/ability/resource_ability.rb +19 -0
  76. data/app/models/concerns/hyrax/ability.rb +11 -9
  77. data/app/models/concerns/hyrax/collection_behavior.rb +8 -0
  78. data/app/models/concerns/hyrax/solr_document_behavior.rb +15 -5
  79. data/app/models/concerns/hyrax/work_behavior.rb +4 -0
  80. data/app/models/featured_work.rb +12 -4
  81. data/app/models/file_set.rb +5 -0
  82. data/app/models/hyrax/administrative_set.rb +1 -1
  83. data/app/models/hyrax/change_set.rb +2 -2
  84. data/app/models/hyrax/file_metadata.rb +34 -7
  85. data/app/models/hyrax/file_set.rb +2 -2
  86. data/app/models/hyrax/group.rb +9 -38
  87. data/app/models/hyrax/group_behavior.rb +58 -0
  88. data/app/models/hyrax/model_registry.rb +111 -0
  89. data/app/models/hyrax/pcdm_collection.rb +1 -7
  90. data/app/models/hyrax/resource.rb +66 -8
  91. data/app/models/hyrax/statistic.rb +1 -1
  92. data/app/models/hyrax/work.rb +1 -7
  93. data/app/presenters/hyrax/collapsable_section_presenter.rb +7 -3
  94. data/app/presenters/hyrax/file_set_presenter.rb +8 -6
  95. data/app/presenters/hyrax/lease_presenter.rb +4 -0
  96. data/app/presenters/hyrax/menu_presenter.rb +14 -2
  97. data/app/presenters/hyrax/pcdm_member_presenter_factory.rb +1 -1
  98. data/app/presenters/hyrax/version_list_presenter.rb +6 -4
  99. data/app/search_builders/hyrax/admin_set_search_builder.rb +1 -1
  100. data/app/search_builders/hyrax/catalog_search_builder.rb +8 -2
  101. data/app/search_builders/hyrax/dashboard/collections_search_builder.rb +5 -3
  102. data/app/search_builders/hyrax/exposed_models_relation.rb +1 -1
  103. data/app/search_builders/hyrax/file_set_search_builder.rb +1 -1
  104. data/app/search_builders/hyrax/filter_by_type.rb +3 -2
  105. data/app/search_builders/hyrax/member_with_files_search_builder.rb +1 -1
  106. data/app/search_builders/hyrax/my/collections_search_builder.rb +2 -2
  107. data/app/search_builders/hyrax/my/find_works_search_builder.rb +8 -3
  108. data/app/services/hyrax/access_control_list.rb +21 -4
  109. data/app/services/hyrax/action/create_valkyrie_work.rb +80 -0
  110. data/app/services/hyrax/admin_set_create_service.rb +7 -3
  111. data/app/services/hyrax/admin_set_service.rb +2 -2
  112. data/app/services/hyrax/collections/collection_member_search_service.rb +2 -0
  113. data/app/services/hyrax/collections/permissions_service.rb +27 -9
  114. data/app/services/hyrax/custom_queries/find_collections_by_type.rb +1 -1
  115. data/app/services/hyrax/custom_queries/find_file_metadata.rb +1 -1
  116. data/app/services/hyrax/custom_queries/navigators/find_files.rb +1 -1
  117. data/app/services/hyrax/custom_queries/navigators/parent_work_navigator.rb +1 -1
  118. data/app/services/hyrax/edit_permissions_service.rb +1 -1
  119. data/app/services/hyrax/embargo_manager.rb +1 -1
  120. data/app/services/hyrax/file_set_file_service.rb +21 -10
  121. data/app/services/hyrax/form_factory.rb +1 -1
  122. data/app/services/hyrax/lease_manager.rb +39 -16
  123. data/app/services/hyrax/lease_service.rb +12 -6
  124. data/app/services/hyrax/listeners/acl_index_listener.rb +1 -1
  125. data/app/services/hyrax/listeners/active_fedora_acl_index_listener.rb +1 -1
  126. data/app/services/hyrax/listeners/member_cleanup_listener.rb +15 -1
  127. data/app/services/hyrax/listeners/object_lifecycle_listener.rb +5 -1
  128. data/app/services/hyrax/listeners/trophy_cleanup_listener.rb +2 -1
  129. data/app/services/hyrax/listeners/workflow_listener.rb +13 -0
  130. data/app/services/hyrax/listeners.rb +2 -1
  131. data/app/services/hyrax/location_service.rb +3 -0
  132. data/app/services/hyrax/multiple_membership_checker.rb +1 -1
  133. data/app/services/hyrax/simple_schema_loader.rb +1 -1
  134. data/app/services/hyrax/solr_service.rb +19 -5
  135. data/app/services/hyrax/statistics/collections/over_time.rb +1 -1
  136. data/app/services/hyrax/statistics/query_service.rb +6 -0
  137. data/app/services/hyrax/valkyrie_persist_derivatives.rb +11 -4
  138. data/app/services/hyrax/valkyrie_upload.rb +1 -1
  139. data/app/services/hyrax/work_uploads_handler.rb +5 -4
  140. data/app/views/_user_util_links.html.erb +1 -1
  141. data/app/views/collections/edit_fields/_based_near.html.erb +11 -7
  142. data/app/views/hyrax/admin/admin_sets/_form_participants.html.erb +67 -67
  143. data/app/views/hyrax/admin/admin_sets/edit.html.erb +1 -1
  144. data/app/views/hyrax/admin/collection_types/_form_participants.html.erb +3 -1
  145. data/app/views/hyrax/base/_attribute_rows.html.erb +1 -0
  146. data/app/views/hyrax/base/_base_form_files_prepend.html.erb +4 -0
  147. data/app/views/hyrax/base/_form_files.html.erb +65 -64
  148. data/app/views/hyrax/base/show.html.erb +2 -3
  149. data/app/views/hyrax/collections/show.html.erb +7 -9
  150. data/app/views/hyrax/dashboard/_sidebar.html.erb +4 -3
  151. data/app/views/hyrax/dashboard/collections/_form_share_table.html.erb +2 -2
  152. data/app/views/hyrax/file_sets/media_display/_audio.html.erb +1 -1
  153. data/app/views/hyrax/file_sets/media_display/_video.html.erb +1 -1
  154. data/app/views/hyrax/my/facet.html.erb +1 -1
  155. data/app/views/layouts/_head_tag_content.html.erb +1 -0
  156. data/app/views/shared/_footer.html.erb +1 -1
  157. data/chart/hyrax/Chart.yaml +3 -3
  158. data/chart/hyrax/templates/_tmplvalues.tpl +38 -0
  159. data/chart/hyrax/templates/deployment-worker.yaml +6 -2
  160. data/chart/hyrax/templates/deployment.yaml +9 -3
  161. data/chart/hyrax/values.yaml +9 -1
  162. data/config/initializers/listeners.rb +1 -1
  163. data/config/locales/hyrax.de.yml +5 -0
  164. data/config/locales/hyrax.en.yml +10 -0
  165. data/config/locales/hyrax.es.yml +5 -0
  166. data/config/locales/hyrax.fr.yml +5 -0
  167. data/config/locales/hyrax.it.yml +5 -0
  168. data/config/locales/hyrax.pt-BR.yml +5 -0
  169. data/config/locales/hyrax.zh.yml +5 -0
  170. data/config/metadata/basic_metadata.yaml +1 -0
  171. data/config/metadata/core_metadata.yaml +2 -0
  172. data/config/metadata/file_set_metadata.yaml +2 -0
  173. data/docker-compose-koppie.yml +3 -3
  174. data/docker-compose-sirenia.yml +3 -3
  175. data/documentation/developing-your-hyrax-based-app.md +89 -67
  176. data/hyrax.gemspec +9 -2
  177. data/lib/generators/hyrax/collection_resource/templates/collection_indexer.rb.erb +1 -1
  178. data/lib/generators/hyrax/config_generator.rb +12 -0
  179. data/lib/generators/hyrax/install_generator.rb +37 -7
  180. data/lib/generators/hyrax/listeners_generator.rb +18 -0
  181. data/lib/generators/hyrax/models_generator.rb +1 -10
  182. data/lib/generators/hyrax/riiif_generator.rb +6 -4
  183. data/lib/generators/hyrax/templates/.env +9 -0
  184. data/lib/generators/hyrax/templates/.lando.yml +50 -0
  185. data/lib/generators/hyrax/templates/app/listeners/hyrax_listener.rb +81 -0
  186. data/lib/generators/hyrax/templates/app/models/file_set.rb +1 -2
  187. data/lib/generators/hyrax/templates/config/initializers/1_valkyrie.rb +102 -0
  188. data/lib/generators/hyrax/templates/config/initializers/file_services.rb +6 -0
  189. data/lib/generators/hyrax/templates/config/initializers/hyrax.rb +41 -5
  190. data/lib/generators/hyrax/templates/config/initializers/publisher.rb +3 -0
  191. data/lib/generators/hyrax/templates/config/initializers/riiif.rb +77 -0
  192. data/lib/generators/hyrax/templates/config/locales/hyrax.de.yml +1 -1
  193. data/lib/generators/hyrax/templates/config/locales/hyrax.en.yml +1 -1
  194. data/lib/generators/hyrax/templates/config/locales/hyrax.es.yml +1 -1
  195. data/lib/generators/hyrax/templates/config/locales/hyrax.fr.yml +1 -1
  196. data/lib/generators/hyrax/templates/config/locales/hyrax.it.yml +1 -1
  197. data/lib/generators/hyrax/templates/config/locales/hyrax.pt-BR.yml +1 -1
  198. data/lib/generators/hyrax/templates/config/locales/hyrax.zh.yml +1 -1
  199. data/lib/generators/hyrax/templates/config/redis.yml +3 -6
  200. data/lib/generators/hyrax/templates/config/valkyrie_index.yml +4 -9
  201. data/lib/generators/hyrax/work_resource/templates/indexer.rb.erb +1 -1
  202. data/lib/hyrax/configuration.rb +95 -7
  203. data/lib/hyrax/indexer.rb +1 -1
  204. data/lib/hyrax/publisher.rb +5 -2
  205. data/lib/hyrax/resource_sync/change_list_writer.rb +1 -1
  206. data/lib/hyrax/resource_sync/resource_list_writer.rb +1 -1
  207. data/lib/hyrax/specs/capybara.rb +1 -0
  208. data/lib/hyrax/specs/shared_specs/hydra_works.rb +78 -20
  209. data/lib/hyrax/specs/shared_specs/indexers.rb +1 -1
  210. data/lib/hyrax/transactions/admin_set_destroy.rb +2 -1
  211. data/lib/hyrax/transactions/container.rb +5 -0
  212. data/lib/hyrax/transactions/steps/add_to_parent.rb +1 -0
  213. data/lib/hyrax/transactions/steps/check_for_default_admin_set.rb +32 -0
  214. data/lib/hyrax/transactions/steps/check_for_empty_admin_set.rb +1 -1
  215. data/lib/hyrax/transactions/steps/save.rb +2 -1
  216. data/lib/hyrax/transactions/steps/set_user_as_creator.rb +1 -1
  217. data/lib/hyrax/transactions/steps/update_work_members.rb +2 -0
  218. data/lib/hyrax/version.rb +1 -1
  219. data/lib/hyrax.rb +1 -0
  220. data/lib/tasks/embargo_lease.rake +1 -0
  221. data/lib/valkyrie/indexing/solr/indexing_adapter.rb +21 -7
  222. data/lib/wings/active_fedora_converter/default_work.rb +4 -5
  223. data/lib/wings/active_fedora_converter/file_metadata_node.rb +1 -1
  224. data/lib/wings/model_registry.rb +8 -0
  225. data/lib/wings/model_transformer.rb +19 -2
  226. data/lib/wings/orm_converter.rb +4 -0
  227. data/lib/wings/services/custom_queries/find_ids_by_model.rb +2 -2
  228. data/lib/wings/valkyrie/query_service.rb +5 -2
  229. data/lib/wings.rb +3 -0
  230. data/spec/factories/access_control.rb +12 -0
  231. data/spec/factories/admin_sets.rb +32 -0
  232. data/spec/factories/admin_sets_lw.rb +222 -0
  233. data/spec/factories/administrative_sets.rb +79 -0
  234. data/spec/factories/api_items.rb +92 -0
  235. data/spec/factories/collection_branding_infos.rb +12 -0
  236. data/spec/factories/collection_type_participants.rb +9 -0
  237. data/spec/factories/collection_types.rb +139 -0
  238. data/spec/factories/collections.rb +282 -0
  239. data/spec/factories/collections_factory.rb +107 -0
  240. data/spec/factories/content_blocks.rb +5 -0
  241. data/spec/factories/counter_metrics.rb +12 -0
  242. data/spec/factories/featured_works.rb +5 -0
  243. data/spec/factories/file_sets.rb +45 -0
  244. data/spec/factories/generic_works.rb +200 -0
  245. data/spec/factories/hyrax_collection.rb +92 -0
  246. data/spec/factories/hyrax_default_admin_set.rb +7 -0
  247. data/spec/factories/hyrax_embargo.rb +18 -0
  248. data/spec/factories/hyrax_file_metadata.rb +92 -0
  249. data/spec/factories/hyrax_file_set.rb +129 -0
  250. data/spec/factories/hyrax_lease.rb +18 -0
  251. data/spec/factories/hyrax_resource.rb +15 -0
  252. data/spec/factories/hyrax_work.rb +221 -0
  253. data/spec/factories/object_id.rb +7 -0
  254. data/spec/factories/operations.rb +22 -0
  255. data/spec/factories/permission.rb +7 -0
  256. data/spec/factories/permission_template_accesses.rb +17 -0
  257. data/spec/factories/permission_templates.rb +111 -0
  258. data/spec/factories/proxy_deposit_requests.rb +7 -0
  259. data/spec/factories/single_use_links.rb +14 -0
  260. data/spec/factories/sipity_entities.rb +17 -0
  261. data/spec/factories/uploaded_files.rb +11 -0
  262. data/spec/factories/users.rb +52 -0
  263. data/spec/factories/workflow_actions.rb +7 -0
  264. data/spec/factories/workflow_states.rb +7 -0
  265. data/spec/factories/workflows.rb +7 -0
  266. data/spec/support/book_resource.rb +36 -0
  267. data/spec/support/can_can_overrides.rb +43 -0
  268. data/spec/support/clean_solr.rb +7 -0
  269. data/spec/support/controller_level_helpers.rb +27 -0
  270. data/spec/support/factory_helpers.rb +94 -0
  271. data/spec/support/fakes/fake_actor.rb +22 -0
  272. data/spec/support/fakes/fake_authority.rb +14 -0
  273. data/spec/support/fakes/fake_search_builder_scope.rb +44 -0
  274. data/spec/support/fakes/indexing_adapter.rb +17 -0
  275. data/spec/support/fakes/test_hydra_group_service.rb +55 -0
  276. data/spec/support/features/batch_edit_actions.rb +37 -0
  277. data/spec/support/features/session_helpers.rb +15 -0
  278. data/spec/support/features/workflow.rb +10 -0
  279. data/spec/support/features.rb +11 -0
  280. data/spec/support/form_with_validations.rb +15 -0
  281. data/spec/support/input_support.rb +12 -0
  282. data/spec/support/logging_formatter.rb +67 -0
  283. data/spec/support/matchers/api_responses.rb +27 -0
  284. data/spec/support/matchers/collection_type_property_matchers.rb +30 -0
  285. data/spec/support/matchers/embargo.rb +9 -0
  286. data/spec/support/matchers/lease.rb +9 -0
  287. data/spec/support/matchers/match_valkyrie_ids_with_af_ids.rb +12 -0
  288. data/spec/support/matchers/pcdm_matchers.rb +34 -0
  289. data/spec/support/matchers/permission.rb +31 -0
  290. data/spec/support/matchers/response_matchers.rb +8 -0
  291. data/spec/support/optional_example.rb +17 -0
  292. data/spec/support/rake.rb +42 -0
  293. data/spec/support/selectors.rb +112 -0
  294. data/spec/support/shared_examples_for_collection_presenter.rb +44 -0
  295. data/spec/support/simple_work.rb +28 -0
  296. data/spec/support/spec_statistic.rb +24 -0
  297. data/spec/support/speedup.rb +7 -0
  298. data/spec/support/statistic_helper.rb +10 -0
  299. data/spec/support/valkyrie_indexing.rb +2 -0
  300. data/spec/support/wings_models.rb +9 -0
  301. data/template.rb +1 -3
  302. metadata +113 -30
  303. data/app/indexers/hyrax/resource_indexer.rb +0 -15
  304. data/app/models/concerns/hyrax/riiif_file.rb +0 -30
  305. data/app/services/hyrax/characterization/model_wrapper.rb +0 -0
  306. data/app/services/hyrax/custom_queries/find_by_collection_type.rb +0 -0
  307. data/app/services/hyrax/query_service.rb +0 -0
  308. data/app/services/hyrax/riiif_file_resolver.rb +0 -50
  309. data/lib/hyrax/specs/disable_animations_in_test_environment.rb +0 -53
  310. /data/app/indexers/{hyrax → concerns/hyrax}/thumbnail_indexer.rb +0 -0
@@ -0,0 +1,102 @@
1
+ # frozen_string_literal: true
2
+ require 'faraday/multipart'
3
+
4
+ # require "shrine/storage/s3"
5
+ # require "valkyrie/storage/shrine"
6
+ # require "valkyrie/shrine/checksum/s3"
7
+
8
+ # database = ENV.fetch("METADATA_DB_NAME", "nurax_pg_metadata")
9
+ # Rails.logger.info "Establishing connection to postgresql on: " \
10
+ # "#{ENV["DB_HOST"]}:#{ENV["DB_PORT"]}.\n" \
11
+ # "Using database: #{database}."
12
+ # connection = Sequel.connect(
13
+ # user: ENV["DB_USERNAME"],
14
+ # password: ENV["DB_PASSWORD"],
15
+ # host: ENV["DB_HOST"],
16
+ # port: ENV["DB_PORT"],
17
+ # database: database,
18
+ # max_connections: ENV.fetch("DB_POOL", 5),
19
+ # pool_timeout: ENV.fetch("DB_TIMEOUT", 5000),
20
+ # adapter: :postgres
21
+ # )
22
+ #
23
+ # Valkyrie::MetadataAdapter
24
+ # .register(Valkyrie::Sequel::MetadataAdapter.new(connection: connection),
25
+ # :nurax_pg_metadata_adapter)
26
+ Valkyrie::MetadataAdapter.register(
27
+ Valkyrie::Persistence::Postgres::MetadataAdapter.new,
28
+ :pg_metadata
29
+ )
30
+
31
+ # Fedora metadata adapter
32
+ # Valkyrie::MetadataAdapter.register(
33
+ # Valkyrie::Persistence::Fedora::MetadataAdapter.new(
34
+ # connection: ::Ldp::Client.new(Hyrax.config.fedora_connection_builder.call(
35
+ # ENV.fetch('FCREPO_URL') { "http://localhost:8080/fcrepo/rest" }
36
+ # )),
37
+ # base_path: Rails.env,
38
+ # schema: Valkyrie::Persistence::Fedora::PermissiveSchema.new(Hyrax::SimpleSchemaLoader.new.permissive_schema_for_valkrie_adapter),
39
+ # fedora_version: 6
40
+ # ), :fedora_metadata
41
+ # )
42
+
43
+ Valkyrie.config.metadata_adapter = ENV.fetch('VALKYRIE_METADATA_ADAPTER') { :pg_metadata }.to_sym
44
+
45
+ # shrine_s3_options = {
46
+ # bucket: ENV.fetch("REPOSITORY_S3_BUCKET") { "nurax_pg#{Rails.env}" },
47
+ # region: ENV.fetch("REPOSITORY_S3_REGION", "us-east-1"),
48
+ # access_key_id: (ENV["REPOSITORY_S3_ACCESS_KEY"] || ENV["MINIO_ACCESS_KEY"]),
49
+ # secret_access_key: (ENV["REPOSITORY_S3_SECRET_KEY"] || ENV["MINIO_SECRET_KEY"])
50
+ # }
51
+ #
52
+ # if ENV["MINIO_ENDPOINT"].present?
53
+ # shrine_s3_options[:endpoint] = "http://#{ENV["MINIO_ENDPOINT"]}:#{ENV.fetch("MINIO_PORT", 9000)}"
54
+ # shrine_s3_options[:force_path_style] = true
55
+ # end
56
+ #
57
+ # Valkyrie::StorageAdapter.register(
58
+ # Valkyrie::Storage::Shrine.new(Shrine::Storage::S3.new(**shrine_s3_options)),
59
+ # :repository_s3
60
+ # )
61
+ #
62
+ # Valkyrie.config.storage_adapter = :repository_s3
63
+
64
+ # Fedora storage adapter
65
+ # Valkyrie::StorageAdapter.register(
66
+ # Valkyrie::Storage::Fedora.new(
67
+ # connection: ::Ldp::Client.new(Hyrax.config.fedora_connection_builder.call(
68
+ # ENV.fetch('FCREPO_URL') { "http://localhost:8080/fcrepo/rest" }
69
+ # )),
70
+ # base_path: Rails.env,
71
+ # fedora_version: 6
72
+ # ), :fedora_storage
73
+ # )
74
+
75
+ Valkyrie::StorageAdapter.register(
76
+ Valkyrie::Storage::VersionedDisk.new(base_path: Rails.root.join("storage", "files"),
77
+ file_mover: FileUtils.method(:cp)),
78
+ :versioned_disk_storage
79
+ )
80
+
81
+ Valkyrie.config.storage_adapter = ENV.fetch('VALKYRIE_STORAGE_ADAPTER') { :versioned_disk_storage }.to_sym
82
+
83
+ Valkyrie.config.indexing_adapter = :solr_index
84
+
85
+ custom_queries = [Hyrax::CustomQueries::Navigators::CollectionMembers,
86
+ Hyrax::CustomQueries::Navigators::ChildCollectionsNavigator,
87
+ Hyrax::CustomQueries::Navigators::ParentCollectionsNavigator,
88
+ Hyrax::CustomQueries::Navigators::ChildFileSetsNavigator,
89
+ Hyrax::CustomQueries::Navigators::ChildWorksNavigator,
90
+ Hyrax::CustomQueries::Navigators::ParentWorkNavigator,
91
+ Hyrax::CustomQueries::Navigators::FindFiles,
92
+ Hyrax::CustomQueries::FindAccessControl,
93
+ Hyrax::CustomQueries::FindCollectionsByType,
94
+ Hyrax::CustomQueries::FindFileMetadata,
95
+ Hyrax::CustomQueries::FindIdsByModel,
96
+ Hyrax::CustomQueries::FindManyByAlternateIds,
97
+ Hyrax::CustomQueries::FindModelsByAccess,
98
+ Hyrax::CustomQueries::FindCountBy,
99
+ Hyrax::CustomQueries::FindByDateRange]
100
+ custom_queries.each do |handler|
101
+ Hyrax.query_service.custom_queries.register_query_handler(handler)
102
+ end
@@ -0,0 +1,6 @@
1
+ # frozen_string_literal: true
2
+
3
+ ActiveSupport::Reloader.to_prepare do
4
+ Hydra::Derivatives.config.output_file_service = Hyrax::ValkyriePersistDerivatives
5
+ Hydra::Derivatives.config.source_file_service = Hyrax::LocalFileService
6
+ end
@@ -59,7 +59,7 @@ Hyrax.config do |config|
59
59
 
60
60
  # Hyrax uses NOIDs for files and collections instead of Fedora UUIDs
61
61
  # where NOID = 10-character string and UUID = 32-character string w/ hyphens
62
- # config.enable_noids = true
62
+ config.enable_noids = false
63
63
 
64
64
  # Template for your repository's NOID IDs
65
65
  # config.noid_template = ".reeddeeddk"
@@ -235,20 +235,56 @@ Hyrax.config do |config|
235
235
  # Identify the model class name that will be used for Collections in your app
236
236
  # (i.e. ::Collection for ActiveFedora, Hyrax::PcdmCollection for Valkyrie)
237
237
  # config.collection_model = '::Collection'
238
- # config.collection_model = 'Hyrax::PcdmCollection'
238
+ config.collection_model = 'Hyrax::PcdmCollection'
239
239
 
240
240
  # Identify the model class name that will be used for Admin Sets in your app
241
241
  # (i.e. AdminSet for ActiveFedora, Hyrax::AdministrativeSet for Valkyrie)
242
242
  # config.admin_set_model = 'AdminSet'
243
- # config.admin_set_model = 'Hyrax::AdministrativeSet'
243
+ config.admin_set_model = 'Hyrax::AdministrativeSet'
244
+
245
+ # Identify the form that will be used for Admin Sets
246
+ # config.administrative_set_form = Hyrax::Forms::AdministrativeSetForm
247
+
248
+ # Identify the indexer that will be used for Admin Sets
249
+ # config.administrative_set_indexer = Hyrax::Indexers::AdministrativeSetIndexer
250
+
251
+ # Identify the form that will be used for File Sets
252
+ # config.file_set_form = Hyrax::Forms::FileSetForm
253
+
254
+ # Identify the indexer that will be used for File Sets
255
+ # config.file_set_indexer = Hyrax::Indexers::FileSetIndexer
256
+
257
+ # Service for resolving {FileMetadata} nodes by status, e.g. "primary", rather
258
+ # than use.
259
+ # config.file_set_file_service = Hyrax::FileSetFileService
260
+
261
+ # Identify the form that will be used for Collections
262
+ # config.pcdm_collection_form = Hyrax::Forms::PcdmCollectionForm
263
+
264
+ # Identify the indexer that will be used for Collections
265
+ # config.pcdm_collection_indexer = Hyrax::Indexers::PcdmCollectionIndexer
266
+
267
+ # Provide a proc for form generation for Objects
268
+ # config.pcdm_object_form_builder = lambda do |model_class|
269
+ # Hyrax::Forms::PcdmObjectForm(model_class)
270
+ # end
271
+
272
+ # Provide a proc for indexer generation for Objects
273
+ # config.pcdm_object_indexer_builder = lambda do |model_class|
274
+ # Hyrax::Indexers::PcdmObjectIndexer(model_class)
275
+ # end
276
+
277
+ ## Enable Valkyrie only mode
278
+ config.use_valkyrie = true
279
+ config.disable_wings = true
244
280
 
245
281
  # When your application is ready to use the valkyrie index instead of the one
246
282
  # maintained by active fedora, you will need to set this to true. You will
247
283
  # also need to update your Blacklight configuration.
248
- # config.query_index_from_valkyrie = false
284
+ config.query_index_from_valkyrie = true
249
285
 
250
286
  ## Configure index adapter for Valkyrie::Resources to use solr readonly indexer
251
- # config.index_adapter = :solr_index
287
+ config.index_adapter = :solr_index
252
288
 
253
289
  ## Fedora import/export tool
254
290
  #
@@ -0,0 +1,3 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Hyrax.publisher.subscribe(HyraxListener.new)
@@ -31,3 +31,80 @@ Rails.application.reloader.to_prepare do
31
31
 
32
32
  Riiif::Engine.config.cache_duration = 1.month
33
33
  end
34
+
35
+ module Hyrax
36
+ # Adds file locking to Riiif::File
37
+ # @see RiiifFileResolver
38
+ class RiiifFile < Riiif::File
39
+ include ActiveSupport::Benchmarkable
40
+
41
+ attr_reader :id
42
+ def initialize(input_path, tempfile = nil, id:)
43
+ super(input_path, tempfile)
44
+ raise(ArgumentError, "must specify id") if id.blank?
45
+ @id = id
46
+ end
47
+
48
+ # Wrap extract in a read lock and benchmark it
49
+ def extract(transformation, image_info = nil)
50
+ Riiif::Image.file_resolver.file_locks[id].with_read_lock do
51
+ benchmark "RiiifFile extracted #{path} with #{transformation.to_params}", level: :debug do
52
+ super
53
+ end
54
+ end
55
+ end
56
+
57
+ private
58
+
59
+ def logger
60
+ Hyrax.logger
61
+ end
62
+ end
63
+
64
+ class RiiifFileResolver
65
+ include ActiveSupport::Benchmarkable
66
+
67
+ # @param [String] id from iiif manifest
68
+ # @return [Riiif::File]
69
+ def find(id)
70
+ path = nil
71
+ file_locks[id].with_write_lock do
72
+ path = build_path(id)
73
+ path = build_path(id, force: true) unless File.exist?(path) # Ensures the file is locally available
74
+ end
75
+ RiiifFile.new(path, id: id)
76
+ end
77
+
78
+ # tracks individual file locks
79
+ # @see RiiifFile
80
+ # @return [Concurrent::Map<Concurrent::ReadWriteLock>]
81
+ def file_locks
82
+ @file_locks ||= Concurrent::Map.new do |k, v|
83
+ k.compute_if_absent(v) { Concurrent::ReadWriteLock.new }
84
+ end
85
+ end
86
+
87
+ private
88
+
89
+ def build_path(id, force: false)
90
+ Riiif::Image.cache.fetch("riiif:" + Digest::MD5.hexdigest("path:#{id}"),
91
+ expires_in: Riiif::Image.expires_in,
92
+ force: force) do
93
+ load_file(id)
94
+ end
95
+ end
96
+
97
+ def load_file(id)
98
+ benchmark "RiiifFileResolver loaded #{id}", level: :debug do
99
+ fs_id = id.sub(/\A([^\/]*)\/.*/, '\1')
100
+ file_set = Hyrax.query_service.find_by(id: fs_id)
101
+ file_metadata = Hyrax.custom_queries.find_original_file(file_set: file_set)
102
+ file_metadata.file.disk_path.to_s # Stores a local copy in tmpdir
103
+ end
104
+ end
105
+
106
+ def logger
107
+ Hyrax.logger
108
+ end
109
+ end
110
+ end
@@ -50,7 +50,7 @@ de:
50
50
  directory:
51
51
  suffix: "@ Example.org"
52
52
  footer:
53
- copyright_html: "<strong>Copyright © 2022 Samvera lizenziert</strong> unter der Apache Lizenz, Version 2.0"
53
+ copyright_html: "<strong>Copyright &copy; %{current_year} Samvera lizenziert</strong> unter der Apache Lizenz, Version 2.0"
54
54
  service_html: Ein Dienst von <a href="http://samvera.org/" class="navbar-link" target="_blank">Samvera</a> .
55
55
  institution_name: Institution
56
56
  institution_name_full: Name des Instituts
@@ -50,7 +50,7 @@ en:
50
50
  directory:
51
51
  suffix: "@example.org"
52
52
  footer:
53
- copyright_html: "<strong>Copyright &copy; 2022 Samvera</strong> Licensed under the Apache License, Version 2.0"
53
+ copyright_html: "<strong>Copyright &copy; %{current_year} Samvera</strong> Licensed under the Apache License, Version 2.0"
54
54
  service_html: A service of <a href="http://samvera.org/" class="navbar-link" target="_blank">Samvera</a>.
55
55
  institution_name: Institution
56
56
  institution_name_full: The Institution Name
@@ -50,7 +50,7 @@ es:
50
50
  directory:
51
51
  suffix: "@example.org"
52
52
  footer:
53
- copyright_html: "<strong>Copyright &copy; 2022 Samvera</strong> bajo licencia de Apache, Version 2.0"
53
+ copyright_html: "<strong>Copyright &copy; %{current_year} Samvera</strong> bajo licencia de Apache, Version 2.0"
54
54
  service_html: Un servicio de <a href="http://samvera.org/" class="navbar-link" target="_blank">Samvera</a>.
55
55
  institution_name: institución
56
56
  institution_name_full: El nombre de la institución
@@ -50,7 +50,7 @@ fr:
50
50
  directory:
51
51
  suffix: "@ Example.org"
52
52
  footer:
53
- copyright_html: "<strong>Copyright © 2022 Samvera</strong> Licence sous Licence Apache, Version 2.0"
53
+ copyright_html: "<strong>Copyright &copy; %{current_year} Samvera</strong> Licence sous Licence Apache, Version 2.0"
54
54
  service_html: Un service de <a href="http://samvera.org/" class="navbar-link" target="_blank">Samvera</a> .
55
55
  institution_name: Institution
56
56
  institution_name_full: Nom de l'établissement
@@ -50,7 +50,7 @@ it:
50
50
  directory:
51
51
  suffix: "@ example.org"
52
52
  footer:
53
- copyright_html: "<strong>Copyright © 2022 Samvera</strong> Licenza sotto la licenza Apache, versione 2.0"
53
+ copyright_html: "<strong>Copyright &copy; %{current_year} Samvera</strong> Licenza sotto la licenza Apache, versione 2.0"
54
54
  service_html: Un servizio di <a href="http://samvera.org/" class="navbar-link" target="_blank">Samvera</a> .
55
55
  institution_name: Istituzione
56
56
  institution_name_full: Nome dell'Istituzione
@@ -50,7 +50,7 @@ pt-BR:
50
50
  directory:
51
51
  suffix: "@ Example.org"
52
52
  footer:
53
- copyright_html: "<strong>Copyright © 2022 Samvera </strong> Licenciado sob a Licença Apache, Versão 2.0"
53
+ copyright_html: "<strong>Copyright &copy; %{current_year} Samvera </strong> Licenciado sob a Licença Apache, Versão 2.0"
54
54
  service_html: Um serviço de <a href="http://samvera.org/" class="navbar-link" target="_blank">Samvera</a> .
55
55
  institution_name: Instituição
56
56
  institution_name_full: O Nome da Instituição
@@ -50,7 +50,7 @@ zh:
50
50
  directory:
51
51
  suffix: "@example.org"
52
52
  footer:
53
- copyright_html: "<strong>版权所有 &copy; 2022 Samvera</strong> 根据Apache许可证2.0版许可"
53
+ copyright_html: "<strong>版权所有 &copy; %{current_year} Samvera</strong> 根据Apache许可证2.0版许可"
54
54
  service_html: 的服务<a href="http://samvera.org/" class="navbar-link" target="_blank">Samvera</a>.
55
55
  institution_name: 机构
56
56
  institution_name_full: 机构名称
@@ -1,9 +1,6 @@
1
1
  development:
2
- host: <%= ENV.fetch('REDIS_HOST', 'localhost') %>
3
- port: <%= ENV.fetch('REDIS_PORT', 6379) %>
2
+ url: <%= ENV.fetch('REDIS_URL', 'redis://localhost:6379/0') %>
4
3
  test:
5
- host: <%= ENV.fetch('REDIS_HOST', 'localhost') %>
6
- port: <%= ENV.fetch('REDIS_PORT', 6379) %>
4
+ url: <%= ENV.fetch('REDIS_URL', 'redis://localhost:6379/0') %>
7
5
  production:
8
- host: <%= ENV.fetch('REDIS_HOST', 'localhost') %>
9
- port: <%= ENV.fetch('REDIS_PORT', 6379) %>
6
+ url: <%= ENV.fetch('REDIS_URL', 'redis://localhost:6379/0') %>
@@ -1,12 +1,7 @@
1
+ # This is a sample config file that points to a solr server for each environment
1
2
  development:
2
- host: <%= ENV['VALKYRIE_SOLR_HOST'] %>
3
- port: <%= ENV['VALKYRIE_SOLR_PORT'] %>
4
- core: <%= ENV['VALKYRIE_SOLR_CORE'] || 'hyrax-valkyrie-dev' %>
3
+ url: <%= ENV['SOLR_URL'] || "http://127.0.0.1:#{ENV.fetch('SOLR_DEVELOPMENT_PORT', 8983)}/solr/hydra-development" %>
5
4
  test:
6
- host: <%= ENV['VALKYRIE_SOLR_HOST'] %>
7
- port: <%= ENV['VALKYRIE_SOLR_PORT'] || 8987 %>
8
- core: <%= ENV['VALKYRIE_SOLR_CORE'] || 'hyrax-valkyrie-test' %>
5
+ url: <%= ENV['SOLR_URL'] || "http://127.0.0.1:#{ENV.fetch('SOLR_TEST_PORT', 8985)}/solr/hydra-test" %>
9
6
  production:
10
- host: <%= ENV['VALKYRIE_SOLR_HOST'] %>
11
- port: <%= ENV['VALKYRIE_SOLR_PORT'] %>
12
- core: <%= ENV['VALKYRIE_SOLR_CORE'] %>
7
+ url: <%= ENV['SOLR_URL'] || "http://your.production.server:8080/bl_solr/core0" %>
@@ -2,7 +2,7 @@
2
2
 
3
3
  # Generated via
4
4
  # `rails generate hyrax:work_resource <%= class_name %>`
5
- class <%= class_name %>Indexer < Hyrax::ValkyrieWorkIndexer
5
+ class <%= class_name %>Indexer < Hyrax::Indexers::PcdmObjectIndexer(<%= class_name %>)
6
6
  include Hyrax::Indexer(:basic_metadata)
7
7
  include Hyrax::Indexer(:<%= file_name %>)
8
8
 
@@ -55,7 +55,7 @@ module Hyrax
55
55
  #
56
56
  # == Valkyrie
57
57
  #
58
- # *Experimental:* Options for toggling Hyrax's experimental "Wings" valkyrie
58
+ # Options for toggling Hyrax's "Wings" valkyrie
59
59
  # adapter and configuring valkyrie.
60
60
  #
61
61
  # @see Hyrax.config
@@ -170,7 +170,7 @@ module Hyrax
170
170
  # @return [Hash] of options like {ch12n_tool: :fits_servlet}
171
171
  attr_writer :characterization_options
172
172
  def characterization_options
173
- @characterization_options ||= {}
173
+ @characterization_options ||= { ch12n_tool: ENV.fetch('CH12N_TOOL', 'fits').to_sym }
174
174
  end
175
175
 
176
176
  ##
@@ -267,6 +267,28 @@ module Hyrax
267
267
  @derivative_services ||= [Hyrax::FileSetDerivativesService]
268
268
  end
269
269
 
270
+ attr_writer :file_set_model
271
+ ##
272
+ # @return [#constantize] a string representation of the admin set
273
+ # model
274
+ def file_set_model
275
+ @file_set_model ||= 'Hyrax::FileSet'
276
+ end
277
+
278
+ ##
279
+ # @return [Class] the configured admin set model class
280
+ def file_set_class
281
+ file_set_model.constantize
282
+ end
283
+
284
+ ##
285
+ # @!attribute [rw] file_set_file_service
286
+ # @return [Class] implementer of {Hyrax::FileSetFileService}
287
+ attr_writer :file_set_file_service
288
+ def file_set_file_service
289
+ @file_set_file_service ||= Hyrax::FileSetFileService
290
+ end
291
+
270
292
  attr_writer :fixity_service
271
293
  def fixity_service
272
294
  @fixity_service ||= Hyrax::Fixity::ActiveFedoraFixityService
@@ -595,18 +617,20 @@ module Hyrax
595
617
  end
596
618
 
597
619
  ##
598
- # @return [Boolean] whether to use the experimental valkyrie index
620
+ # @return [Boolean] whether to use the valkyrie index
599
621
  def query_index_from_valkyrie
600
622
  @query_index_from_valkyrie ||= false
601
623
  end
602
624
  attr_writer :query_index_from_valkyrie
603
625
 
604
626
  ##
605
- # @return [Boolean] whether to use experimental valkyrie storage features
627
+ # @return [Boolean] whether to use valkyrie storage features
606
628
  def use_valkyrie?
629
+ return @use_valkyrie unless @use_valkyrie.nil?
607
630
  return true if disable_wings # always return true if wings is disabled
608
631
  ActiveModel::Type::Boolean.new.cast(ENV.fetch('HYRAX_VALKYRIE', false))
609
632
  end
633
+ attr_writer :use_valkyrie
610
634
  # @!endgroup
611
635
 
612
636
  attr_writer :feature_config_path
@@ -836,7 +860,7 @@ module Hyrax
836
860
  # @return [#constantize] a string representation of the collection
837
861
  # model
838
862
  def collection_model
839
- @collection_model ||= '::Collection'
863
+ @collection_model ||= 'Hyrax::PcdmCollection'
840
864
  end
841
865
 
842
866
  ##
@@ -850,7 +874,7 @@ module Hyrax
850
874
  # @return [#constantize] a string representation of the admin set
851
875
  # model
852
876
  def admin_set_model
853
- @admin_set_model ||= 'AdminSet'
877
+ @admin_set_model ||= 'Hyrax::AdministrativeSet'
854
878
  end
855
879
 
856
880
  ##
@@ -890,6 +914,70 @@ module Hyrax
890
914
  @index_field_mapper ||= ActiveFedora.index_field_mapper
891
915
  end
892
916
 
917
+ attr_writer :administrative_set_form
918
+ ##
919
+ # @return [Class]
920
+ def administrative_set_form
921
+ @administrative_set_form ||= Hyrax::Forms::AdministrativeSetForm
922
+ end
923
+
924
+ attr_writer :file_set_form
925
+ ##
926
+ # @return [Class]
927
+ def file_set_form
928
+ @file_set_form ||= Hyrax::Forms::FileSetForm
929
+ end
930
+
931
+ attr_writer :pcdm_collection_form
932
+ ##
933
+ # @return [Class]
934
+ def pcdm_collection_form
935
+ @pcdm_collection_form ||= Hyrax::Forms::PcdmCollectionForm
936
+ end
937
+
938
+ attr_writer :pcdm_object_form_builder
939
+ ##
940
+ # @return [Proc]
941
+ def pcdm_object_form_builder
942
+ return @pcdm_object_form_builder unless @pcdm_object_form_builder.nil?
943
+ "Hyrax::Forms::PcdmObjectForm".constantize # autoload
944
+ @pcdm_object_form_builder = lambda do |model_class|
945
+ Hyrax::Forms::PcdmObjectForm(model_class)
946
+ end
947
+ end
948
+
949
+ attr_writer :administrative_set_indexer
950
+ ##
951
+ # @return [Class]
952
+ def administrative_set_indexer
953
+ @administrative_set_indexer ||= Hyrax::Indexers::AdministrativeSetIndexer
954
+ end
955
+
956
+ attr_writer :file_set_indexer
957
+ ##
958
+ # @return [Class]
959
+ def file_set_indexer
960
+ @file_set_indexer ||= Hyrax::Indexers::FileSetIndexer
961
+ end
962
+
963
+ attr_writer :pcdm_collection_indexer
964
+ ##
965
+ # @return [Class]
966
+ def pcdm_collection_indexer
967
+ @pcdm_collection_indexer ||= Hyrax::Indexers::PcdmCollectionIndexer
968
+ end
969
+
970
+ attr_writer :pcdm_object_indexer_builder
971
+ ##
972
+ # @return [Proc]
973
+ def pcdm_object_indexer_builder
974
+ return @pcdm_object_indexer_builder unless @pcdm_object_indexer_builder.nil?
975
+ "Hyrax::Indexers::PcdmObjectIndexer".constantize # autoload
976
+ @pcdm_object_indexer_builder = lambda do |model_class|
977
+ Hyrax::Indexers::PcdmObjectIndexer(model_class)
978
+ end
979
+ end
980
+
893
981
  # Should a button with "Share my work" show on the front page to users who are not logged in?
894
982
  attr_writer :display_share_button_when_not_logged_in
895
983
  def display_share_button_when_not_logged_in?
@@ -936,7 +1024,7 @@ module Hyrax
936
1024
  attr_writer :translate_id_to_uri
937
1025
  def translate_id_to_uri
938
1026
  @translate_id_to_uri ||= lambda do |id|
939
- "#{ActiveFedora.fedora.host}#{ActiveFedora.fedora.base_path}/#{::Noid::Rails.treeify(id)}"
1027
+ "#{ActiveFedora.fedora.host}#{ActiveFedora.fedora.base_path}/#{::Noid::Rails.treeify(id.to_s)}"
940
1028
  end
941
1029
  end
942
1030
 
data/lib/hyrax/indexer.rb CHANGED
@@ -14,7 +14,7 @@ module Hyrax
14
14
  #
15
15
  # @example building a module as a mixin
16
16
  #
17
- # class MyIndexer < Hyrax::ValkyrieIndexer
17
+ # class MyIndexer < Hyrax::Indexers::ResourceIndexer
18
18
  # include Hyrax::Indexer(:core_metadata)
19
19
  # end
20
20
  #
@@ -10,6 +10,8 @@ module Hyrax
10
10
  # reflect the kinds of resources the event applied to.
11
11
  #
12
12
  # - `batch`: events related to the performance of `BatchCreateJob`
13
+ # - `collection`: events related to the lifecycle of PCDM Collections
14
+ # - `file`: events related to the lifecycle of File/FileMetadata
13
15
  # - `file.set`: events related to the lifecycle of Hydra Works FileSets
14
16
  # - `object`: events related to the lifecycle of all PCDM Objects
15
17
  #
@@ -73,7 +75,7 @@ module Hyrax
73
75
  #
74
76
  # publisher.unsubscribe(event_listener)
75
77
  #
76
- # @see https://dry-rb.org/gems/dry-events/0.2/
78
+ # @see https://dry-rb.org/gems/dry-events
77
79
  # @see Dry::Events::Publisher
78
80
  # @see https://github.com/samvera/hyrax/wiki/Hyrax's-Event-Bus-(Hyrax::Publisher)
79
81
  class Publisher
@@ -86,6 +88,7 @@ module Hyrax
86
88
  # are you adding an event?
87
89
  # make sure Hyrax is publishing events in the correct places (this is be non-trivial!)
88
90
  # and add it to the list at https://github.com/samvera/hyrax/wiki/Hyrax's-Event-Bus-(Hyrax::Publisher)
91
+ # and to the listener generator.
89
92
 
90
93
  # @!macro [new] a_registered_event
91
94
  # @!attribute [r] $1
@@ -203,7 +206,7 @@ module Hyrax
203
206
  # @return Array[Object] the listeners Hyrax subscribes by default.
204
207
  def default_listeners
205
208
  @default_listeners ||=
206
- [Hyrax::Listeners::AclIndexListener.new,
209
+ [Hyrax::Listeners::ACLIndexListener.new,
207
210
  Hyrax::Listeners::BatchNotificationListener.new,
208
211
  Hyrax::Listeners::FileMetadataListener.new,
209
212
  Hyrax::Listeners::FileSetLifecycleListener.new,
@@ -62,7 +62,7 @@ module Hyrax
62
62
  def build_resources(xml, doc_set)
63
63
  doc_set.each do |doc|
64
64
  model = doc.fetch('has_model_ssim', []).first.safe_constantize
65
- if model.try(:collection?) || model == Hyrax.config.collection_class
65
+ if model.try(:collection?) || Hyrax::ModelRegistry.collection_classes.include?(model)
66
66
  build_resource(xml, doc, model, hyrax_routes)
67
67
  else
68
68
  build_resource(xml, doc, model, main_app_routes)
@@ -32,7 +32,7 @@ module Hyrax
32
32
  end
33
33
  end
34
34
 
35
- def build_collections(xml, searcher: AbstractTypeRelation.new(allowable_types: [::Collection, Hyrax.config.collection_class]))
35
+ def build_collections(xml, searcher: AbstractTypeRelation.new(allowable_types: Hyrax::ModelRegistry.collection_classes))
36
36
  searcher.search_in_batches(public_access) do |doc_set|
37
37
  build_resources(xml, doc_set, hyrax_routes)
38
38
  end
@@ -51,6 +51,7 @@ Capybara.app_host = "http://#{ip}:#{Capybara.server_port}"
51
51
 
52
52
  Capybara.default_driver = :rack_test # This is a faster driver
53
53
  Capybara.javascript_driver = :selenium_chrome_headless_sandboxless # This is slower
54
+ Capybara.disable_animation = true
54
55
  Capybara.default_max_wait_time = ENV.fetch('CAPYBARA_WAIT_TIME', 10) # We may have a slow application, let's give it some time.
55
56
 
56
57
  Capybara::Screenshot.register_driver(:selenium_chrome_headless_sandboxless) do |driver, path|