hyrax 4.0.0.beta1 → 4.0.0.rc1
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 +66 -54
- data/.dassie/.env +29 -0
- data/.dassie/Gemfile +1 -1
- data/.dassie/app/controllers/catalog_controller.rb +1 -1
- data/.dassie/config/initializers/hyrax.rb +4 -0
- data/.github/SUPPORT.md +2 -3
- data/.github/workflows/build.yml +79 -0
- data/.github/workflows/main.yml +4 -4
- data/.github/workflows/release.yml +10 -4
- data/{.env → .koppie/.env} +21 -11
- data/.koppie/.gitignore +48 -0
- data/.koppie/.rspec +2 -0
- data/.koppie/CODE_OF_CONDUCT.md +36 -0
- data/.koppie/CONTRIBUTING.md +192 -0
- data/.koppie/Gemfile +53 -0
- data/.koppie/LICENSE +205 -0
- data/.koppie/README.md +55 -0
- data/.koppie/Rakefile +8 -0
- data/.koppie/app/assets/config/manifest.js +5 -0
- data/.koppie/app/assets/images/.keep +0 -0
- data/.koppie/app/assets/images/unauthorized.png +0 -0
- data/.koppie/app/assets/images/us_404.svg +91 -0
- data/.koppie/app/assets/javascripts/application.js +30 -0
- data/.koppie/app/assets/javascripts/blacklight_gallery.js +1 -0
- data/.koppie/app/assets/javascripts/cable.js +13 -0
- data/.koppie/app/assets/javascripts/channels/.keep +0 -0
- data/.koppie/app/assets/javascripts/openseadragon.js +2 -0
- data/.koppie/app/assets/stylesheets/application.css +48 -0
- data/.koppie/app/assets/stylesheets/hyrax.scss +17 -0
- data/.koppie/app/assets/stylesheets/openseadragon.css +3 -0
- data/.koppie/app/channels/application_cable/channel.rb +4 -0
- data/.koppie/app/channels/application_cable/connection.rb +4 -0
- data/.koppie/app/controllers/application_controller.rb +13 -0
- data/.koppie/app/controllers/catalog_controller.rb +314 -0
- data/.koppie/app/controllers/concerns/.keep +0 -0
- data/.koppie/app/controllers/hyrax/generic_works_controller.rb +17 -0
- data/.koppie/app/controllers/hyrax/monographs_controller.rb +17 -0
- data/.koppie/app/forms/collection_resource_form.rb +7 -0
- data/.koppie/app/forms/generic_work_form.rb +20 -0
- data/.koppie/app/forms/monograph_form.rb +20 -0
- data/.koppie/app/helpers/application_helper.rb +2 -0
- data/.koppie/app/helpers/hyrax_helper.rb +6 -0
- data/.koppie/app/indexers/collection_resource_indexer.rb +7 -0
- data/.koppie/app/indexers/generic_work_indexer.rb +16 -0
- data/.koppie/app/indexers/monograph_indexer.rb +16 -0
- data/.koppie/app/jobs/application_job.rb +2 -0
- data/.koppie/app/mailers/application_mailer.rb +4 -0
- data/.koppie/app/models/ability.rb +25 -0
- data/.koppie/app/models/application_record.rb +3 -0
- data/.koppie/app/models/collection.rb +1 -0
- data/.koppie/app/models/collection_resource.rb +31 -0
- data/.koppie/app/models/concerns/.keep +0 -0
- data/.koppie/app/models/file_set.rb +4 -0
- data/.koppie/app/models/generic_work.rb +8 -0
- data/.koppie/app/models/monograph.rb +8 -0
- data/.koppie/app/models/qa/local_authority.rb +2 -0
- data/.koppie/app/models/qa/local_authority_entry.rb +3 -0
- data/.koppie/app/models/qa.rb +5 -0
- data/.koppie/app/models/search_builder.rb +16 -0
- data/.koppie/app/models/solr_document.rb +28 -0
- data/.koppie/app/models/user.rb +24 -0
- data/.koppie/app/views/hyrax/generic_works/_generic_work.html.erb +2 -0
- data/.koppie/app/views/hyrax/monographs/_monograph.html.erb +2 -0
- data/.koppie/app/views/layouts/application.html.erb +15 -0
- data/.koppie/app/views/layouts/mailer.html.erb +13 -0
- data/.koppie/app/views/layouts/mailer.text.erb +1 -0
- data/.koppie/bin/bundle +3 -0
- data/.koppie/bin/rails +9 -0
- data/.koppie/bin/rake +9 -0
- data/.koppie/bin/setup +36 -0
- data/.koppie/bin/spring +17 -0
- data/.koppie/bin/update +31 -0
- data/.koppie/bin/yarn +11 -0
- data/.koppie/config/analytics.yml +12 -0
- data/.koppie/config/application.rb +33 -0
- data/.koppie/config/authorities/licenses.yml +46 -0
- data/.koppie/config/authorities/resource_types.yml +41 -0
- data/.koppie/config/authorities/rights_statements.yml +37 -0
- data/.koppie/config/blacklight.yml +9 -0
- data/.koppie/config/boot.rb +4 -0
- data/.koppie/config/browse_everything_providers.yml +25 -0
- data/.koppie/config/cable.yml +12 -0
- data/.koppie/config/credentials.yml.enc +1 -0
- data/.koppie/config/database.yml +25 -0
- data/.koppie/config/environment.rb +5 -0
- data/.koppie/config/environments/development.rb +71 -0
- data/.koppie/config/environments/production.rb +97 -0
- data/.koppie/config/environments/test.rb +46 -0
- data/.koppie/config/initializers/1_valkyrie.rb +56 -0
- data/.koppie/config/initializers/application_controller_renderer.rb +8 -0
- data/.koppie/config/initializers/assets.rb +14 -0
- data/.koppie/config/initializers/backtrace_silencers.rb +7 -0
- data/.koppie/config/initializers/clamav.rb +2 -0
- data/.koppie/config/initializers/content_security_policy.rb +25 -0
- data/.koppie/config/initializers/cookies_serializer.rb +5 -0
- data/.koppie/config/initializers/devise.rb +311 -0
- data/.koppie/config/initializers/file_services.rb +4 -0
- data/.koppie/config/initializers/filter_parameter_logging.rb +4 -0
- data/.koppie/config/initializers/hydra_config.rb +24 -0
- data/.koppie/config/initializers/hyrax.rb +333 -0
- data/.koppie/config/initializers/inflections.rb +16 -0
- data/.koppie/config/initializers/mailboxer.rb +22 -0
- data/.koppie/config/initializers/mime_types.rb +8 -0
- data/.koppie/config/initializers/mini_magick.rb +6 -0
- data/.koppie/config/initializers/redis_config.rb +4 -0
- data/.koppie/config/initializers/riiif.rb +29 -0
- data/.koppie/config/initializers/simple_form.rb +171 -0
- data/.koppie/config/initializers/simple_form_bootstrap.rb +151 -0
- data/.koppie/config/initializers/wrap_parameters.rb +14 -0
- data/.koppie/config/locales/blacklight.en.yml +3 -0
- data/.koppie/config/locales/devise.en.yml +65 -0
- data/.koppie/config/locales/en.yml +33 -0
- data/.koppie/config/locales/hyrax.de.yml +58 -0
- data/.koppie/config/locales/hyrax.en.yml +58 -0
- data/.koppie/config/locales/hyrax.es.yml +58 -0
- data/.koppie/config/locales/hyrax.fr.yml +58 -0
- data/.koppie/config/locales/hyrax.it.yml +58 -0
- data/.koppie/config/locales/hyrax.pt-BR.yml +58 -0
- data/.koppie/config/locales/hyrax.zh.yml +58 -0
- data/.koppie/config/metadata/collection_resource.yaml +149 -0
- data/.koppie/config/metadata/generic_work.yaml +22 -0
- data/.koppie/config/metadata/monograph.yaml +55 -0
- data/.koppie/config/puma.rb +37 -0
- data/.koppie/config/redis.yml +12 -0
- data/.koppie/config/role_map.yml +48 -0
- data/.koppie/config/routes.rb +36 -0
- data/.koppie/config/sidekiq.yml +15 -0
- data/.koppie/config/solr.yml +7 -0
- data/.koppie/config/spring.rb +6 -0
- data/.koppie/config/storage.yml +34 -0
- data/.koppie/config/tinymce.yml +13 -0
- data/.koppie/config/uv/uv-config.json +3 -0
- data/.koppie/config/uv/uv.html +87 -0
- data/.koppie/config/valkyrie_index.yml +12 -0
- data/.koppie/config/workflows/default_workflow.json +21 -0
- data/.koppie/config/workflows/mediated_deposit_workflow.json +76 -0
- data/.koppie/config.ru +5 -0
- data/.koppie/db/migrate/20210911143430_create_searches.blacklight.rb +17 -0
- data/.koppie/db/migrate/20210911143431_create_bookmarks.blacklight.rb +19 -0
- data/.koppie/db/migrate/20210911143432_add_polymorphic_type_to_bookmarks.blacklight.rb +9 -0
- data/.koppie/db/migrate/20210911143452_devise_create_users.rb +44 -0
- data/.koppie/db/migrate/20210911143456_add_devise_guests_to_users.rb +15 -0
- data/.koppie/db/migrate/20210911143532_create_version_committers.hyrax.rb +15 -0
- data/.koppie/db/migrate/20210911143533_create_checksum_audit_logs.hyrax.rb +19 -0
- data/.koppie/db/migrate/20210911143534_create_single_use_links.hyrax.rb +12 -0
- data/.koppie/db/migrate/20210911143535_add_social_to_users.hyrax.rb +13 -0
- data/.koppie/db/migrate/20210911143536_add_ldap_attrs_to_user.hyrax.rb +27 -0
- data/.koppie/db/migrate/20210911143537_add_avatars_to_users.hyrax.rb +15 -0
- data/.koppie/db/migrate/20210911143538_create_trophies.hyrax.rb +10 -0
- data/.koppie/db/migrate/20210911143539_add_linkedin_to_users.hyrax.rb +5 -0
- data/.koppie/db/migrate/20210911143540_create_tinymce_assets.hyrax.rb +8 -0
- data/.koppie/db/migrate/20210911143541_create_content_blocks.hyrax.rb +10 -0
- data/.koppie/db/migrate/20210911143542_create_featured_works.hyrax.rb +12 -0
- data/.koppie/db/migrate/20210911143543_add_external_key_to_content_blocks.hyrax.rb +6 -0
- data/.koppie/db/migrate/20210911143544_create_proxy_deposit_rights.hyrax.rb +10 -0
- data/.koppie/db/migrate/20210911143545_create_proxy_deposit_requests.hyrax.rb +15 -0
- data/.koppie/db/migrate/20210911143546_create_file_view_stats.hyrax.rb +12 -0
- data/.koppie/db/migrate/20210911143547_create_file_download_stats.hyrax.rb +12 -0
- data/.koppie/db/migrate/20210911143548_add_orcid_to_users.hyrax.rb +5 -0
- data/.koppie/db/migrate/20210911143549_create_user_stats.hyrax.rb +19 -0
- data/.koppie/db/migrate/20210911143550_create_work_view_stats.hyrax.rb +12 -0
- data/.koppie/db/migrate/20210911143551_add_works_to_user_stats.hyrax.rb +13 -0
- data/.koppie/db/migrate/20210911143552_change_trophy_generic_file_id_to_work_id.hyrax.rb +5 -0
- data/.koppie/db/migrate/20210911143553_change_proxy_deposit_generic_file_id_to_work_id.hyrax.rb +5 -0
- data/.koppie/db/migrate/20210911143554_change_audit_log_generic_file_id_to_file_set_id.hyrax.rb +5 -0
- data/.koppie/db/migrate/20210911143555_change_proxy_deposit_request_generic_file_id_to_work_id.hyrax.rb +5 -0
- data/.koppie/db/migrate/20210911143556_create_uploaded_files.hyrax.rb +10 -0
- data/.koppie/db/migrate/20210911143557_create_features.hyrax.rb +10 -0
- data/.koppie/db/migrate/20210911143558_create_operations.hyrax.rb +23 -0
- data/.koppie/db/migrate/20210911143559_change_featured_work_generic_file_id_to_work_id.hyrax.rb +6 -0
- data/.koppie/db/migrate/20210911143560_add_arkivo_to_users.hyrax.rb +8 -0
- data/.koppie/db/migrate/20210911143561_create_sipity.hyrax.rb +163 -0
- data/.koppie/db/migrate/20210911143562_create_sipity_workflow_methods.hyrax.rb +10 -0
- data/.koppie/db/migrate/20210911143563_create_permission_template.hyrax.rb +11 -0
- data/.koppie/db/migrate/20210911143564_create_permission_template_access.hyrax.rb +11 -0
- data/.koppie/db/migrate/20210911143565_add_release_to_permission_templates.hyrax.rb +6 -0
- data/.koppie/db/migrate/20210911143566_add_permission_template_to_sipity_workflow.hyrax.rb +26 -0
- data/.koppie/db/migrate/20210911143567_tidy_up_because_of_bad_exception.hyrax.rb +13 -0
- data/.koppie/db/migrate/20210911143568_add_allows_access_grant_to_workflow.hyrax.rb +5 -0
- data/.koppie/db/migrate/20210911143569_change_checksum_audit_log.hyrax.rb +18 -0
- data/.koppie/db/migrate/20210911143570_create_job_io_wrappers.hyrax.rb +15 -0
- data/.koppie/db/migrate/20210911143571_create_collection_types.hyrax.rb +17 -0
- data/.koppie/db/migrate/20210911143572_update_collection_type_column_names.hyrax.rb +9 -0
- data/.koppie/db/migrate/20210911143573_update_collection_type_column_options.hyrax.rb +17 -0
- data/.koppie/db/migrate/20210911143574_create_collection_branding_infos.hyrax.rb +15 -0
- data/.koppie/db/migrate/20210911143575_create_collection_type_participants.hyrax.rb +11 -0
- data/.koppie/db/migrate/20210911143576_rename_admin_set_id_to_source_id.hyrax.rb +5 -0
- data/.koppie/db/migrate/20210911143577_add_preferred_locale_to_users.hyrax.rb +5 -0
- data/.koppie/db/migrate/20210911143578_add_collection_type_sharing_options.hyrax.rb +5 -0
- data/.koppie/db/migrate/20210911143579_add_unique_constraint_to_permission_template_accesses.hyrax.rb +8 -0
- data/.koppie/db/migrate/20210911143580_add_branding_to_collection_type.hyrax.rb +5 -0
- data/.koppie/db/migrate/20210911143581_add_badge_color_to_collection_types.hyrax.rb +5 -0
- data/.koppie/db/migrate/20210911143582_update_single_use_links_column_names.hyrax.rb +6 -0
- data/.koppie/db/migrate/20210911143583_change_sipity_entity_specific_responsibility.hyrax.rb +9 -0
- data/.koppie/db/migrate/20210911143584_create_mailboxer.mailboxer_engine.rb +65 -0
- data/.koppie/db/migrate/20210911143585_add_conversation_optout.mailboxer_engine.rb +15 -0
- data/.koppie/db/migrate/20210911143586_add_missing_indices.mailboxer_engine.rb +20 -0
- data/.koppie/db/migrate/20210911143587_add_delivery_tracking_info_to_mailboxer_receipts.mailboxer_engine.rb +8 -0
- data/.koppie/db/migrate/20210911143588_create_qa_local_authorities.rb +10 -0
- data/.koppie/db/migrate/20210911143602_create_qa_local_authority_entries.rb +12 -0
- data/.koppie/db/migrate/20210911143623_create_minter_states.noid_rails_engine.rb +17 -0
- data/.koppie/db/migrate/20210911143624_rename_minter_state_random_to_rand.noid_rails_engine.rb +8 -0
- data/.koppie/db/migrate/20210921150120_enable_uuid_extension.valkyrie_engine.rb +7 -0
- data/.koppie/db/migrate/20210921150121_create_orm_resources.valkyrie_engine.rb +19 -0
- data/.koppie/db/migrate/20210921150122_add_model_type_to_orm_resources.valkyrie_engine.rb +7 -0
- data/.koppie/db/migrate/20210921150123_change_model_type_to_internal_model.valkyrie_engine.rb +7 -0
- data/.koppie/db/migrate/20210921150124_create_path_gin_index.valkyrie_engine.rb +7 -0
- data/.koppie/db/migrate/20210921150125_create_internal_resource_index.valkyrie_engine.rb +7 -0
- data/.koppie/db/migrate/20210921150126_create_updated_at_index.valkyrie_engine.rb +7 -0
- data/.koppie/db/migrate/20210921150127_add_optimistic_locking_to_orm_resources.valkyrie_engine.rb +7 -0
- data/.koppie/db/migrate/20211021161136_user_roles.rb +20 -0
- data/.koppie/db/migrate/20211207172259_create_default_administrative_set.hyrax.rb +8 -0
- data/.koppie/db/schema.rb +595 -0
- data/.koppie/db/seeds.rb +79 -0
- data/.koppie/lib/assets/.keep +0 -0
- data/.koppie/lib/tasks/.keep +0 -0
- data/.koppie/log/.keep +0 -0
- data/.koppie/package.json +15 -0
- data/.koppie/public/404.html +67 -0
- data/.koppie/public/422.html +67 -0
- data/.koppie/public/500.html +66 -0
- data/.koppie/public/apple-touch-icon-precomposed.png +0 -0
- data/.koppie/public/apple-touch-icon.png +0 -0
- data/.koppie/public/branding/.keep +0 -0
- data/.koppie/public/favicon.ico +0 -0
- data/.koppie/public/robots.txt +1 -0
- data/.koppie/scripts/db-migrate-seed.sh +9 -0
- data/.koppie/scripts/entrypoint.sh +10 -0
- data/.koppie/solr/conf/_rest_managed.json +3 -0
- data/.koppie/solr/conf/admin-extra.html +31 -0
- data/.koppie/solr/conf/elevate.xml +36 -0
- data/.koppie/solr/conf/mapping-ISOLatin1Accent.txt +246 -0
- data/.koppie/solr/conf/protwords.txt +21 -0
- data/.koppie/solr/conf/schema.xml +367 -0
- data/.koppie/solr/conf/scripts.conf +24 -0
- data/.koppie/solr/conf/solrconfig.xml +325 -0
- data/.koppie/solr/conf/spellings.txt +2 -0
- data/.koppie/solr/conf/stopwords.txt +58 -0
- data/.koppie/solr/conf/stopwords_en.txt +58 -0
- data/.koppie/solr/conf/synonyms.txt +31 -0
- data/.koppie/solr/conf/xslt/example.xsl +132 -0
- data/.koppie/solr/conf/xslt/example_atom.xsl +67 -0
- data/.koppie/solr/conf/xslt/example_rss.xsl +66 -0
- data/.koppie/solr/conf/xslt/luke.xsl +337 -0
- data/.koppie/solr/sample_solr_documents.yml +2692 -0
- data/.koppie/spec/forms/collection_resource_form_spec.rb +13 -0
- data/.koppie/spec/indexers/collection_resource_indexer_spec.rb +14 -0
- data/.koppie/spec/indexers/generic_work_indexer_spec.rb +13 -0
- data/.koppie/spec/indexers/monograph_indexer_spec.rb +13 -0
- data/.koppie/spec/models/collection_resource_spec.rb +13 -0
- data/.koppie/spec/models/collection_spec.rb +17 -0
- data/.koppie/spec/models/file_set_spec.rb +15 -0
- data/.koppie/spec/models/generic_work_spec.rb +13 -0
- data/.koppie/spec/models/monograph_spec.rb +13 -0
- data/.koppie/spec/models/qa/local_authority_entry_spec.rb +5 -0
- data/.koppie/spec/models/qa/local_authority_spec.rb +5 -0
- data/.koppie/spec/rails_helper.rb +47 -0
- data/.koppie/spec/spec_helper.rb +19 -0
- data/.koppie/spec/views/generic_works/_generic_work.html.erb_spec.rb +7 -0
- data/.koppie/spec/views/monographs/_monograph.html.erb_spec.rb +7 -0
- data/.koppie/storage/.keep +0 -0
- data/.koppie/vendor/.keep +0 -0
- data/.koppie/yarn.lock +1497 -0
- data/CONTAINERS.md +56 -12
- data/CONTRIBUTING.md +2 -2
- data/Dockerfile +29 -13
- data/README.md +24 -97
- data/app/actors/hyrax/actors/collections_membership_actor.rb +1 -2
- data/app/actors/hyrax/actors/create_with_files_actor.rb +1 -1
- data/app/actors/hyrax/actors/create_with_remote_files_actor.rb +2 -2
- data/app/actors/hyrax/actors/embargo_actor.rb +11 -4
- data/app/actors/hyrax/actors/lease_actor.rb +11 -4
- data/app/assets/javascripts/hyrax/app.js.erb +1 -1
- data/app/assets/javascripts/hyrax/permissions/control.es6 +8 -1
- data/app/assets/stylesheets/hyrax/_catalog.scss +4 -0
- data/app/assets/stylesheets/hyrax/_forms.scss +4 -0
- data/app/assets/stylesheets/hyrax/dashboard.scss +5 -62
- data/app/components/hyrax/dropdown_facet_field_component.html.erb +21 -0
- data/app/components/hyrax/dropdown_facet_field_component.rb +30 -0
- data/app/controllers/concerns/hyrax/collections_controller_behavior.rb +6 -9
- data/app/controllers/concerns/hyrax/controller.rb +1 -23
- data/app/controllers/concerns/hyrax/embargoes_controller_behavior.rb +11 -2
- data/app/controllers/concerns/hyrax/leases_controller_behavior.rb +11 -2
- data/app/controllers/concerns/hyrax/manages_embargoes.rb +13 -1
- data/app/controllers/concerns/hyrax/works_controller_behavior.rb +5 -2
- data/app/controllers/hyrax/dashboard/collection_members_controller.rb +0 -1
- data/app/controllers/hyrax/dashboard/collections_controller.rb +5 -8
- data/app/controllers/hyrax/downloads_controller.rb +16 -1
- data/app/controllers/hyrax/file_sets_controller.rb +10 -2
- data/app/controllers/hyrax/my/collections_controller.rb +1 -0
- data/app/controllers/hyrax/my/works_controller.rb +4 -2
- data/app/controllers/hyrax/permissions_controller.rb +1 -1
- data/app/controllers/hyrax/transfers_controller.rb +4 -3
- data/app/controllers/hyrax/workflow_actions_controller.rb +3 -2
- data/app/forms/hyrax/forms/batch_upload_form.rb +1 -1
- data/app/forms/hyrax/forms/dashboard/nest_collection_form.rb +4 -18
- data/app/forms/hyrax/forms/embargo.rb +13 -0
- data/app/forms/hyrax/forms/file_set_edit_form.rb +1 -1
- data/app/forms/hyrax/forms/file_set_form.rb +8 -35
- data/app/forms/hyrax/forms/lease.rb +13 -0
- data/app/forms/hyrax/forms/pcdm_object_form.rb +46 -0
- data/app/forms/hyrax/forms/resource_form.rb +36 -32
- data/app/forms/hyrax/forms/work_embargo_form.rb +35 -0
- data/app/forms/hyrax/forms/work_form.rb +2 -2
- data/app/forms/hyrax/forms/work_lease_form.rb +35 -0
- data/app/helpers/hyrax/collections_helper.rb +4 -32
- data/app/helpers/hyrax/embargo_helper.rb +11 -0
- data/app/helpers/hyrax/facets_helper.rb +0 -140
- data/app/helpers/hyrax/hyrax_helper_behavior.rb +16 -1
- data/app/helpers/hyrax/lease_helper.rb +11 -0
- data/app/helpers/hyrax/work_form_helper.rb +107 -0
- data/app/indexers/hyrax/deep_indexing_service.rb +2 -2
- data/app/indexers/hyrax/pcdm_collection_indexer.rb +1 -0
- data/app/indexers/hyrax/valkyrie_file_set_indexer.rb +2 -8
- data/app/indexers/hyrax/valkyrie_work_indexer.rb +21 -0
- data/app/jobs/characterize_job.rb +9 -4
- data/app/jobs/import_url_job.rb +2 -2
- data/app/jobs/valkyrie_create_derivatives_job.rb +0 -2
- data/app/models/admin_set.rb +8 -0
- data/app/models/concerns/hyrax/ability.rb +3 -3
- data/app/models/concerns/hyrax/collection_behavior.rb +3 -48
- data/app/models/concerns/hyrax/file_set_behavior.rb +1 -0
- data/app/models/concerns/hyrax/naming.rb +1 -1
- data/app/models/concerns/hyrax/solr_document/metadata.rb +1 -0
- data/app/models/concerns/hyrax/suppressible.rb +0 -8
- data/app/models/concerns/hyrax/work_behavior.rb +0 -1
- data/app/models/file_download_stat.rb +5 -5
- data/app/models/hyrax/collection_type.rb +9 -17
- data/app/models/hyrax/embargo.rb +1 -1
- data/app/models/hyrax/file_metadata.rb +5 -12
- data/app/models/hyrax/file_set.rb +3 -11
- data/app/models/hyrax/lease.rb +1 -1
- data/app/models/hyrax/statistic.rb +5 -5
- data/app/models/hyrax/work.rb +2 -2
- data/app/models/proxy_deposit_request.rb +1 -1
- data/app/models/sipity.rb +35 -14
- data/app/presenters/hyrax/admin_set_presenter.rb +5 -0
- data/app/presenters/hyrax/collection_presenter.rb +1 -1
- data/app/presenters/hyrax/displays_image.rb +1 -1
- data/app/presenters/hyrax/iiif_manifest_presenter.rb +14 -4
- data/app/presenters/hyrax/pcdm_member_presenter_factory.rb +1 -1
- data/app/presenters/hyrax/permission_badge.rb +3 -2
- data/app/presenters/hyrax/presenter_renderer.rb +1 -1
- data/app/presenters/hyrax/presents_attributes.rb +1 -1
- data/app/presenters/hyrax/version_list_presenter.rb +6 -1
- data/app/presenters/hyrax/work_show_presenter.rb +4 -1
- data/app/presenters/hyrax/workflow_presenter.rb +1 -1
- data/app/search_builders/hyrax/collection_search_builder.rb +1 -0
- data/app/search_builders/hyrax/dashboard/nested_collections_search_builder.rb +7 -67
- data/app/search_builders/hyrax/filter_suppressed_with_roles.rb +1 -1
- data/app/services/hyrax/admin_set_create_service.rb +2 -2
- data/app/services/hyrax/admin_set_service.rb +1 -1
- data/app/services/hyrax/analytics/google.rb +1 -1
- data/app/services/hyrax/analytics/matomo.rb +1 -1
- data/app/services/hyrax/collection_member_service.rb +2 -0
- data/app/services/hyrax/collection_types/create_service.rb +1 -1
- data/app/services/hyrax/collections/migration_service.rb +8 -8
- data/app/services/hyrax/collections/nested_collection_query_service.rb +3 -113
- data/app/services/hyrax/database_migrator.rb +1 -1
- data/app/services/hyrax/derivative_service.rb +37 -4
- data/app/services/hyrax/edit_permissions_service.rb +22 -17
- data/app/services/hyrax/embargo_manager.rb +9 -0
- data/app/services/hyrax/embargo_service.rb +4 -0
- data/app/services/hyrax/file_set_file_service.rb +55 -0
- data/app/services/hyrax/lease_manager.rb +9 -0
- data/app/services/hyrax/lease_service.rb +4 -0
- data/app/services/hyrax/listeners/file_metadata_listener.rb +11 -0
- data/app/services/hyrax/listeners/workflow_listener.rb +2 -2
- data/app/services/hyrax/local_file_service.rb +3 -1
- data/app/services/hyrax/restriction_service.rb +1 -1
- data/app/services/hyrax/solr_query_service.rb +10 -2
- data/app/services/hyrax/solr_service.rb +22 -16
- data/app/services/hyrax/statistics/depositors/summary.rb +1 -1
- data/app/services/hyrax/statistics/term_query.rb +1 -1
- data/app/services/hyrax/thumbnail_path_service.rb +11 -3
- data/app/services/hyrax/user_stat_importer.rb +4 -2
- data/app/services/hyrax/valkyrie_persist_derivatives.rb +26 -15
- data/app/services/hyrax/valkyrie_upload.rb +24 -31
- data/app/services/hyrax/versioning_service.rb +78 -10
- data/app/services/hyrax/visibility_map.rb +10 -2
- data/app/services/hyrax/visibility_propagator.rb +5 -5
- data/app/services/hyrax/work_resource_query_service.rb +45 -0
- data/app/services/hyrax/workflow/action_taken_service.rb +4 -4
- data/app/services/hyrax/workflow/notification_service.rb +2 -2
- data/app/services/hyrax/workflow/status_list_service.rb +1 -1
- data/app/services/hyrax/workflow/workflow_importer.rb +2 -2
- data/app/services/hyrax/working_directory.rb +3 -3
- data/app/services/hyrax/works/migration_service.rb +3 -3
- data/app/utils/hyrax/test_data_seeders/user_seeder.rb +3 -2
- data/app/validators/hyrax/collection_membership_validator.rb +2 -2
- data/app/views/hyrax/admin/analytics/work_reports/show.html.erb +6 -6
- data/app/views/hyrax/base/_attribute_rows.html.erb +2 -0
- data/app/views/hyrax/base/_form_collections_error.html.erb +1 -1
- data/app/views/hyrax/base/_form_in_works_error.html.erb +1 -1
- data/app/views/hyrax/base/_form_ordered_members_error.html.erb +1 -1
- data/app/views/hyrax/base/_form_progress.html.erb +1 -1
- data/app/views/hyrax/base/_form_visibility_component.html.erb +5 -1
- data/app/views/hyrax/base/_form_visibility_error.html.erb +19 -5
- data/app/views/hyrax/dashboard/collections/_form_for_select_collection.html.erb +1 -1
- data/app/views/hyrax/embargoes/edit.html.erb +4 -4
- data/app/views/hyrax/file_sets/_permission.html.erb +1 -1
- data/app/views/hyrax/file_sets/_permission_form.html.erb +1 -6
- data/app/views/hyrax/file_sets/edit.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/_default.html.erb +1 -1
- data/app/views/hyrax/file_sets/media_display/_image.html.erb +1 -1
- data/app/views/hyrax/file_sets/media_display/_office_document.html.erb +1 -1
- data/app/views/hyrax/file_sets/media_display/_pdf.html.erb +1 -1
- data/app/views/hyrax/file_sets/media_display/_video.html.erb +1 -1
- data/app/views/hyrax/leases/edit.html.erb +3 -3
- data/app/views/hyrax/my/collections/_facets.html.erb +7 -5
- data/app/views/hyrax/my/works/_facets.html.erb +6 -2
- data/app/views/hyrax/transfers/_received.html.erb +1 -1
- data/app/views/hyrax/transfers/_sent.html.erb +1 -1
- data/app/views/hyrax/transfers/new.html.erb +1 -1
- data/app/views/hyrax/uploads/_js_templates.html.erb +8 -8
- data/app/views/hyrax/uploads/_js_templates_branding.html.erb +2 -2
- data/app/views/hyrax/users/_vitals.html.erb +4 -4
- data/chart/hyrax/Chart.yaml +7 -7
- data/chart/hyrax/README.md +5 -0
- data/chart/hyrax/templates/_helpers.tpl +19 -7
- data/chart/hyrax/templates/configmap-env.yaml +1 -1
- data/chart/hyrax/templates/cron-embargo.yaml +1 -1
- data/chart/hyrax/templates/cron-lease.yaml +1 -1
- data/chart/hyrax/templates/deployment-worker.yaml +2 -2
- data/chart/hyrax/templates/extra-list.yaml +8 -0
- data/chart/hyrax/templates/secrets.yaml +3 -3
- data/chart/hyrax/values.yaml +23 -15
- data/config/features.rb +1 -1
- data/config/initializers/reform_rails_6_1_monkey_patch.rb +27 -0
- data/config/locales/hyrax.de.yml +9 -8
- data/config/locales/hyrax.en.yml +3 -0
- data/config/locales/hyrax.es.yml +8 -7
- data/config/locales/hyrax.fr.yml +10 -9
- data/config/locales/hyrax.it.yml +8 -7
- data/config/locales/hyrax.pt-BR.yml +8 -7
- data/config/locales/hyrax.zh.yml +9 -8
- data/config/metadata/basic_metadata.yaml +2 -0
- data/config/metadata/file_set_metadata.yaml +130 -0
- data/docker-compose-koppie.yml +163 -0
- data/docker-compose.yml +0 -3
- data/documentation/MAINTENANCE.md +77 -0
- data/documentation/developing-your-hyrax-based-app.md +2 -2
- data/documentation/legacyREADME.md +3 -3
- data/hyrax.gemspec +9 -8
- data/lib/generators/hyrax/install_generator.rb +4 -4
- data/lib/generators/hyrax/templates/catalog_controller.rb +1 -3
- data/lib/generators/hyrax/templates/config/initializers/hyrax.rb +8 -1
- data/lib/generators/hyrax/templates/config/initializers/riiif.rb +1 -1
- data/lib/hyrax/active_fedora_dummy_model.rb +13 -0
- data/lib/hyrax/configuration.rb +30 -15
- data/lib/hyrax/controlled_vocabulary/importer/language.rb +1 -1
- data/lib/hyrax/engine.rb +6 -3
- data/lib/hyrax/errors.rb +2 -0
- data/lib/hyrax/publisher.rb +4 -0
- data/lib/hyrax/search_state.rb +9 -0
- data/lib/hyrax/specs/capybara.rb +2 -2
- data/lib/hyrax/specs/shared_specs/factories/strategies/json_strategy.rb +4 -0
- data/lib/hyrax/specs/shared_specs/factories/strategies/valkyrie_resource.rb +10 -0
- data/lib/hyrax/specs/shared_specs/indexers.rb +5 -0
- data/lib/hyrax/transactions/container.rb +0 -2
- data/lib/hyrax/transactions/steps/remove_file_set_from_work.rb +29 -3
- data/lib/hyrax/transactions/steps/save_access_control.rb +17 -1
- data/lib/hyrax/transactions/steps/save_collection_banner.rb +1 -1
- data/lib/hyrax/transactions/steps/save_collection_logo.rb +1 -1
- data/lib/hyrax/version.rb +1 -1
- data/lib/hyrax.rb +1 -1
- data/lib/tasks/migrate.rake +5 -1
- data/lib/valkyrie/indexing/solr/indexing_adapter.rb +1 -1
- data/lib/wings/active_fedora_converter/file_metadata_node.rb +1 -1
- data/lib/wings/valkyrie/storage.rb +6 -2
- data/samvera-fall-TM3.svg +376 -0
- data/tasks/benchmark.rake +1 -1
- data/tasks/hyrax_dev.rake +0 -32
- data/template.rb +1 -1
- metadata +326 -65
- data/app/conversions/power_converters/polymorphic_type.rb +0 -9
- data/app/conversions/power_converters/sipity_action.rb +0 -11
- data/app/conversions/power_converters/sipity_action_name.rb +0 -10
- data/app/conversions/power_converters/sipity_agent.rb +0 -9
- data/app/conversions/power_converters/sipity_entity.rb +0 -14
- data/app/conversions/power_converters/sipity_role.rb +0 -10
- data/app/conversions/power_converters/sipity_workflow_id.rb +0 -17
- data/app/conversions/power_converters/sipity_workflow_state.rb +0 -13
- data/app/conversions/power_converters.rb +0 -7
- data/app/indexers/hyrax/repository_reindexer.rb +0 -19
- data/app/models/concerns/hyrax/collection_nesting.rb +0 -73
- data/app/services/hyrax/adapters/nesting_index_adapter.rb +0 -193
- data/app/views/hyrax/my/_facet_layout.html.erb +0 -7
- data/app/views/hyrax/my/_facet_limit.html.erb +0 -15
- data/app/views/hyrax/my/_facet_pivot.html.erb +0 -26
- data/config/initializers/nesting_indexer_initializer.rb +0 -16
@@ -0,0 +1,55 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Hyrax
|
4
|
+
##
|
5
|
+
# A service for accessing specific Hyrax::FileMetadata objects referenced by a
|
6
|
+
# Hyrax::FileSet.
|
7
|
+
class FileSetFileService
|
8
|
+
##
|
9
|
+
# @!attribute [r] file_set
|
10
|
+
# @return [Hyrax::FileSet]
|
11
|
+
attr_reader :file_set
|
12
|
+
|
13
|
+
##
|
14
|
+
# @!attribute [r] query_service
|
15
|
+
# @return [#find_by]
|
16
|
+
attr_reader :query_service
|
17
|
+
|
18
|
+
##
|
19
|
+
# @param resource [Hyrax::FileSet]
|
20
|
+
def initialize(file_set:, query_service: Hyrax.query_service)
|
21
|
+
@query_service = query_service
|
22
|
+
@file_set = file_set
|
23
|
+
end
|
24
|
+
|
25
|
+
##
|
26
|
+
# Return the Hyrax::FileMetadata which should be considered “original” for
|
27
|
+
# indexing and version‐tracking.
|
28
|
+
#
|
29
|
+
# If +file_set.original_file_id+ is defined, it will be used; otherwise,
|
30
|
+
# this requires a custom query. The ultimate fallback, if no
|
31
|
+
# pcdm:OriginalFile is associated with the :file_set, is to just use the
|
32
|
+
# first file in its :file_ids.
|
33
|
+
#
|
34
|
+
# @return [Hyrax::FileMetadata]
|
35
|
+
def original_file
|
36
|
+
if file_set.original_file_id
|
37
|
+
# Always just use original_file_id if it is defined.
|
38
|
+
#
|
39
|
+
# NOTE: This needs to use :find_file_metadata_by, not :find_by, because
|
40
|
+
# at time of writing the latter does not work in Wings.
|
41
|
+
query_service.custom_queries.find_file_metadata_by(id: file_set.original_file_id)
|
42
|
+
else
|
43
|
+
# Cache the fallback to avoid needing to do this query twice.
|
44
|
+
#
|
45
|
+
# See NOTE above regarding use of :find_file_metadata_by.
|
46
|
+
@original_file ||= begin
|
47
|
+
query_service.custom_queries.find_original_file(file_set: file_set)
|
48
|
+
rescue Valkyrie::Persistence::ObjectNotFoundError
|
49
|
+
fallback_id = file_set.file_ids.first
|
50
|
+
query_service.custom_queries.find_file_metadata_by(id: fallback_id) if fallback_id
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
@@ -89,6 +89,15 @@ module Hyrax
|
|
89
89
|
resource.lease || Lease.new
|
90
90
|
end
|
91
91
|
|
92
|
+
##
|
93
|
+
# Drop the lease by setting its release date to `nil`.
|
94
|
+
#
|
95
|
+
# @return [void]
|
96
|
+
def nullify
|
97
|
+
return unless under_lease?
|
98
|
+
lease.lease_expiration_date = nil
|
99
|
+
end
|
100
|
+
|
92
101
|
##
|
93
102
|
# @return [Boolean]
|
94
103
|
def release
|
@@ -5,6 +5,17 @@ module Hyrax
|
|
5
5
|
##
|
6
6
|
# Listens for events related to {Hyrax::FileMetadata}
|
7
7
|
class FileMetadataListener
|
8
|
+
##
|
9
|
+
# Called when 'file.characterized' event is published;
|
10
|
+
# allows post-characterization handling, like derivatives generation.
|
11
|
+
#
|
12
|
+
# @param [Dry::Events::Event] event
|
13
|
+
# @return [void]
|
14
|
+
def on_file_characterized(event)
|
15
|
+
CreateDerivativesJob
|
16
|
+
.perform_later(event[:file_set], event[:file_id], event[:path_hint])
|
17
|
+
end
|
18
|
+
|
8
19
|
##
|
9
20
|
# Called when 'file.metadata.updated' event is published; reindexes a
|
10
21
|
# {Hyrax::FileSet} when a file claiming to be its `pcdm_use:OriginalFile`
|
@@ -25,13 +25,13 @@ module Hyrax
|
|
25
25
|
# @param [Dry::Events::Event] event
|
26
26
|
# @return [void]
|
27
27
|
def on_object_deposited(event)
|
28
|
-
return
|
28
|
+
return Hyrax.logger.warn("Skipping workflow initialization for #{event[:object]}; no user is given\n\t#{event}") if
|
29
29
|
event[:user].blank?
|
30
30
|
|
31
31
|
factory.create(event[:object], {}, event[:user])
|
32
32
|
rescue Sipity::StateError, Sipity::ConversionError => err
|
33
33
|
# don't error on known sipity error types; log instead
|
34
|
-
|
34
|
+
Hyrax.logger.error(err)
|
35
35
|
end
|
36
36
|
end
|
37
37
|
end
|
@@ -26,21 +26,29 @@ module Hyrax
|
|
26
26
|
end
|
27
27
|
|
28
28
|
##
|
29
|
+
# execute the query using a GET request
|
29
30
|
# @return [Hash] the results returned from solr for the current query
|
30
31
|
def get
|
31
32
|
solr_service.get(build)
|
32
33
|
end
|
33
34
|
|
35
|
+
##
|
36
|
+
# execute the solr query and return results
|
37
|
+
# @return [Hash] the results returned from solr for the current query
|
38
|
+
def query_result
|
39
|
+
solr_service.query_result(build)
|
40
|
+
end
|
41
|
+
|
34
42
|
##
|
35
43
|
# @return [Enumerable<SolrDocument>]
|
36
44
|
def solr_documents
|
37
|
-
|
45
|
+
query_result['response']['docs'].map { |doc| self.class.document_model.new(doc) }
|
38
46
|
end
|
39
47
|
|
40
48
|
##
|
41
49
|
# @return [Array<String>] ids of documents matching the current query
|
42
50
|
def get_ids # rubocop:disable Naming/AccessorMethodName
|
43
|
-
results =
|
51
|
+
results = query_result
|
44
52
|
results['response']['docs'].map { |doc| doc['id'] }
|
45
53
|
end
|
46
54
|
|
@@ -38,7 +38,7 @@ module Hyrax
|
|
38
38
|
end
|
39
39
|
|
40
40
|
delegate :add, :commit, :count, :delete, :get, :instance, :ping, :post,
|
41
|
-
:query, :delete_by_query, :search_by_id, :wipe!, to: :new
|
41
|
+
:query, :query_result, :delete_by_query, :search_by_id, :wipe!, to: :new
|
42
42
|
end
|
43
43
|
|
44
44
|
# Wraps rsolr get
|
@@ -72,21 +72,27 @@ module Hyrax
|
|
72
72
|
connection.post(solr_path, data: args)
|
73
73
|
end
|
74
74
|
|
75
|
-
#
|
75
|
+
# Query solr using the provided or default http method, returning the result as a hash.
|
76
|
+
# @return [Hash] raw query result from solr
|
77
|
+
def query_result(query, **args)
|
78
|
+
Hyrax.logger.warn rows_warning unless args.key?(:rows)
|
79
|
+
# Use the provided solr query method, or fall back to the configured default
|
80
|
+
method = args.delete(:method) || Hyrax.config.solr_default_method
|
81
|
+
|
82
|
+
case method
|
83
|
+
when :get
|
84
|
+
get(query, **args)
|
85
|
+
when :post
|
86
|
+
post(query, **args)
|
87
|
+
else
|
88
|
+
raise "Unsupported HTTP method for querying SolrService (#{method.inspect})"
|
89
|
+
end
|
90
|
+
end
|
91
|
+
|
92
|
+
# Execute the provided query. Uses the configured http method by default.
|
76
93
|
# @return [Array<SolrHit>] the response docs wrapped in SolrHit objects
|
77
94
|
def query(query, **args)
|
78
|
-
|
79
|
-
method = args.delete(:method) || :get
|
80
|
-
|
81
|
-
result = case method
|
82
|
-
when :get
|
83
|
-
get(query, **args)
|
84
|
-
when :post
|
85
|
-
post(query, **args)
|
86
|
-
else
|
87
|
-
raise "Unsupported HTTP method for querying SolrService (#{method.inspect})"
|
88
|
-
end
|
89
|
-
result['response']['docs'].map do |doc|
|
95
|
+
query_result(query, **args)['response']['docs'].map do |doc|
|
90
96
|
::SolrHit.new(doc)
|
91
97
|
end
|
92
98
|
end
|
@@ -114,10 +120,10 @@ module Hyrax
|
|
114
120
|
end
|
115
121
|
|
116
122
|
# Wraps rsolr count
|
117
|
-
# @return [Hash] the hash straight
|
123
|
+
# @return [Hash] the hash straight from rsolr
|
118
124
|
def count(query)
|
119
125
|
args = { rows: 0 }
|
120
|
-
|
126
|
+
query_result(query, **args)['response']['numFound'].to_i
|
121
127
|
end
|
122
128
|
|
123
129
|
# Wraps ActiveFedora::Base#search_by_id(id, opts)
|
@@ -33,7 +33,7 @@ module Hyrax
|
|
33
33
|
|
34
34
|
private
|
35
35
|
|
36
|
-
delegate :blacklight_config, to: CatalogController
|
36
|
+
delegate :blacklight_config, :search_state_class, to: CatalogController
|
37
37
|
delegate :depositor_field, to: DepositSearchBuilder
|
38
38
|
|
39
39
|
# results come from Solr in an array where the first item is the user and
|
@@ -28,7 +28,7 @@ module Hyrax
|
|
28
28
|
'json.nl': 'map',
|
29
29
|
omitHeader: 'true')
|
30
30
|
unless json
|
31
|
-
|
31
|
+
Hyrax.logger.error "Unable to reach TermsComponent via Solr connection. Is it enabled in your solr config?"
|
32
32
|
return []
|
33
33
|
end
|
34
34
|
|
@@ -28,10 +28,11 @@ module Hyrax
|
|
28
28
|
end
|
29
29
|
|
30
30
|
def fetch_thumbnail(object)
|
31
|
-
return object if object.thumbnail_id == object.id
|
31
|
+
return object if object.thumbnail_id == object.id ||
|
32
|
+
object.try(:file_ids)&.detect { |fid| fid == object.thumbnail_id }
|
32
33
|
Hyrax.query_service.find_by_alternate_identifier(alternate_identifier: object.thumbnail_id)
|
33
34
|
rescue Valkyrie::Persistence::ObjectNotFoundError, Hyrax::ObjectNotFoundError
|
34
|
-
|
35
|
+
Hyrax.logger.error("Couldn't find thumbnail #{object.thumbnail_id} for #{object.id}")
|
35
36
|
nil
|
36
37
|
end
|
37
38
|
|
@@ -53,13 +54,20 @@ module Hyrax
|
|
53
54
|
# @return true if there a file on disk for this object, otherwise false
|
54
55
|
# @param [FileSet] thumb - the object that is the thumbnail
|
55
56
|
def thumbnail?(thumb)
|
56
|
-
File.exist?(thumbnail_filepath(thumb))
|
57
|
+
File.exist?(thumbnail_filepath(thumb)) ||
|
58
|
+
(thumb.is_a?(Hyrax::Resource) && file_in_storage?(thumb))
|
57
59
|
end
|
58
60
|
|
59
61
|
# @param [FileSet] thumb - the object that is the thumbnail
|
60
62
|
def thumbnail_filepath(thumb)
|
61
63
|
Hyrax::DerivativePath.derivative_path_for_reference(thumb, 'thumbnail')
|
62
64
|
end
|
65
|
+
|
66
|
+
def file_in_storage?(thumb)
|
67
|
+
Hyrax.custom_queries.find_thumbnail(file_set: thumb)
|
68
|
+
rescue Valkyrie::StorageAdapter::FileNotFound, Valkyrie::Persistence::ObjectNotFoundError
|
69
|
+
false
|
70
|
+
end
|
63
71
|
end
|
64
72
|
end
|
65
73
|
end
|
@@ -9,7 +9,7 @@ module Hyrax
|
|
9
9
|
if options[:verbose]
|
10
10
|
stdout_logger = Logger.new(STDOUT)
|
11
11
|
stdout_logger.level = Logger::INFO
|
12
|
-
|
12
|
+
Hyrax.logger.extend(ActiveSupport::Logger.broadcast(stdout_logger))
|
13
13
|
end
|
14
14
|
@logging = options[:logging]
|
15
15
|
@delay_secs = options[:delay_secs].to_f
|
@@ -84,6 +84,8 @@ module Hyrax
|
|
84
84
|
rescue StandardError => exception
|
85
85
|
log_message fail_message
|
86
86
|
log_message "Last exception #{exception}"
|
87
|
+
# Without returning false, we return the results of log_message; which is true.
|
88
|
+
false
|
87
89
|
end
|
88
90
|
|
89
91
|
def date_since_last_cache(user)
|
@@ -145,7 +147,7 @@ module Hyrax
|
|
145
147
|
end
|
146
148
|
|
147
149
|
def log_message(message)
|
148
|
-
|
150
|
+
Hyrax.logger.info "#{self.class}: #{message}" if @logging
|
149
151
|
end
|
150
152
|
|
151
153
|
def retry_options
|
@@ -16,22 +16,25 @@ module Hyrax
|
|
16
16
|
# @param [#read] stream the derivative filestream
|
17
17
|
# @param [Hash] directives
|
18
18
|
# @option directives [String] :url a url to the file destination
|
19
|
-
def self.call(stream,
|
20
|
-
|
21
|
-
|
22
|
-
|
19
|
+
def self.call(stream,
|
20
|
+
directives,
|
21
|
+
uploader: Hyrax::ValkyrieUpload.new(storage_adapter: Hyrax.config.derivatives_storage_adapter))
|
22
|
+
file_set = fileset_for_directives(directives)
|
23
23
|
|
24
24
|
# Valkyrie storage adapters will typically expect an IO-like object that
|
25
25
|
# responds to #path -- here we only have a StringIO, so some
|
26
26
|
# transformation is in order
|
27
|
-
tmpfile = Tempfile.new(
|
27
|
+
tmpfile = Tempfile.new(file_set.id, encoding: 'ascii-8bit')
|
28
28
|
tmpfile.write stream.read
|
29
29
|
|
30
|
-
|
31
|
-
Hyrax.
|
32
|
-
|
33
|
-
|
34
|
-
|
30
|
+
filename = filename(directives)
|
31
|
+
Hyrax.logger.debug "Uploading thumbnail for FileSet #{file_set.id} as #{filename}"
|
32
|
+
|
33
|
+
uploader.upload(
|
34
|
+
io: tmpfile,
|
35
|
+
filename: filename,
|
36
|
+
file_set: file_set,
|
37
|
+
use: Hyrax::FileMetadata::Use::THUMBNAIL
|
35
38
|
)
|
36
39
|
end
|
37
40
|
|
@@ -40,11 +43,19 @@ module Hyrax
|
|
40
43
|
# we want to extract the FileSet id, which in this case would be 9593tv123
|
41
44
|
#
|
42
45
|
# @param [String] path
|
43
|
-
# @return [
|
44
|
-
def self.
|
45
|
-
path.
|
46
|
-
|
47
|
-
|
46
|
+
# @return [Hyrax::FileSet]
|
47
|
+
def self.fileset_for_directives(directives)
|
48
|
+
path = URI(directives.fetch(:url)).path
|
49
|
+
id = path.sub(Hyrax.config.derivatives_path.to_s, "")
|
50
|
+
.delete('/')
|
51
|
+
.match(/^(.*)-\w*(\.\w+)*$/) { |m| m[1] }
|
52
|
+
raise "Could not extract fileset id from path #{path}" unless id
|
53
|
+
|
54
|
+
Hyrax.metadata_adapter.query_service.find_by(id: id)
|
55
|
+
end
|
56
|
+
|
57
|
+
def self.filename(directives)
|
58
|
+
URI(directives.fetch(:url)).path.split('/').last
|
48
59
|
end
|
49
60
|
end
|
50
61
|
end
|
@@ -1,9 +1,10 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
|
3
|
+
class Hyrax::ValkyrieUpload
|
4
4
|
# @param [IO] io
|
5
5
|
# @param [String] filename
|
6
6
|
# @param [Hyrax::FileSet] file_set
|
7
|
+
# @param [Valkyrie::StorageAdapter] storage_adapter
|
7
8
|
# @param [RDF::URI] use
|
8
9
|
# @param [User] user
|
9
10
|
#
|
@@ -19,31 +20,33 @@ module Hyrax::ValkyrieUpload
|
|
19
20
|
use: Hyrax::FileMetadata::Use::ORIGINAL_FILE,
|
20
21
|
user: nil
|
21
22
|
)
|
23
|
+
new(storage_adapter: storage_adapter)
|
24
|
+
.upload(filename: filename, file_set: file_set, io: io, use: use, user: user)
|
25
|
+
end
|
22
26
|
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
27
|
+
##
|
28
|
+
# @!attribute [r] storage_adapter
|
29
|
+
# @return [Valkyrie::StorageAdapter] storage_adapter
|
30
|
+
attr_reader :storage_adapter
|
31
|
+
##
|
32
|
+
# @param [Valkyrie::StorageAdapter] storage_adapter
|
33
|
+
def initialize(storage_adapter: Hyrax.storage_adapter)
|
34
|
+
@storage_adapter = storage_adapter
|
35
|
+
end
|
30
36
|
|
31
|
-
|
37
|
+
def upload(filename:, file_set:, io:, use: Hyrax::FileMetadata::Use::ORIGINAL_FILE, user: nil)
|
38
|
+
streamfile = storage_adapter.upload(file: io, original_filename: filename, resource: file_set)
|
39
|
+
file_metadata = Hyrax::FileMetadata(streamfile)
|
32
40
|
file_metadata.file_set_id = file_set.id
|
41
|
+
file_metadata.type += [use]
|
33
42
|
|
34
|
-
|
35
|
-
when Hyrax::FileMetadata::Use::ORIGINAL_FILE
|
43
|
+
if use == Hyrax::FileMetadata::Use::ORIGINAL_FILE
|
36
44
|
# Set file set label.
|
37
45
|
reset_title = file_set.title.first == file_set.label
|
38
46
|
# set title to label if that's how it was before this characterization
|
39
47
|
file_set.title = file_metadata.original_filename if reset_title
|
40
48
|
# always set the label to the original_name
|
41
49
|
file_set.label = file_metadata.original_filename
|
42
|
-
when Hyrax::FileMetadata::Use::THUMBNAIL
|
43
|
-
# TODO: the parent work's thumbnail_id remains incorrect (it's set to the
|
44
|
-
# FileSet ID, rather than the ID of this thumbnail FileMetadata; but
|
45
|
-
# trying to update the parent attributes here doesn't seem to stick
|
46
|
-
file_set.thumbnail_id = file_metadata.id
|
47
50
|
end
|
48
51
|
|
49
52
|
saved_metadata = Hyrax.persister.save(resource: file_metadata)
|
@@ -64,7 +67,7 @@ module Hyrax::ValkyrieUpload
|
|
64
67
|
# @param [::User] user the user performing the add
|
65
68
|
#
|
66
69
|
# @return [Hyrax::FileSet] updated file set
|
67
|
-
def
|
70
|
+
def add_file_to_file_set(file_set:, file_metadata:, user:)
|
68
71
|
file_set.file_ids << file_metadata.id
|
69
72
|
set_file_use_ids(file_set, file_metadata)
|
70
73
|
|
@@ -72,12 +75,14 @@ module Hyrax::ValkyrieUpload
|
|
72
75
|
Hyrax.publisher.publish('object.membership.updated', object: file_set, user: user)
|
73
76
|
end
|
74
77
|
|
78
|
+
private
|
79
|
+
|
75
80
|
# @api private
|
76
81
|
# @param [Hyrax::FileSet] file_set the file set to add to
|
77
82
|
# @param [Hyrax::FileMetadata] file_metadata the metadata object representing
|
78
83
|
# the file to add
|
79
84
|
# @return [void]
|
80
|
-
def
|
85
|
+
def set_file_use_ids(file_set, file_metadata)
|
81
86
|
file_metadata.type.each do |type|
|
82
87
|
case type
|
83
88
|
when Hyrax::FileMetadata::Use::ORIGINAL_FILE
|
@@ -87,20 +92,8 @@ module Hyrax::ValkyrieUpload
|
|
87
92
|
when Hyrax::FileMetadata::Use::EXTRACTED_TEXT
|
88
93
|
file_set.extracted_text_id = file_metadata.id
|
89
94
|
else
|
90
|
-
|
95
|
+
Hyrax.logger.warn "Unknown file use #{file_metadata.type} specified for #{file_metadata.file_identifier}"
|
91
96
|
end
|
92
97
|
end
|
93
98
|
end
|
94
|
-
|
95
|
-
# @api private
|
96
|
-
# @param [#to_s] id
|
97
|
-
# @param [Valkyrie::StorageAdapter::StreamFile] file
|
98
|
-
def self.find_or_create_metadata(id:, file:)
|
99
|
-
Hyrax.custom_queries.find_file_metadata_by(id: id)
|
100
|
-
rescue Valkyrie::Persistence::ObjectNotFoundError => e
|
101
|
-
Hyrax.logger.warn "Failed to find existing metadata for #{id}:"
|
102
|
-
Hyrax.logger.warn e.message
|
103
|
-
Hyrax.logger.warn "Creating Hyrax::FileMetadata now"
|
104
|
-
Hyrax::FileMetadata.for(file: file)
|
105
|
-
end
|
106
99
|
end
|
@@ -1,7 +1,80 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
module Hyrax
|
4
|
+
##
|
5
|
+
# Provides methods for dealing with versions of files across both ActiveFedora
|
6
|
+
# and Valkyrie.
|
7
|
+
#
|
8
|
+
# Note that many of the methods pertaining to version creation are currently
|
9
|
+
# implemented as static methods.
|
4
10
|
class VersioningService
|
11
|
+
##
|
12
|
+
# @!attribute [rw] resource
|
13
|
+
# @return [ActiveFedora::File | Hyrax::FileMetadata | NilClass]
|
14
|
+
attr_accessor :resource
|
15
|
+
|
16
|
+
##
|
17
|
+
# @!attribute [r] storage_adapter
|
18
|
+
# @return [#supports?]
|
19
|
+
attr_reader :storage_adapter
|
20
|
+
|
21
|
+
##
|
22
|
+
# @param resource [ActiveFedora::File | Hyrax::FileMetadata | NilClass]
|
23
|
+
def initialize(resource:, storage_adapter: Hyrax.storage_adapter)
|
24
|
+
@storage_adapter = storage_adapter
|
25
|
+
self.resource = resource
|
26
|
+
end
|
27
|
+
|
28
|
+
##
|
29
|
+
# Returns an array of versions for the resource associated with this
|
30
|
+
# Hyrax::VersioningService.
|
31
|
+
#
|
32
|
+
# If the resource is nil, or if it is a Hyrax::FileMetadata and versioning
|
33
|
+
# is not supported in the storage adapter, an empty array will be returned.
|
34
|
+
def versions
|
35
|
+
if resource.nil?
|
36
|
+
[]
|
37
|
+
elsif resource.is_a?(Hyrax::FileMetadata)
|
38
|
+
if storage_adapter.try(:"supports?", :versions)
|
39
|
+
storage_adapter.find_versions(id: resource.file_identifier).to_a
|
40
|
+
else
|
41
|
+
[]
|
42
|
+
end
|
43
|
+
else
|
44
|
+
resource.versions.all.to_a
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
##
|
49
|
+
# Returns the latest version of the file associated with this
|
50
|
+
# Hyrax::VersioningService.
|
51
|
+
def latest_version
|
52
|
+
versions.last
|
53
|
+
end
|
54
|
+
|
55
|
+
##
|
56
|
+
# Returns the file ID of the latest version of the file associated with this
|
57
|
+
# Hyrax::VersioningService, or the ID of the file resource itself if no
|
58
|
+
# latest version is defined.
|
59
|
+
#
|
60
|
+
# If the resource is nil, this method returns an empty string.
|
61
|
+
def versioned_file_id
|
62
|
+
latest = latest_version
|
63
|
+
if latest
|
64
|
+
if latest.respond_to?(:id)
|
65
|
+
latest.id
|
66
|
+
else
|
67
|
+
Hyrax.config.translate_uri_to_id.call(latest.uri)
|
68
|
+
end
|
69
|
+
elsif resource.nil?
|
70
|
+
""
|
71
|
+
elsif resource.is_a?(Hyrax::FileMetadata)
|
72
|
+
resource.file_identifier
|
73
|
+
else
|
74
|
+
resource.id
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
5
78
|
class << self
|
6
79
|
# Make a version and record the version committer
|
7
80
|
# @param [ActiveFedora::File | Hyrax::FileMetadata] content
|
@@ -11,19 +84,14 @@ module Hyrax
|
|
11
84
|
perform_create(content, user, use_valkyrie)
|
12
85
|
end
|
13
86
|
|
14
|
-
# @param [ActiveFedora::File | Hyrax::FileMetadata]
|
87
|
+
# @param [ActiveFedora::File | Hyrax::FileMetadata] file
|
15
88
|
def latest_version_of(file)
|
16
|
-
file.
|
89
|
+
Hyrax::VersioningService.new(resource: file).latest_version
|
17
90
|
end
|
18
91
|
|
19
|
-
# @param [ActiveFedora::File | Hyrax::FileMetadata]
|
92
|
+
# @param [ActiveFedora::File | Hyrax::FileMetadata] file
|
20
93
|
def versioned_file_id(file)
|
21
|
-
|
22
|
-
if versions.present?
|
23
|
-
Hyrax.config.translate_uri_to_id.call(versions.last.uri)
|
24
|
-
else
|
25
|
-
file.id
|
26
|
-
end
|
94
|
+
Hyrax::VersioningService.new(resource: file).versioned_file_id
|
27
95
|
end
|
28
96
|
|
29
97
|
# Record the version committer of the last version
|
@@ -42,7 +110,7 @@ module Hyrax
|
|
42
110
|
def perform_create(content, user, use_valkyrie)
|
43
111
|
use_valkyrie ? perform_create_through_valkyrie(content, user) : perform_create_through_active_fedora(content, user)
|
44
112
|
rescue NotImplementedError
|
45
|
-
|
113
|
+
Hyrax.logger.warn "Declining to create a Version for #{content}; #{self} doesn't support versioning with use_valkyrie: #{use_valkyrie}"
|
46
114
|
end
|
47
115
|
|
48
116
|
def perform_create_through_active_fedora(content, user)
|
@@ -51,15 +51,23 @@ module Hyrax
|
|
51
51
|
end
|
52
52
|
|
53
53
|
def additions_for(visibility:)
|
54
|
-
|
54
|
+
fetch(visibility)&.fetch(:additions)
|
55
55
|
end
|
56
56
|
|
57
57
|
def deletions_for(visibility:)
|
58
|
-
|
58
|
+
fetch(visibility)&.fetch(:deletions)
|
59
|
+
end
|
60
|
+
|
61
|
+
def fetch(key, &block)
|
62
|
+
@map.fetch(key, &block)
|
63
|
+
rescue KeyError => e
|
64
|
+
raise(UnknownVisibility, e.message)
|
59
65
|
end
|
60
66
|
|
61
67
|
def visibilities
|
62
68
|
@map.keys
|
63
69
|
end
|
70
|
+
|
71
|
+
class UnknownVisibility < KeyError; end
|
64
72
|
end
|
65
73
|
end
|
@@ -15,13 +15,13 @@ module Hyrax
|
|
15
15
|
when Hyrax::Resource # Valkyrie
|
16
16
|
ResourceVisibilityPropagator.new(source: source)
|
17
17
|
else
|
18
|
-
|
18
|
+
NullVisibilityPropagator.new(source: source)
|
19
19
|
end
|
20
20
|
end
|
21
21
|
|
22
22
|
##
|
23
|
-
# Provides a null/logging implementation of the visibility
|
24
|
-
class
|
23
|
+
# Provides a null/logging implementation of the visibility propagator.
|
24
|
+
class NullVisibilityPropagator
|
25
25
|
##
|
26
26
|
# @!attribute [rw] source
|
27
27
|
# @return [#visibility]
|
@@ -36,8 +36,8 @@ module Hyrax
|
|
36
36
|
##
|
37
37
|
# @return [void]
|
38
38
|
# @raise [RuntimeError] if we're in development mode
|
39
|
-
def
|
40
|
-
message = "Tried to
|
39
|
+
def propagate
|
40
|
+
message = "Tried to propagate visibility to members of #{source} " \
|
41
41
|
"but didn't know what kind of object it is. Model " \
|
42
42
|
"name #{source.try(:model_name)}. Called from #{caller[0]}."
|
43
43
|
|