hyrax 5.0.0.rc2 → 5.0.0.rc3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +14 -0
- data/.dassie/app/listeners/hyrax_listener.rb +81 -0
- data/.dassie/config/environments/test.rb +0 -5
- data/.dassie/config/initializers/hyrax.rb +5 -0
- data/.dassie/config/initializers/publisher.rb +3 -0
- data/.dassie/config/initializers/riiif.rb +77 -0
- data/.gitignore +4 -0
- data/.koppie/.env +2 -2
- data/.koppie/app/forms/collection_resource_form.rb +1 -0
- data/.koppie/app/indexers/collection_resource_indexer.rb +1 -0
- data/.koppie/app/listeners/hyrax_listener.rb +81 -0
- data/.koppie/app/models/collection.rb +1 -1
- data/.koppie/app/models/collection_resource.rb +1 -0
- data/.koppie/config/analytics.yml +5 -5
- data/.koppie/config/initializers/publisher.rb +3 -0
- data/.koppie/config/initializers/riiif.rb +78 -0
- data/.koppie/config/metadata/collection_resource.yaml +8 -166
- data/.koppie/config/metadata/sample_metadata.yaml +4 -0
- data/CONTAINERS.md +39 -2
- data/Dockerfile +14 -11
- data/Gemfile +8 -7
- data/README.md +2 -0
- data/app/actors/hyrax/actors/base_actor.rb +6 -3
- data/app/actors/hyrax/actors/file_actor.rb +1 -1
- data/app/actors/hyrax/actors/lease_actor.rb +3 -6
- data/app/assets/javascripts/hyrax/save_work/uploaded_files.es6 +10 -2
- data/app/assets/stylesheets/hyrax/sidebar.scss +6 -1
- data/app/controllers/concerns/hyrax/collections_controller_behavior.rb +1 -1
- data/app/controllers/concerns/hyrax/local_file_downloads_controller_behavior.rb +12 -19
- data/app/controllers/concerns/hyrax/stream_file_downloads_controller_behavior.rb +54 -0
- data/app/controllers/concerns/hyrax/valkyrie_downloads_controller_behavior.rb +38 -9
- data/app/controllers/concerns/hyrax/works_controller_behavior.rb +19 -14
- data/app/controllers/hyrax/admin/admin_sets_controller.rb +2 -2
- data/app/controllers/hyrax/admin/analytics/work_reports_controller.rb +5 -5
- data/app/controllers/hyrax/dashboard/collections_controller.rb +2 -2
- data/app/controllers/hyrax/downloads_controller.rb +1 -0
- data/app/controllers/hyrax/file_sets_controller.rb +3 -2
- data/app/controllers/hyrax/my/collections_controller.rb +1 -1
- data/app/forms/concerns/hyrax/basic_metadata_form_fields_behavior.rb +1 -0
- data/app/forms/concerns/hyrax/contained_in_works_behavior.rb +24 -0
- data/app/forms/concerns/hyrax/deposit_agreement_behavior.rb +12 -0
- data/app/forms/concerns/hyrax/leaseability_behavior.rb +49 -0
- data/app/forms/concerns/hyrax/permission_behavior.rb +20 -0
- data/app/forms/hyrax/forms/administrative_set_form.rb +1 -5
- data/app/forms/hyrax/forms/collection_form.rb +19 -0
- data/app/forms/hyrax/forms/file_set_form.rb +5 -0
- data/app/forms/hyrax/forms/pcdm_collection_form.rb +1 -5
- data/app/forms/hyrax/forms/pcdm_object_form.rb +13 -22
- data/app/forms/hyrax/forms/resource_batch_edit_form.rb +7 -2
- data/app/forms/hyrax/forms/resource_form.rb +30 -100
- data/app/forms/hyrax/forms.rb +52 -0
- data/app/helpers/hyrax/hyrax_helper_behavior.rb +2 -0
- data/app/indexers/{hyrax → concerns/hyrax}/location_indexer.rb +1 -5
- data/app/indexers/{hyrax → concerns/hyrax}/permission_indexer.rb +2 -2
- data/app/indexers/{hyrax → concerns/hyrax}/visibility_indexer.rb +1 -1
- data/app/indexers/hyrax/administrative_set_indexer.rb +5 -17
- data/app/indexers/hyrax/indexers/administrative_set_indexer.rb +25 -0
- data/app/indexers/hyrax/indexers/file_set_indexer.rb +144 -0
- data/app/indexers/hyrax/indexers/pcdm_collection_indexer.rb +27 -0
- data/app/indexers/hyrax/indexers/pcdm_object_indexer.rb +72 -0
- data/app/indexers/hyrax/indexers/resource_indexer.rb +86 -0
- data/app/indexers/hyrax/indexers.rb +54 -0
- data/app/indexers/hyrax/pcdm_collection_indexer.rb +5 -18
- data/app/indexers/hyrax/valkyrie_collection_indexer.rb +6 -4
- data/app/indexers/hyrax/valkyrie_file_set_indexer.rb +5 -136
- data/app/indexers/hyrax/valkyrie_indexer.rb +8 -112
- data/app/indexers/hyrax/valkyrie_work_indexer.rb +5 -64
- data/app/indexers/hyrax/work_indexer.rb +1 -0
- data/app/jobs/create_work_job.rb +1 -0
- data/app/models/admin_set.rb +20 -1
- data/app/models/collection.rb +5 -0
- data/app/models/concerns/hyrax/ability/admin_set_ability.rb +13 -28
- data/app/models/concerns/hyrax/ability/collection_ability.rb +26 -28
- data/app/models/concerns/hyrax/ability/resource_ability.rb +19 -0
- data/app/models/concerns/hyrax/ability.rb +11 -9
- data/app/models/concerns/hyrax/collection_behavior.rb +8 -0
- data/app/models/concerns/hyrax/solr_document_behavior.rb +15 -5
- data/app/models/concerns/hyrax/work_behavior.rb +4 -0
- data/app/models/featured_work.rb +12 -4
- data/app/models/file_set.rb +5 -0
- data/app/models/hyrax/administrative_set.rb +1 -1
- data/app/models/hyrax/change_set.rb +2 -2
- data/app/models/hyrax/file_metadata.rb +34 -7
- data/app/models/hyrax/file_set.rb +2 -2
- data/app/models/hyrax/group.rb +9 -38
- data/app/models/hyrax/group_behavior.rb +58 -0
- data/app/models/hyrax/model_registry.rb +111 -0
- data/app/models/hyrax/pcdm_collection.rb +1 -7
- data/app/models/hyrax/resource.rb +66 -8
- data/app/models/hyrax/statistic.rb +1 -1
- data/app/models/hyrax/work.rb +1 -7
- data/app/presenters/hyrax/collapsable_section_presenter.rb +7 -3
- data/app/presenters/hyrax/file_set_presenter.rb +8 -6
- data/app/presenters/hyrax/lease_presenter.rb +4 -0
- data/app/presenters/hyrax/menu_presenter.rb +14 -2
- data/app/presenters/hyrax/pcdm_member_presenter_factory.rb +1 -1
- data/app/presenters/hyrax/version_list_presenter.rb +6 -4
- data/app/search_builders/hyrax/admin_set_search_builder.rb +1 -1
- data/app/search_builders/hyrax/catalog_search_builder.rb +2 -2
- data/app/search_builders/hyrax/dashboard/collections_search_builder.rb +5 -3
- data/app/search_builders/hyrax/exposed_models_relation.rb +1 -1
- data/app/search_builders/hyrax/file_set_search_builder.rb +1 -1
- data/app/search_builders/hyrax/filter_by_type.rb +3 -2
- data/app/search_builders/hyrax/member_with_files_search_builder.rb +1 -1
- data/app/search_builders/hyrax/my/collections_search_builder.rb +2 -2
- data/app/search_builders/hyrax/my/find_works_search_builder.rb +8 -3
- data/app/services/hyrax/access_control_list.rb +21 -4
- data/app/services/hyrax/action/create_valkyrie_work.rb +80 -0
- data/app/services/hyrax/admin_set_create_service.rb +7 -3
- data/app/services/hyrax/admin_set_service.rb +2 -2
- data/app/services/hyrax/collections/collection_member_search_service.rb +2 -0
- data/app/services/hyrax/collections/permissions_service.rb +27 -9
- data/app/services/hyrax/custom_queries/find_collections_by_type.rb +1 -1
- data/app/services/hyrax/custom_queries/find_file_metadata.rb +1 -1
- data/app/services/hyrax/custom_queries/navigators/find_files.rb +1 -1
- data/app/services/hyrax/custom_queries/navigators/parent_work_navigator.rb +1 -1
- data/app/services/hyrax/edit_permissions_service.rb +1 -1
- data/app/services/hyrax/embargo_manager.rb +1 -1
- data/app/services/hyrax/file_set_file_service.rb +21 -10
- data/app/services/hyrax/form_factory.rb +1 -1
- data/app/services/hyrax/lease_manager.rb +39 -16
- data/app/services/hyrax/lease_service.rb +12 -6
- data/app/services/hyrax/listeners/acl_index_listener.rb +1 -1
- data/app/services/hyrax/listeners/active_fedora_acl_index_listener.rb +1 -1
- data/app/services/hyrax/listeners/member_cleanup_listener.rb +15 -1
- data/app/services/hyrax/listeners/object_lifecycle_listener.rb +5 -1
- data/app/services/hyrax/listeners/trophy_cleanup_listener.rb +2 -1
- data/app/services/hyrax/listeners/workflow_listener.rb +13 -0
- data/app/services/hyrax/listeners.rb +2 -1
- data/app/services/hyrax/location_service.rb +3 -0
- data/app/services/hyrax/multiple_membership_checker.rb +1 -1
- data/app/services/hyrax/simple_schema_loader.rb +1 -1
- data/app/services/hyrax/solr_service.rb +19 -5
- data/app/services/hyrax/statistics/collections/over_time.rb +1 -1
- data/app/services/hyrax/statistics/query_service.rb +6 -0
- data/app/services/hyrax/valkyrie_persist_derivatives.rb +11 -4
- data/app/services/hyrax/valkyrie_upload.rb +1 -1
- data/app/services/hyrax/work_uploads_handler.rb +5 -4
- data/app/views/_user_util_links.html.erb +1 -1
- data/app/views/collections/edit_fields/_based_near.html.erb +11 -7
- data/app/views/hyrax/admin/admin_sets/_form_participants.html.erb +67 -67
- data/app/views/hyrax/admin/admin_sets/edit.html.erb +1 -1
- data/app/views/hyrax/admin/collection_types/_form_participants.html.erb +3 -1
- data/app/views/hyrax/base/_attribute_rows.html.erb +1 -0
- data/app/views/hyrax/base/_base_form_files_prepend.html.erb +4 -0
- data/app/views/hyrax/base/_form_files.html.erb +65 -64
- data/app/views/hyrax/base/show.html.erb +2 -3
- data/app/views/hyrax/collections/show.html.erb +7 -9
- data/app/views/hyrax/dashboard/_sidebar.html.erb +4 -3
- data/app/views/hyrax/dashboard/collections/_form_share_table.html.erb +2 -2
- data/app/views/hyrax/file_sets/media_display/_audio.html.erb +1 -1
- data/app/views/hyrax/file_sets/media_display/_video.html.erb +1 -1
- data/app/views/hyrax/my/facet.html.erb +1 -1
- data/app/views/layouts/_head_tag_content.html.erb +1 -0
- data/app/views/shared/_footer.html.erb +1 -1
- data/chart/hyrax/Chart.yaml +3 -3
- data/chart/hyrax/values.yaml +9 -1
- data/config/initializers/listeners.rb +1 -1
- data/config/locales/hyrax.de.yml +5 -0
- data/config/locales/hyrax.en.yml +10 -0
- data/config/locales/hyrax.es.yml +5 -0
- data/config/locales/hyrax.fr.yml +5 -0
- data/config/locales/hyrax.it.yml +5 -0
- data/config/locales/hyrax.pt-BR.yml +5 -0
- data/config/locales/hyrax.zh.yml +5 -0
- data/config/metadata/basic_metadata.yaml +1 -0
- data/config/metadata/core_metadata.yaml +2 -0
- data/config/metadata/file_set_metadata.yaml +2 -0
- data/docker-compose-koppie.yml +3 -3
- data/docker-compose-sirenia.yml +3 -3
- data/documentation/developing-your-hyrax-based-app.md +77 -60
- data/hyrax.gemspec +9 -2
- data/lib/generators/hyrax/collection_resource/templates/collection_indexer.rb.erb +1 -1
- data/lib/generators/hyrax/config_generator.rb +12 -0
- data/lib/generators/hyrax/install_generator.rb +37 -7
- data/lib/generators/hyrax/listeners_generator.rb +18 -0
- data/lib/generators/hyrax/models_generator.rb +1 -10
- data/lib/generators/hyrax/riiif_generator.rb +6 -4
- data/lib/generators/hyrax/templates/.env +9 -0
- data/lib/generators/hyrax/templates/.lando.yml +50 -0
- data/lib/generators/hyrax/templates/app/listeners/hyrax_listener.rb +81 -0
- data/lib/generators/hyrax/templates/app/models/file_set.rb +1 -2
- data/lib/generators/hyrax/templates/config/initializers/1_valkyrie.rb +102 -0
- data/lib/generators/hyrax/templates/config/initializers/file_services.rb +6 -0
- data/lib/generators/hyrax/templates/config/initializers/hyrax.rb +41 -5
- data/lib/generators/hyrax/templates/config/initializers/publisher.rb +3 -0
- data/lib/generators/hyrax/templates/config/initializers/riiif.rb +77 -0
- data/lib/generators/hyrax/templates/config/locales/hyrax.de.yml +1 -1
- data/lib/generators/hyrax/templates/config/locales/hyrax.en.yml +1 -1
- data/lib/generators/hyrax/templates/config/locales/hyrax.es.yml +1 -1
- data/lib/generators/hyrax/templates/config/locales/hyrax.fr.yml +1 -1
- data/lib/generators/hyrax/templates/config/locales/hyrax.it.yml +1 -1
- data/lib/generators/hyrax/templates/config/locales/hyrax.pt-BR.yml +1 -1
- data/lib/generators/hyrax/templates/config/locales/hyrax.zh.yml +1 -1
- data/lib/generators/hyrax/templates/config/redis.yml +3 -6
- data/lib/generators/hyrax/templates/config/valkyrie_index.yml +4 -9
- data/lib/generators/hyrax/work_resource/templates/indexer.rb.erb +1 -1
- data/lib/hyrax/configuration.rb +95 -7
- data/lib/hyrax/indexer.rb +1 -1
- data/lib/hyrax/publisher.rb +5 -2
- data/lib/hyrax/resource_sync/change_list_writer.rb +1 -1
- data/lib/hyrax/resource_sync/resource_list_writer.rb +1 -1
- data/lib/hyrax/specs/capybara.rb +1 -0
- data/lib/hyrax/specs/shared_specs/hydra_works.rb +78 -20
- data/lib/hyrax/specs/shared_specs/indexers.rb +1 -1
- data/lib/hyrax/transactions/admin_set_destroy.rb +2 -1
- data/lib/hyrax/transactions/container.rb +5 -0
- data/lib/hyrax/transactions/steps/add_to_parent.rb +1 -0
- data/lib/hyrax/transactions/steps/check_for_default_admin_set.rb +32 -0
- data/lib/hyrax/transactions/steps/check_for_empty_admin_set.rb +1 -1
- data/lib/hyrax/transactions/steps/save.rb +2 -1
- data/lib/hyrax/transactions/steps/set_user_as_creator.rb +1 -1
- data/lib/hyrax/transactions/steps/update_work_members.rb +2 -0
- data/lib/hyrax/version.rb +1 -1
- data/lib/hyrax.rb +1 -0
- data/lib/tasks/embargo_lease.rake +1 -0
- data/lib/valkyrie/indexing/solr/indexing_adapter.rb +21 -7
- data/lib/wings/active_fedora_converter/default_work.rb +4 -5
- data/lib/wings/active_fedora_converter/file_metadata_node.rb +1 -1
- data/lib/wings/model_registry.rb +8 -0
- data/lib/wings/model_transformer.rb +19 -2
- data/lib/wings/orm_converter.rb +4 -0
- data/lib/wings/services/custom_queries/find_ids_by_model.rb +2 -2
- data/lib/wings/valkyrie/query_service.rb +5 -2
- data/lib/wings.rb +3 -0
- data/spec/factories/access_control.rb +12 -0
- data/spec/factories/admin_sets.rb +32 -0
- data/spec/factories/admin_sets_lw.rb +222 -0
- data/spec/factories/administrative_sets.rb +79 -0
- data/spec/factories/api_items.rb +92 -0
- data/spec/factories/collection_branding_infos.rb +12 -0
- data/spec/factories/collection_type_participants.rb +9 -0
- data/spec/factories/collection_types.rb +139 -0
- data/spec/factories/collections.rb +282 -0
- data/spec/factories/collections_factory.rb +107 -0
- data/spec/factories/content_blocks.rb +5 -0
- data/spec/factories/counter_metrics.rb +12 -0
- data/spec/factories/featured_works.rb +5 -0
- data/spec/factories/file_sets.rb +45 -0
- data/spec/factories/generic_works.rb +200 -0
- data/spec/factories/hyrax_collection.rb +92 -0
- data/spec/factories/hyrax_default_admin_set.rb +7 -0
- data/spec/factories/hyrax_embargo.rb +18 -0
- data/spec/factories/hyrax_file_metadata.rb +92 -0
- data/spec/factories/hyrax_file_set.rb +129 -0
- data/spec/factories/hyrax_lease.rb +18 -0
- data/spec/factories/hyrax_resource.rb +15 -0
- data/spec/factories/hyrax_work.rb +221 -0
- data/spec/factories/object_id.rb +7 -0
- data/spec/factories/operations.rb +22 -0
- data/spec/factories/permission.rb +7 -0
- data/spec/factories/permission_template_accesses.rb +17 -0
- data/spec/factories/permission_templates.rb +111 -0
- data/spec/factories/proxy_deposit_requests.rb +7 -0
- data/spec/factories/single_use_links.rb +14 -0
- data/spec/factories/sipity_entities.rb +17 -0
- data/spec/factories/uploaded_files.rb +11 -0
- data/spec/factories/users.rb +52 -0
- data/spec/factories/workflow_actions.rb +7 -0
- data/spec/factories/workflow_states.rb +7 -0
- data/spec/factories/workflows.rb +7 -0
- data/spec/support/book_resource.rb +36 -0
- data/spec/support/can_can_overrides.rb +43 -0
- data/spec/support/clean_solr.rb +7 -0
- data/spec/support/controller_level_helpers.rb +27 -0
- data/spec/support/factory_helpers.rb +94 -0
- data/spec/support/fakes/fake_actor.rb +22 -0
- data/spec/support/fakes/fake_authority.rb +14 -0
- data/spec/support/fakes/fake_search_builder_scope.rb +44 -0
- data/spec/support/fakes/indexing_adapter.rb +17 -0
- data/spec/support/fakes/test_hydra_group_service.rb +55 -0
- data/spec/support/features/batch_edit_actions.rb +37 -0
- data/spec/support/features/session_helpers.rb +15 -0
- data/spec/support/features/workflow.rb +10 -0
- data/spec/support/features.rb +11 -0
- data/spec/support/form_with_validations.rb +15 -0
- data/spec/support/input_support.rb +12 -0
- data/spec/support/logging_formatter.rb +67 -0
- data/spec/support/matchers/api_responses.rb +27 -0
- data/spec/support/matchers/collection_type_property_matchers.rb +30 -0
- data/spec/support/matchers/embargo.rb +9 -0
- data/spec/support/matchers/lease.rb +9 -0
- data/spec/support/matchers/match_valkyrie_ids_with_af_ids.rb +12 -0
- data/spec/support/matchers/pcdm_matchers.rb +34 -0
- data/spec/support/matchers/permission.rb +31 -0
- data/spec/support/matchers/response_matchers.rb +8 -0
- data/spec/support/optional_example.rb +17 -0
- data/spec/support/rake.rb +42 -0
- data/spec/support/selectors.rb +112 -0
- data/spec/support/shared_examples_for_collection_presenter.rb +44 -0
- data/spec/support/simple_work.rb +28 -0
- data/spec/support/spec_statistic.rb +24 -0
- data/spec/support/speedup.rb +7 -0
- data/spec/support/statistic_helper.rb +10 -0
- data/spec/support/valkyrie_indexing.rb +2 -0
- data/spec/support/wings_models.rb +9 -0
- data/template.rb +1 -3
- metadata +112 -30
- data/app/indexers/hyrax/resource_indexer.rb +0 -15
- data/app/models/concerns/hyrax/riiif_file.rb +0 -30
- data/app/services/hyrax/characterization/model_wrapper.rb +0 -0
- data/app/services/hyrax/custom_queries/find_by_collection_type.rb +0 -0
- data/app/services/hyrax/query_service.rb +0 -0
- data/app/services/hyrax/riiif_file_resolver.rb +0 -50
- data/lib/hyrax/specs/disable_animations_in_test_environment.rb +0 -53
- /data/app/indexers/{hyrax → concerns/hyrax}/thumbnail_indexer.rb +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 020c1b9b867c89474795692fb51cc03751ecfd10feb8dd300750b12891b3687c
|
4
|
+
data.tar.gz: 41385b0600e001653ed3eb30b239b1520125fb52192af6543d6be53ffb76d0e4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1c56457afe4451c9bd228ef1b45e2d431c60855ba1b744c14f4320ceefa92020d9c4bff083d0d39271c8e8cf2d3db3a79ff0630ece9f676180c21a6b928fee13
|
7
|
+
data.tar.gz: 144eda52bc5bee7caba33a113324e27fa5c00102c9422264758f68ab28f59844d6a1bb8ff6301d251cd17fc34e6e8cc4aa089c1b22c11249d3988070e935dcb8
|
data/.circleci/config.yml
CHANGED
@@ -119,6 +119,7 @@ jobs:
|
|
119
119
|
HYRAX_VALKYRIE: << parameters.hyrax_valkyrie >>
|
120
120
|
IN_DOCKER: true
|
121
121
|
KARMA_BROWSER: remote-chromium
|
122
|
+
SOLR_URL: http://127.0.0.1:8985/solr/hydra-test
|
122
123
|
VALKYRIE_SOLR_CORE: valkyrie-test
|
123
124
|
VALKYRIE_SOLR_PORT: 8985
|
124
125
|
steps:
|
@@ -165,3 +166,16 @@ workflows:
|
|
165
166
|
hyrax_valkyrie: "1"
|
166
167
|
requires:
|
167
168
|
- dassie-build
|
169
|
+
|
170
|
+
koppie:
|
171
|
+
jobs:
|
172
|
+
- kaniko-build:
|
173
|
+
name: "koppie-build"
|
174
|
+
ruby_version: "3.2.2"
|
175
|
+
hyrax_app: "koppie"
|
176
|
+
- hyrax-test:
|
177
|
+
name: "koppie-test"
|
178
|
+
ruby_version: "3.2.2"
|
179
|
+
hyrax_app: "koppie"
|
180
|
+
requires:
|
181
|
+
- koppie-build
|
@@ -0,0 +1,81 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
##
|
4
|
+
# Generated by hyrax:listeners
|
5
|
+
#
|
6
|
+
# The Hyrax engine uses a publish/subscribe programming model to allow
|
7
|
+
# pluggable behavior in response to certain repository events. A range of events
|
8
|
+
# are published on a topic based event bus.
|
9
|
+
#
|
10
|
+
# This listener provides a template.
|
11
|
+
#
|
12
|
+
# For simple use cases, it's fine to add behavior to the `#on_*` methods in this
|
13
|
+
# Listener. If you have more than trivial behavior here, you probably want to add
|
14
|
+
# new classes that are named narrowly scoped and named for what the listener is
|
15
|
+
# for.
|
16
|
+
#
|
17
|
+
# When writing listener methods, it's important to carefully consider error,
|
18
|
+
# handling. Unhandled exceptions short-circuit behavior for other listeners,
|
19
|
+
# so it's a good idea to be paying attention to failure cases.
|
20
|
+
#
|
21
|
+
# @see https://github.com/samvera/hyrax/wiki/Hyrax's-Event-Bus-(Hyrax::Publisher)
|
22
|
+
# @see https://www.rubydoc.info/gems/hyrax/Hyrax/Publisher
|
23
|
+
# @see https://dry-rb.org/gems/dry-events
|
24
|
+
class HyraxListener
|
25
|
+
# def on_batch_created
|
26
|
+
# end
|
27
|
+
|
28
|
+
# def on_collection_deleted
|
29
|
+
# end
|
30
|
+
|
31
|
+
# def on_collection_metadata_updated
|
32
|
+
# end
|
33
|
+
|
34
|
+
# def on_collection_membership_update
|
35
|
+
# end
|
36
|
+
|
37
|
+
# def on_file_characterized
|
38
|
+
# end
|
39
|
+
|
40
|
+
# def on_file_downloaded
|
41
|
+
# end
|
42
|
+
|
43
|
+
# def on_file_metadata_updated
|
44
|
+
# end
|
45
|
+
|
46
|
+
# def on_file_metadata_deleted
|
47
|
+
# end
|
48
|
+
|
49
|
+
# def on_file_uploaded
|
50
|
+
# end
|
51
|
+
|
52
|
+
# def on_file_set_audited
|
53
|
+
# end
|
54
|
+
|
55
|
+
# def on_file_set_attached
|
56
|
+
# end
|
57
|
+
|
58
|
+
# def on_file_set_url_imported
|
59
|
+
# end
|
60
|
+
|
61
|
+
# def on_file_set_restored
|
62
|
+
# end
|
63
|
+
|
64
|
+
# def on_object_deleted
|
65
|
+
# end
|
66
|
+
|
67
|
+
# def on_object_failed_deposit
|
68
|
+
# end
|
69
|
+
|
70
|
+
# def on_object_deposited
|
71
|
+
# end
|
72
|
+
|
73
|
+
# def on_object_acl_updated
|
74
|
+
# end
|
75
|
+
|
76
|
+
# def on_object_membership_updated
|
77
|
+
# end
|
78
|
+
|
79
|
+
# def on_object_metadata_updated
|
80
|
+
# end
|
81
|
+
end
|
@@ -1,5 +1,3 @@
|
|
1
|
-
require 'hyrax/specs/disable_animations_in_test_environment'
|
2
|
-
|
3
1
|
Rails.application.configure do
|
4
2
|
# Settings specified here will take precedence over those in config/application.rb.
|
5
3
|
config.assets.debug = true
|
@@ -46,7 +44,4 @@ Rails.application.configure do
|
|
46
44
|
|
47
45
|
# Raises error for missing translations
|
48
46
|
config.action_view.raise_on_missing_translations = true
|
49
|
-
|
50
|
-
# disable animations with shared hyrax code
|
51
|
-
config.middleware.use DisableAnimationsInTestEnvironment
|
52
47
|
end
|
@@ -63,6 +63,11 @@ Hyrax.config do |config|
|
|
63
63
|
# config.collection_model = 'Hyrax::PcdmCollection' # collection without basic metadata
|
64
64
|
# config.collection_model = 'CollectionResource' # collection with basic metadata
|
65
65
|
# config.admin_set_model = 'Hyrax::AdministrativeSet'
|
66
|
+
|
67
|
+
# dassie needs legacy AF models
|
68
|
+
config.collection_model = '::Collection'
|
69
|
+
config.admin_set_model = 'AdminSet'
|
70
|
+
config.file_set_model = '::FileSet'
|
66
71
|
end
|
67
72
|
|
68
73
|
Date::DATE_FORMATS[:standard] = "%m/%d/%Y"
|
@@ -31,3 +31,80 @@ Rails.application.reloader.to_prepare do
|
|
31
31
|
|
32
32
|
Riiif::Engine.config.cache_duration = 1.day
|
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
|
data/.gitignore
CHANGED
data/.koppie/.env
CHANGED
@@ -43,6 +43,6 @@ SOLR_CORES=koppie
|
|
43
43
|
SOLR_HOST=solr
|
44
44
|
SOLR_PORT=8983
|
45
45
|
SOLR_URL=http://solr:8983/solr/koppie
|
46
|
-
SOLR_TEST_URL=http://solr:8983/solr/
|
46
|
+
SOLR_TEST_URL=http://solr:8983/solr/hydra-test
|
47
47
|
VALKYRIE_METADATA_ADAPTER=pg_metadata
|
48
|
-
VALKYRIE_STORAGE_ADAPTER=versioned_disk_storage
|
48
|
+
VALKYRIE_STORAGE_ADAPTER=versioned_disk_storage
|
@@ -0,0 +1,81 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
##
|
4
|
+
# Generated by hyrax:listeners
|
5
|
+
#
|
6
|
+
# The Hyrax engine uses a publish/subscribe programming model to allow
|
7
|
+
# pluggable behavior in response to certain repository events. A range of events
|
8
|
+
# are published on a topic based event bus.
|
9
|
+
#
|
10
|
+
# This listener provides a template.
|
11
|
+
#
|
12
|
+
# For simple use cases, it's fine to add behavior to the `#on_*` methods in this
|
13
|
+
# Listener. If you have more than trivial behavior here, you probably want to add
|
14
|
+
# new classes that are named narrowly scoped and named for what the listener is
|
15
|
+
# for.
|
16
|
+
#
|
17
|
+
# When writing listener methods, it's important to carefully consider error,
|
18
|
+
# handling. Unhandled exceptions short-circuit behavior for other listeners,
|
19
|
+
# so it's a good idea to be paying attention to failure cases.
|
20
|
+
#
|
21
|
+
# @see https://github.com/samvera/hyrax/wiki/Hyrax's-Event-Bus-(Hyrax::Publisher)
|
22
|
+
# @see https://www.rubydoc.info/gems/hyrax/Hyrax/Publisher
|
23
|
+
# @see https://dry-rb.org/gems/dry-events
|
24
|
+
class HyraxListener
|
25
|
+
# def on_batch_created
|
26
|
+
# end
|
27
|
+
|
28
|
+
# def on_collection_deleted
|
29
|
+
# end
|
30
|
+
|
31
|
+
# def on_collection_metadata_updated
|
32
|
+
# end
|
33
|
+
|
34
|
+
# def on_collection_membership_update
|
35
|
+
# end
|
36
|
+
|
37
|
+
# def on_file_characterized
|
38
|
+
# end
|
39
|
+
|
40
|
+
# def on_file_downloaded
|
41
|
+
# end
|
42
|
+
|
43
|
+
# def on_file_metadata_updated
|
44
|
+
# end
|
45
|
+
|
46
|
+
# def on_file_metadata_deleted
|
47
|
+
# end
|
48
|
+
|
49
|
+
# def on_file_uploaded
|
50
|
+
# end
|
51
|
+
|
52
|
+
# def on_file_set_audited
|
53
|
+
# end
|
54
|
+
|
55
|
+
# def on_file_set_attached
|
56
|
+
# end
|
57
|
+
|
58
|
+
# def on_file_set_url_imported
|
59
|
+
# end
|
60
|
+
|
61
|
+
# def on_file_set_restored
|
62
|
+
# end
|
63
|
+
|
64
|
+
# def on_object_deleted
|
65
|
+
# end
|
66
|
+
|
67
|
+
# def on_object_failed_deposit
|
68
|
+
# end
|
69
|
+
|
70
|
+
# def on_object_deposited
|
71
|
+
# end
|
72
|
+
|
73
|
+
# def on_object_acl_updated
|
74
|
+
# end
|
75
|
+
|
76
|
+
# def on_object_membership_updated
|
77
|
+
# end
|
78
|
+
|
79
|
+
# def on_object_metadata_updated
|
80
|
+
# end
|
81
|
+
end
|
@@ -1 +1 @@
|
|
1
|
-
Collection =
|
1
|
+
Collection = CollectionResource
|
@@ -1,12 +1,12 @@
|
|
1
1
|
analytics:
|
2
2
|
google:
|
3
3
|
analytics_id: <%= ENV['GOOGLE_ANALYTICS_ID'] %>
|
4
|
-
app_name: <%= ENV
|
5
|
-
app_version: <%= ENV
|
4
|
+
app_name: <%= ENV['GOOGLE_OAUTH_APP_NAME'] %>
|
5
|
+
app_version: <%= ENV['GOOGLE_OAUTH_APP_VERSION'] %>
|
6
6
|
privkey_value: <%= ENV['GOOGLE_OAUTH_PRIVATE_KEY_VALUE'] %>
|
7
|
-
privkey_path: <%= ENV
|
8
|
-
privkey_secret: <%= ENV
|
9
|
-
client_email: <%= ENV
|
7
|
+
privkey_path: <%= ENV['GOOGLE_OAUTH_PRIVATE_KEY_PATH'] %>
|
8
|
+
privkey_secret: <%= ENV['GOOGLE_OAUTH_PRIVATE_KEY_SECRET'] %>
|
9
|
+
client_email: <%= ENV['GOOGLE_OAUTH_CLIENT_EMAIL'] %>
|
10
10
|
matomo:
|
11
11
|
base_url: <%= ENV['MATOMO_BASE_URL'] %>
|
12
12
|
site_id: <%= ENV['MATOMO_SITE_ID'] %>
|
@@ -31,3 +31,81 @@ Rails.application.reloader.to_prepare do
|
|
31
31
|
|
32
32
|
Riiif::Engine.config.cache_duration = 1.day
|
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
|
111
|
+
|
@@ -22,177 +22,19 @@
|
|
22
22
|
# `rails generate hyrax:collection_resource CollectionResource`
|
23
23
|
|
24
24
|
attributes:
|
25
|
-
|
25
|
+
target_audience:
|
26
26
|
type: string
|
27
|
-
multiple: true
|
28
27
|
form:
|
29
28
|
primary: true
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
creator:
|
29
|
+
multiple: true
|
30
|
+
predicate: http://hyrax-example.com/target_audience
|
31
|
+
department:
|
34
32
|
type: string
|
35
|
-
multiple: true
|
36
33
|
form:
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
- "creator_tesim"
|
41
|
-
predicate: http://purl.org/dc/elements/1.1/creator
|
42
|
-
rights_statement:
|
43
|
-
type: string
|
44
|
-
multiple: true
|
45
|
-
form:
|
46
|
-
primary: false
|
47
|
-
index_keys:
|
48
|
-
- "rights_statement_tesim"
|
49
|
-
predicate: http://www.europeana.eu/schemas/edm/rights
|
50
|
-
abstract:
|
51
|
-
type: string
|
52
|
-
multiple: true
|
53
|
-
form:
|
54
|
-
primary: false
|
55
|
-
index_keys:
|
56
|
-
- "abstract_tesim"
|
57
|
-
predicate: http://purl.org/dc/terms/abstract
|
58
|
-
access_right:
|
59
|
-
type: string
|
60
|
-
multiple: true
|
61
|
-
form:
|
62
|
-
primary: false
|
63
|
-
index_keys:
|
64
|
-
- "access_right_tesim"
|
65
|
-
predicate: http://purl.org/dc/terms/accessRights
|
66
|
-
alternative_title:
|
67
|
-
type: string
|
68
|
-
multiple: true
|
69
|
-
form:
|
70
|
-
primary: false
|
71
|
-
index_keys:
|
72
|
-
- "alternative_title_tesim"
|
73
|
-
predicate: http://purl.org/dc/terms/alternative
|
74
|
-
based_near:
|
75
|
-
type: string
|
76
|
-
multiple: true
|
77
|
-
form:
|
78
|
-
primary: false
|
79
|
-
index_keys:
|
80
|
-
- "based_near_sim"
|
81
|
-
- "based_near_tesim"
|
82
|
-
predicate: http://xmlns.com/foaf/0.1/based_near
|
83
|
-
bibliographic_citation:
|
84
|
-
type: string
|
85
|
-
multiple: true
|
86
|
-
predicate: http://purl.org/dc/terms/bibliographicCitation
|
87
|
-
contributor:
|
88
|
-
type: string
|
89
|
-
multiple: true
|
90
|
-
form:
|
91
|
-
primary: false
|
92
|
-
index_keys:
|
93
|
-
- "contributor_tesim"
|
94
|
-
predicate: http://purl.org/dc/elements/1.1/contributor
|
95
|
-
date_created:
|
96
|
-
type: date_time
|
97
|
-
multiple: true
|
98
|
-
form:
|
99
|
-
primary: false
|
100
|
-
index_keys:
|
101
|
-
- "date_created_tesim"
|
102
|
-
predicate: http://purl.org/dc/terms/created
|
103
|
-
identifier:
|
104
|
-
type: string
|
105
|
-
multiple: true
|
106
|
-
form:
|
107
|
-
primary: false
|
108
|
-
index_keys:
|
109
|
-
- "identifier_tesim"
|
110
|
-
predicate: http://purl.org/dc/terms/identifier
|
111
|
-
import_url:
|
112
|
-
type: string
|
113
|
-
predicate: http://scholarsphere.psu.edu/ns#importUrl
|
114
|
-
keyword:
|
115
|
-
type: string
|
116
|
-
multiple: true
|
117
|
-
index_keys:
|
118
|
-
- "keyword_sim"
|
119
|
-
- "keyword_tesim"
|
120
|
-
form:
|
121
|
-
primary: false
|
122
|
-
predicate: http://schema.org/keywords
|
123
|
-
publisher:
|
124
|
-
type: string
|
125
|
-
multiple: true
|
126
|
-
form:
|
127
|
-
primary: false
|
128
|
-
index_keys:
|
129
|
-
- "publisher_tesim"
|
130
|
-
predicate: http://purl.org/dc/elements/1.1/publisher
|
131
|
-
label:
|
132
|
-
type: string
|
133
|
-
form:
|
134
|
-
primary: false
|
135
|
-
index_keys:
|
136
|
-
- "label_tesim"
|
137
|
-
predicate: info:fedora/fedora-system:def/model#downloadFilename
|
138
|
-
language:
|
139
|
-
type: string
|
140
|
-
multiple: true
|
141
|
-
form:
|
142
|
-
primary: false
|
143
|
-
index_keys:
|
144
|
-
- "language_tesim"
|
145
|
-
predicate: http://purl.org/dc/elements/1.1/language
|
146
|
-
license:
|
147
|
-
type: string
|
148
|
-
multiple: true
|
149
|
-
form:
|
150
|
-
primary: false
|
151
|
-
index_keys:
|
152
|
-
- "license_tesim"
|
153
|
-
predicate: http://purl.org/dc/terms/license
|
154
|
-
relative_path:
|
155
|
-
type: string
|
156
|
-
predicate: http://scholarsphere.psu.edu/ns#relativePath
|
157
|
-
related_url:
|
158
|
-
type: string
|
159
|
-
multiple: true
|
160
|
-
form:
|
161
|
-
primary: false
|
162
|
-
index_keys:
|
163
|
-
- "related_url_tesim"
|
164
|
-
predicate: http://www.w3.org/2000/01/rdf-schema#seeAlso
|
165
|
-
resource_type:
|
166
|
-
type: string
|
167
|
-
multiple: true
|
168
|
-
form:
|
169
|
-
primary: false
|
170
|
-
index_keys:
|
171
|
-
- "resource_type_sim"
|
172
|
-
- "resource_type_tesim"
|
173
|
-
predicate: http://purl.org/dc/terms/type
|
174
|
-
rights_notes:
|
175
|
-
type: string
|
176
|
-
multiple: true
|
177
|
-
form:
|
178
|
-
primary: false
|
179
|
-
index_keys:
|
180
|
-
- "rights_notes_tesim"
|
181
|
-
predicate: http://purl.org/dc/elements/1.1/rights
|
182
|
-
source:
|
183
|
-
type: string
|
184
|
-
multiple: true
|
185
|
-
form:
|
186
|
-
primary: false
|
187
|
-
index_keys:
|
188
|
-
- "source_tesim"
|
189
|
-
predicate: http://purl.org/dc/terms/source
|
190
|
-
subject:
|
34
|
+
primary: true
|
35
|
+
predicate: http://hyrax-example.com/department
|
36
|
+
course:
|
191
37
|
type: string
|
192
|
-
multiple: true
|
193
|
-
index_keys:
|
194
|
-
- "subject_sim"
|
195
|
-
- "subject_tesim"
|
196
38
|
form:
|
197
39
|
primary: false
|
198
|
-
predicate: http://
|
40
|
+
predicate: http://hyrax-example.com/course
|