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
@@ -26,13 +26,14 @@ module Hyrax
|
|
26
26
|
* Generates mailboxer
|
27
27
|
10. Adds Hyrax's abilities into the Ability class
|
28
28
|
11. Adds controller behavior to the application controller
|
29
|
-
12.
|
30
|
-
13.
|
31
|
-
14.
|
32
|
-
15.
|
33
|
-
16.
|
34
|
-
17.
|
35
|
-
18.
|
29
|
+
12. Adds listener template and publisher initializer
|
30
|
+
13. Copies the catalog controller into the local app
|
31
|
+
14. Installs hyrax assets
|
32
|
+
15. Updates simple_form to use browser validations
|
33
|
+
16. Installs Blacklight gallery (and removes it's scss)
|
34
|
+
17. Install jquery-datatables
|
35
|
+
18. Initializes the noid-rails database-backed minter
|
36
|
+
19. Generates RIIIF image server implementation
|
36
37
|
"""
|
37
38
|
|
38
39
|
def run_required_generators
|
@@ -109,6 +110,12 @@ module Hyrax
|
|
109
110
|
end
|
110
111
|
end
|
111
112
|
|
113
|
+
# add listener code to provide developers a hint that listening to events
|
114
|
+
# is a good development pattern
|
115
|
+
def inject_listeners
|
116
|
+
generate "hyrax:listeners"
|
117
|
+
end
|
118
|
+
|
112
119
|
# Add behaviors to the application controller
|
113
120
|
def inject_hyrax_application_controller_behavior
|
114
121
|
file_path = "app/controllers/application_controller.rb"
|
@@ -134,6 +141,12 @@ module Hyrax
|
|
134
141
|
generate 'qa:local:tables'
|
135
142
|
end
|
136
143
|
|
144
|
+
def inject_required_seeds
|
145
|
+
insert_into_file 'db/seeds.rb' do
|
146
|
+
'Hyrax::RequiredDataSeeder.new.generate_seed_data'
|
147
|
+
end
|
148
|
+
end
|
149
|
+
|
137
150
|
def install_assets
|
138
151
|
generate "hyrax:assets"
|
139
152
|
end
|
@@ -175,9 +188,26 @@ module Hyrax
|
|
175
188
|
generate 'hyrax:riiif' unless options[:'skip-riiif']
|
176
189
|
end
|
177
190
|
|
191
|
+
def insert_env_queue_adapter
|
192
|
+
insert_into_file 'config/application.rb', after: /config\.load_defaults [0-9.]+$/ do
|
193
|
+
"\n config.active_job.queue_adapter = ENV.fetch('HYRAX_ACTIVE_JOB_QUEUE') { 'async' }.to_sym\n"
|
194
|
+
end
|
195
|
+
end
|
196
|
+
|
178
197
|
def universalviewer_files
|
179
198
|
rake('hyrax:universal_viewer:install')
|
180
199
|
rake('yarn:install')
|
181
200
|
end
|
201
|
+
|
202
|
+
def lando
|
203
|
+
copy_file '.lando.yml'
|
204
|
+
end
|
205
|
+
|
206
|
+
def dotenv
|
207
|
+
copy_file '.env'
|
208
|
+
gem_group :development, :test do
|
209
|
+
gem 'dotenv-rails', '~> 2.8'
|
210
|
+
end
|
211
|
+
end
|
182
212
|
end
|
183
213
|
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require 'rails/generators'
|
3
|
+
|
4
|
+
class Hyrax::ListenersGenerator < Rails::Generators::Base
|
5
|
+
desc """
|
6
|
+
This generator adds templates for Hyrax::Publisher listeners to your application
|
7
|
+
"""
|
8
|
+
|
9
|
+
source_root File.expand_path('../templates', __FILE__)
|
10
|
+
|
11
|
+
def inject_listener
|
12
|
+
copy_file 'app/listeners/hyrax_listener.rb', 'app/listeners/hyrax_listener.rb'
|
13
|
+
end
|
14
|
+
|
15
|
+
def inject_listener_initialier
|
16
|
+
copy_file 'config/initializers/publisher.rb', 'config/initializers/publisher.rb'
|
17
|
+
end
|
18
|
+
end
|
@@ -15,6 +15,7 @@ class Hyrax::ModelsGenerator < Rails::Generators::Base
|
|
15
15
|
# Setup the database migrations
|
16
16
|
def copy_migrations
|
17
17
|
rake 'hyrax:install:migrations'
|
18
|
+
rake 'valkyrie_engine:install:migrations'
|
18
19
|
end
|
19
20
|
|
20
21
|
# Add behaviors to the user model
|
@@ -36,16 +37,6 @@ class Hyrax::ModelsGenerator < Rails::Generators::Base
|
|
36
37
|
end
|
37
38
|
# rubocop:enable Metrics/MethodLength
|
38
39
|
|
39
|
-
def create_collection
|
40
|
-
copy_file 'app/models/collection.rb', 'app/models/collection.rb'
|
41
|
-
copy_file 'spec/models/collection_spec.rb', 'spec/models/collection_spec.rb' if rspec_installed?
|
42
|
-
end
|
43
|
-
|
44
|
-
def create_file_set
|
45
|
-
copy_file 'app/models/file_set.rb', 'app/models/file_set.rb'
|
46
|
-
copy_file 'spec/models/file_set_spec.rb', 'spec/models/file_set_spec.rb' if rspec_installed?
|
47
|
-
end
|
48
|
-
|
49
40
|
# Adds clamav initializtion
|
50
41
|
def clamav
|
51
42
|
generate 'hyrax:clamav'
|
@@ -18,10 +18,6 @@ class Hyrax::RiiifGenerator < Rails::Generators::Base
|
|
18
18
|
|
19
19
|
def add_to_gemfile
|
20
20
|
gem 'riiif', '~> 2.1'
|
21
|
-
|
22
|
-
Bundler.with_clean_env do
|
23
|
-
run "bundle install"
|
24
|
-
end
|
25
21
|
end
|
26
22
|
|
27
23
|
def copy_initializer
|
@@ -32,6 +28,12 @@ class Hyrax::RiiifGenerator < Rails::Generators::Base
|
|
32
28
|
route "mount Riiif::Engine => 'images', as: :riiif if Hyrax.config.iiif_image_server?"
|
33
29
|
end
|
34
30
|
|
31
|
+
def enable_riiif_in_hyrax_config
|
32
|
+
insert_into_file 'config/initializers/hyrax.rb', before: /^ # config.iiif_image_server = false/ do
|
33
|
+
" config.iiif_image_server = true\n"
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
35
37
|
def override_image_url_builder_in_hyrax_config
|
36
38
|
insert_into_file 'config/initializers/hyrax.rb', before: /^ # config.iiif_image_url_builder/ do
|
37
39
|
" config.iiif_image_url_builder = lambda do |file_id, base_url, size, format|\n" \
|
@@ -0,0 +1,9 @@
|
|
1
|
+
CH12N_TOOL=fits_servlet
|
2
|
+
DATABASE_URL=postgresql://postgres@localhost:5437/hyrax-dev?pool=5
|
3
|
+
FCREPO_URL=http://fedoraAdmin:fedoraAdmin@fcrepo:8989/fcrepo/rest
|
4
|
+
FITS_SERVLET_URL=http://localhost:8085/fits
|
5
|
+
HYRAX_ACTIVE_JOB_QUEUE=async
|
6
|
+
REDIS_URL=redis://localhost:6384
|
7
|
+
SOLR_URL=http://localhost:8988/solr/hyrax-dev
|
8
|
+
VALKYRIE_METADATA_ADAPTER=pg_metadata
|
9
|
+
VALKYRIE_STORAGE_ADAPTER=versioned_disk_storage
|
@@ -0,0 +1,50 @@
|
|
1
|
+
name: hyrax-app
|
2
|
+
app_mount: false
|
3
|
+
services:
|
4
|
+
solr:
|
5
|
+
app_mount: false
|
6
|
+
type: solr:8
|
7
|
+
portforward: 8988
|
8
|
+
core: hyrax-dev
|
9
|
+
config:
|
10
|
+
dir: solr/conf
|
11
|
+
database:
|
12
|
+
app_mount: false
|
13
|
+
type: postgres:15
|
14
|
+
portforward: 5437
|
15
|
+
creds:
|
16
|
+
database: hyrax-dev
|
17
|
+
redis:
|
18
|
+
app_mount: false
|
19
|
+
type: redis:6
|
20
|
+
portforward: 6384
|
21
|
+
persist: true
|
22
|
+
fits:
|
23
|
+
api: 3
|
24
|
+
type: lando
|
25
|
+
app_mount: false
|
26
|
+
services:
|
27
|
+
image: ghcr.io/samvera/fitsservlet:1.6.0
|
28
|
+
command:
|
29
|
+
- "catalina.sh"
|
30
|
+
- "run"
|
31
|
+
ports:
|
32
|
+
- 8085:8080
|
33
|
+
# fedora:
|
34
|
+
# api: 3
|
35
|
+
# type: lando
|
36
|
+
# app_mount: false
|
37
|
+
# volumes:
|
38
|
+
# fedora6:
|
39
|
+
# services:
|
40
|
+
# image: fcrepo/fcrepo:6.4.0
|
41
|
+
# command:
|
42
|
+
# - "catalina.sh"
|
43
|
+
# - "run"
|
44
|
+
# volumes:
|
45
|
+
# - fedora6:/data
|
46
|
+
# ports:
|
47
|
+
# - 8989:8080
|
48
|
+
# environment:
|
49
|
+
# CATALINA_OPTS: "-Djava.awt.headless=true -Dfile.encoding=UTF-8 -server -Xms512m -Xmx1024m -XX:NewSize=256m -XX:MaxNewSize=256m -XX:PermSize=256m -XX:MaxPermSize=256m -XX:+DisableExplicitGC -Dorg.apache.tomcat.util.buf.UDecoder.ALLOW_ENCODED_SLASH=true"
|
50
|
+
# JAVA_OPTS: "-Dfcrepo.dynamic.jms.port=61619 -Dfcrepo.dynamic.stomp.port=61615 -Dorg.apache.tomcat.util.buf.UDecoder.ALLOW_ENCODED_SLASH=true"
|
@@ -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
|
@@ -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
|
@@ -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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
284
|
+
config.query_index_from_valkyrie = true
|
249
285
|
|
250
286
|
## Configure index adapter for Valkyrie::Resources to use solr readonly indexer
|
251
|
-
|
287
|
+
config.index_adapter = :solr_index
|
252
288
|
|
253
289
|
## Fedora import/export tool
|
254
290
|
#
|
@@ -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
|
53
|
+
copyright_html: "<strong>Copyright © %{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 ©
|
53
|
+
copyright_html: "<strong>Copyright © %{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 ©
|
53
|
+
copyright_html: "<strong>Copyright © %{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
|
53
|
+
copyright_html: "<strong>Copyright © %{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
|
53
|
+
copyright_html: "<strong>Copyright © %{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
|
53
|
+
copyright_html: "<strong>Copyright © %{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>版权所有 ©
|
53
|
+
copyright_html: "<strong>版权所有 © %{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
|
-
|
3
|
-
port: <%= ENV.fetch('REDIS_PORT', 6379) %>
|
2
|
+
url: <%= ENV.fetch('REDIS_URL', 'redis://localhost:6379/0') %>
|
4
3
|
test:
|
5
|
-
|
6
|
-
port: <%= ENV.fetch('REDIS_PORT', 6379) %>
|
4
|
+
url: <%= ENV.fetch('REDIS_URL', 'redis://localhost:6379/0') %>
|
7
5
|
production:
|
8
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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" %>
|