hyrax 3.0.0.pre.beta2 → 3.0.0.pre.beta3
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 +118 -181
- data/.gitignore +3 -0
- data/.regen +1 -0
- data/.rubocop_fixme.yml +1 -1
- data/README.md +11 -15
- data/app/actors/hyrax/actors/active_fedora_to_valkyrie.rb +59 -0
- data/app/actors/hyrax/actors/add_to_work_actor.rb +28 -5
- data/app/actors/hyrax/actors/apply_order_actor.rb +2 -2
- data/app/actors/hyrax/actors/attach_members_actor.rb +50 -28
- data/app/actors/hyrax/actors/base_actor.rb +17 -2
- data/app/actors/hyrax/actors/cleanup_file_sets_actor.rb +1 -1
- data/app/actors/hyrax/actors/collections_membership_actor.rb +2 -8
- data/app/actors/hyrax/actors/create_with_files_actor.rb +16 -6
- data/app/actors/hyrax/actors/create_with_files_ordered_members_actor.rb +2 -2
- data/app/actors/hyrax/actors/create_with_remote_files_actor.rb +2 -1
- data/app/actors/hyrax/actors/create_with_remote_files_ordered_members_actor.rb +8 -6
- data/app/actors/hyrax/actors/environment.rb +8 -16
- data/app/actors/hyrax/actors/file_actor.rb +75 -13
- data/app/actors/hyrax/actors/interpret_visibility_actor.rb +6 -8
- data/app/actors/hyrax/actors/valkyrie_to_active_fedora.rb +60 -0
- data/app/assets/javascripts/hyrax/collections.js +5 -4
- data/app/assets/javascripts/hyrax/nav_safety.js +4 -2
- data/app/assets/javascripts/hyrax/proxy_rights.js +8 -0
- data/app/assets/stylesheets/fileupload/jquery.fileupload-ui.scss +1 -15
- data/app/assets/stylesheets/hyrax/_collections.scss +1 -1
- data/app/assets/stylesheets/hyrax/_home-page.scss +6 -0
- data/app/assets/stylesheets/hyrax/_users.scss +11 -0
- data/app/assets/stylesheets/hyrax/_viewer.scss +14 -3
- data/app/controllers/concerns/hyrax/breadcrumbs.rb +2 -0
- data/app/controllers/concerns/hyrax/collections_controller_behavior.rb +1 -1
- data/app/controllers/concerns/hyrax/embargoes_controller_behavior.rb +2 -1
- data/app/controllers/concerns/hyrax/leases_controller_behavior.rb +2 -1
- data/app/controllers/concerns/hyrax/local_file_downloads_controller_behavior.rb +2 -1
- data/app/controllers/hyrax/batch_edits_controller.rb +3 -3
- data/app/controllers/hyrax/dashboard/collections_controller.rb +16 -5
- data/app/controllers/hyrax/dashboard_controller.rb +9 -0
- data/app/controllers/hyrax/depositors_controller.rb +4 -6
- data/app/controllers/hyrax/downloads_controller.rb +1 -1
- data/app/controllers/hyrax/file_sets_controller.rb +3 -2
- data/app/controllers/hyrax/homepage_controller.rb +1 -1
- data/app/controllers/hyrax/my/works_controller.rb +2 -2
- data/app/controllers/hyrax/my_controller.rb +2 -2
- data/app/controllers/hyrax/permissions_controller.rb +1 -1
- data/app/controllers/hyrax/single_use_links_viewer_controller.rb +1 -1
- data/app/controllers/hyrax/workflow_actions_controller.rb +1 -1
- data/app/forms/hyrax/forms/admin_set_form.rb +8 -0
- data/app/forms/hyrax/forms/batch_edit_form.rb +1 -1
- data/app/forms/hyrax/forms/collection_form.rb +34 -3
- data/app/forms/hyrax/forms/file_set_edit_form.rb +1 -1
- data/app/forms/hyrax/forms/work_form.rb +34 -7
- data/app/forms/hyrax/forms/workflow_responsibility_form.rb +0 -4
- data/app/helpers/hyrax/hyrax_helper_behavior.rb +3 -4
- data/app/helpers/hyrax/iiif_helper.rb +8 -0
- data/app/indexers/hyrax/admin_set_indexer.rb +1 -1
- data/app/indexers/hyrax/basic_metadata_indexer.rb +1 -1
- data/app/indexers/hyrax/collection_indexer.rb +2 -2
- data/app/indexers/hyrax/file_set_indexer.rb +7 -0
- data/app/indexers/hyrax/indexes_workflow.rb +3 -5
- data/app/indexers/hyrax/valkyrie_indexers/base_indexer.rb +19 -0
- data/app/indexers/hyrax/work_indexer.rb +1 -1
- data/app/jobs/attach_files_to_work_job.rb +9 -1
- data/app/jobs/characterize_job.rb +20 -5
- data/app/jobs/import_url_job.rb +9 -16
- data/app/jobs/ingest_local_file_job.rb +4 -0
- data/app/jobs/visibility_copy_job.rb +3 -17
- data/app/models/admin_set.rb +5 -0
- data/app/models/concerns/hyrax/ability.rb +3 -3
- data/app/models/concerns/hyrax/basic_metadata.rb +6 -2
- data/app/models/concerns/hyrax/collection_behavior.rb +22 -12
- data/app/models/concerns/hyrax/collection_nesting.rb +1 -1
- data/app/models/concerns/hyrax/file_set/characterization.rb +8 -1
- data/app/models/concerns/hyrax/file_set/querying.rb +1 -1
- data/app/models/concerns/hyrax/file_set_behavior.rb +1 -1
- data/app/models/concerns/hyrax/human_readable_type.rb +2 -2
- data/app/models/concerns/hyrax/solr_document/characterization.rb +27 -23
- data/app/models/concerns/hyrax/solr_document/metadata.rb +37 -39
- data/app/models/concerns/hyrax/solr_document_behavior.rb +4 -8
- data/app/models/concerns/hyrax/virus_check.rb +20 -0
- data/app/models/concerns/hyrax/work_behavior.rb +3 -1
- data/app/models/file_download_stat.rb +2 -1
- data/app/models/hyrax/active_job_proxy.rb +43 -0
- data/app/models/hyrax/embargo.rb +21 -0
- data/app/models/hyrax/file_metadata.rb +109 -0
- data/app/models/hyrax/lease.rb +21 -0
- data/app/models/hyrax/permission_template.rb +8 -8
- data/app/models/hyrax/resource.rb +31 -0
- data/app/models/hyrax/statistic.rb +5 -1
- data/app/models/hyrax/uploaded_file.rb +0 -2
- data/app/models/hyrax/virus_scanner.rb +56 -0
- data/app/models/job_io_wrapper.rb +24 -9
- data/app/models/proxy_deposit_request.rb +1 -1
- data/app/models/solr_hit.rb +23 -0
- data/app/presenters/hyrax/admin_set_presenter.rb +1 -1
- data/app/presenters/hyrax/characterization_behavior.rb +2 -2
- data/app/presenters/hyrax/displays_image.rb +25 -7
- data/app/presenters/hyrax/file_set_presenter.rb +3 -3
- data/app/presenters/hyrax/member_presenter_factory.rb +9 -9
- data/app/presenters/hyrax/presenter_factory.rb +1 -4
- data/app/presenters/hyrax/trophy_presenter.rb +1 -1
- data/app/presenters/hyrax/work_show_presenter.rb +3 -3
- data/app/renderers/hyrax/renderers/faceted_attribute_renderer.rb +1 -1
- data/app/search_builders/hyrax/catalog_search_builder.rb +1 -1
- data/app/search_builders/hyrax/collection_search_builder.rb +1 -1
- data/app/search_builders/hyrax/dashboard/nested_collections_search_builder.rb +2 -2
- data/app/search_builders/hyrax/deposit_search_builder.rb +1 -1
- data/app/search_builders/hyrax/my/find_works_search_builder.rb +5 -9
- data/app/search_builders/hyrax/my/highlights_search_builder.rb +1 -3
- data/app/search_builders/hyrax/nested_collections_parent_search_builder.rb +1 -1
- data/app/search_builders/hyrax/parent_collection_search_builder.rb +1 -1
- data/app/services/hyrax/adapters/nesting_index_adapter.rb +6 -6
- data/app/services/hyrax/admin_set_service.rb +3 -11
- data/app/services/hyrax/analytics.rb +6 -6
- data/app/services/hyrax/collection_types/permissions_service.rb +5 -5
- data/app/services/hyrax/collections/permissions_service.rb +2 -2
- data/app/services/hyrax/custom_queries/navigators/child_collections_navigator.rb +39 -0
- data/app/services/hyrax/custom_queries/navigators/child_filesets_navigator.rb +39 -0
- data/app/services/hyrax/custom_queries/navigators/child_works_navigator.rb +39 -0
- data/app/services/hyrax/custom_queries/wings.rb +34 -0
- data/app/services/hyrax/database_migrator.rb +1 -0
- data/app/services/hyrax/derivative_path.rb +1 -1
- data/app/services/hyrax/embargo_manager.rb +100 -0
- data/app/services/hyrax/file_set_csv_service.rb +2 -0
- data/app/services/hyrax/file_set_visibility_propagator.rb +41 -0
- data/app/services/hyrax/graph_exporter.rb +1 -1
- data/app/services/hyrax/lease_manager.rb +71 -0
- data/app/services/hyrax/persist_directly_contained_output_file_service.rb +1 -1
- data/app/services/hyrax/query_service.rb +0 -0
- data/app/services/hyrax/resource_visibility_propagator.rb +50 -0
- data/app/services/hyrax/solr_query_builder_service.rb +71 -0
- data/app/services/hyrax/solr_service.rb +144 -0
- data/app/services/hyrax/statistics/file_sets/by_format.rb +1 -1
- data/app/services/hyrax/statistics/term_query.rb +7 -12
- data/app/services/hyrax/statistics/works/by_resource_type.rb +1 -1
- data/app/services/hyrax/thumbnail_path_service.rb +4 -3
- data/app/services/hyrax/versioning_service.rb +74 -19
- data/app/services/hyrax/virus_checker_service.rb +52 -0
- data/app/services/hyrax/visibility_intention_applicator.rb +43 -0
- data/app/services/hyrax/visibility_map.rb +65 -0
- data/app/services/hyrax/visibility_propagator.rb +19 -0
- data/app/services/hyrax/visibility_reader.rb +43 -0
- data/app/services/hyrax/visibility_writer.rb +43 -0
- data/app/services/hyrax/work_query_service.rb +3 -3
- data/app/services/hyrax/workflow/deposited_notification.rb +1 -1
- data/app/services/hyrax/works/migration_service.rb +33 -0
- data/app/views/hyrax/admin/admin_sets/_form.html.erb +6 -5
- data/app/views/hyrax/admin/admin_sets/_form_visibility.html.erb +2 -1
- data/app/views/hyrax/admin/admin_sets/_form_workflow.erb +1 -1
- data/app/views/hyrax/base/_attribute_rows.html.erb +2 -0
- data/app/views/hyrax/base/_attributes.html.erb +3 -3
- data/app/views/hyrax/base/_citations.html.erb +4 -4
- data/app/views/hyrax/base/_file_manager_actions.html.erb +2 -2
- data/app/views/hyrax/base/_file_manager_member_resource_options.html.erb +2 -2
- data/app/views/hyrax/base/_form_child_work_relationships.html.erb +1 -1
- data/app/views/hyrax/base/_form_files.html.erb +11 -9
- data/app/views/hyrax/base/_form_member_of_collections.html.erb +1 -1
- data/app/views/hyrax/base/_form_permission.html.erb +1 -2
- data/app/views/hyrax/base/_form_progress.html.erb +2 -2
- data/app/views/hyrax/base/_form_share.html.erb +8 -11
- data/app/views/hyrax/base/_show_actions.html.erb +3 -3
- data/app/views/hyrax/base/_social_media.html.erb +0 -13
- data/app/views/hyrax/base/_work_button_row.html.erb +7 -7
- data/app/views/hyrax/base/_workflow_actions.html.erb +4 -4
- data/app/views/hyrax/base/file_manager.html.erb +2 -2
- data/app/views/hyrax/base/iiif_viewers/_universal_viewer.html.erb +5 -2
- data/app/views/hyrax/base/inspect_work.html.erb +13 -13
- data/app/views/hyrax/base/unauthorized.html.erb +4 -4
- data/app/views/hyrax/batch_edits/_check_all.html.erb +1 -1
- data/app/views/hyrax/batch_edits/_delete_selected.html.erb +1 -1
- data/app/views/hyrax/batch_edits/edit.html.erb +11 -11
- data/app/views/hyrax/citations/work.html.erb +1 -1
- data/app/views/hyrax/collections/_show_document_list.html.erb +1 -1
- data/app/views/hyrax/collections/_sort_and_per_page.html.erb +4 -4
- data/app/views/hyrax/dashboard/collections/_form.html.erb +6 -5
- data/app/views/hyrax/dashboard/collections/_form_branding.html.erb +10 -10
- data/app/views/hyrax/dashboard/collections/_form_share.html.erb +5 -5
- data/app/views/hyrax/dashboard/collections/_show_descriptions.html.erb +1 -1
- data/app/views/hyrax/dashboard/collections/_show_document_list.html.erb +6 -6
- data/app/views/hyrax/dashboard/collections/_show_document_list_menu.html.erb +1 -1
- data/app/views/hyrax/dashboard/collections/_show_document_list_row.html.erb +3 -3
- data/app/views/hyrax/dashboard/collections/_sort_and_per_page.html.erb +2 -3
- data/app/views/hyrax/dashboard/collections/_work_action_menu.html.erb +8 -8
- data/app/views/hyrax/dashboard/collections/edit.html.erb +2 -2
- data/app/views/hyrax/dashboard/profiles/_edit_primary.html.erb +8 -8
- data/app/views/hyrax/dashboard/sidebar/_activity.html.erb +2 -0
- data/app/views/hyrax/dashboard/sidebar/_configuration.html.erb +4 -1
- data/app/views/hyrax/dashboard/sidebar/_menu_partials.html.erb +3 -0
- data/app/views/hyrax/dashboard/sidebar/_repository_content.html.erb +2 -0
- data/app/views/hyrax/dashboard/sidebar/_tasks.html.erb +2 -0
- data/app/views/hyrax/dashboard/works/_default_group.html.erb +4 -4
- data/app/views/hyrax/dashboard/works/_list_works.html.erb +1 -1
- data/app/views/hyrax/depositors/_modal_proxy_deny.html.erb +14 -0
- data/app/views/hyrax/depositors/index.html.erb +3 -0
- data/app/views/hyrax/embargoes/_list_expired_active_embargoes.html.erb +1 -1
- data/app/views/hyrax/file_sets/_actions.html.erb +1 -1
- data/app/views/hyrax/file_sets/_asset_deleted_flash.html.erb +1 -1
- data/app/views/hyrax/file_sets/_asset_saved_flash.html.erb +5 -6
- data/app/views/hyrax/file_sets/_asset_updated_flash.html.erb +2 -1
- data/app/views/hyrax/file_sets/_descriptions.html.erb +2 -2
- data/app/views/hyrax/file_sets/_extra_fields_modal.html.erb +3 -3
- data/app/views/hyrax/file_sets/_form.html.erb +1 -1
- data/app/views/hyrax/file_sets/_permission.html.erb +2 -1
- data/app/views/hyrax/file_sets/_permission_form.html.erb +9 -9
- data/app/views/hyrax/file_sets/_show_actions.html.erb +4 -4
- data/app/views/hyrax/file_sets/_show_details.html.erb +7 -7
- data/app/views/hyrax/file_sets/_versioning.html.erb +3 -3
- data/app/views/hyrax/file_sets/edit.html.erb +4 -3
- data/app/views/hyrax/file_sets/media_display/_audio.html.erb +2 -2
- data/app/views/hyrax/file_sets/media_display/_video.html.erb +2 -2
- data/app/views/hyrax/file_sets/proxy.html.erb +2 -2
- data/app/views/hyrax/my/_sort_and_per_page.html.erb +1 -1
- data/app/views/hyrax/my/collections/_modal_delete_selected_collections.html.erb +4 -1
- data/app/views/hyrax/my/collections/index.html.erb +1 -1
- data/app/views/hyrax/my/index.html.erb +1 -1
- data/app/views/hyrax/my/works/_default_group.html.erb +4 -4
- data/app/views/hyrax/my/works/_list_works.html.erb +3 -3
- data/app/views/hyrax/my/works/index.html.erb +1 -1
- data/app/views/hyrax/notifications/index.html.erb +1 -1
- data/app/views/hyrax/operations/index.html.erb +4 -4
- data/app/views/hyrax/pages/_form.html.erb +61 -60
- data/app/views/hyrax/permissions/confirm_access.html.erb +1 -1
- data/app/views/hyrax/single_use_links_viewer/single_use_error.html.erb +3 -7
- data/app/views/hyrax/static/mendeley.html.erb +2 -4
- data/app/views/hyrax/static/zotero.html.erb +2 -4
- data/app/views/hyrax/transfers/_received.html.erb +10 -10
- data/app/views/hyrax/transfers/_sent.html.erb +6 -6
- data/app/views/hyrax/uploads/_js_templates.html.erb +7 -7
- data/app/views/hyrax/uploads/_js_templates_branding.html.erb +8 -8
- data/app/views/hyrax/users/_activity_log.html.erb +25 -22
- data/app/views/hyrax/users/_left_sidebar.html.erb +1 -1
- data/app/views/hyrax/users/_proxies.html.erb +1 -1
- data/app/views/hyrax/users/_search_form.html.erb +3 -3
- data/app/views/hyrax/users/_vitals.html.erb +1 -1
- data/app/views/hyrax/users/index.html.erb +6 -6
- data/app/views/records/edit_fields/_abstract.html.erb +5 -0
- data/app/views/records/edit_fields/_access_right.html.erb +5 -0
- data/app/views/records/edit_fields/_alt_title.html.erb +3 -0
- data/app/views/records/edit_fields/_title.html.erb +1 -0
- data/app/views/records/show_fields/_based_near.html.erb +1 -1
- data/app/views/records/show_fields/_creator.html.erb +1 -1
- data/app/views/records/show_fields/_keyword.html.erb +1 -1
- data/app/views/records/show_fields/_language.html.erb +1 -1
- data/app/views/records/show_fields/_publisher.html.erb +1 -1
- data/app/views/records/show_fields/_resource_type.html.erb +1 -1
- data/app/views/records/show_fields/_subject.html.erb +1 -1
- data/config/initializers/indexing_adapter_initializer.rb +16 -0
- data/config/initializers/samvera-nesting_indexer_initializer.rb +3 -3
- data/config/locales/hyrax.de.yml +303 -24
- data/config/locales/hyrax.en.yml +279 -0
- data/config/locales/hyrax.es.yml +284 -5
- data/config/locales/hyrax.fr.yml +280 -1
- data/config/locales/hyrax.it.yml +279 -0
- data/config/locales/hyrax.pt-BR.yml +279 -0
- data/config/locales/hyrax.zh.yml +279 -0
- data/hyrax.gemspec +10 -11
- data/lib/generators/hyrax/config_generator.rb +6 -0
- data/lib/generators/hyrax/install_generator.rb +5 -0
- data/lib/generators/hyrax/riiif_generator.rb +2 -2
- data/lib/generators/hyrax/templates/catalog_controller.rb +71 -71
- data/lib/generators/hyrax/templates/config/analytics.yml +5 -5
- data/lib/generators/hyrax/templates/config/initializers/hyrax.rb +11 -1
- data/lib/generators/hyrax/templates/config/initializers/riiif.rb +3 -3
- data/lib/generators/hyrax/templates/config/solr_wrapper_valkyrie_test.yml +7 -0
- data/lib/generators/hyrax/templates/config/valkyrie_index.yml +12 -0
- data/lib/generators/hyrax/templates/package.json +17 -0
- data/lib/generators/hyrax/templates/uv-config.json +3 -0
- data/lib/generators/hyrax/templates/uv.html +87 -0
- data/lib/generators/hyrax/work/templates/feature_spec.rb.erb +0 -1
- data/lib/hyrax.rb +17 -1
- data/lib/hyrax/configuration.rb +34 -20
- data/lib/hyrax/engine.rb +12 -10
- data/lib/hyrax/errors.rb +4 -0
- data/lib/hyrax/transactions/container.rb +13 -0
- data/lib/hyrax/transactions/create_work.rb +11 -0
- data/lib/hyrax/transactions/steps/apply_collection_permission_template.rb +32 -0
- data/lib/hyrax/transactions/steps/apply_permission_template.rb +2 -1
- data/lib/hyrax/transactions/steps/apply_visibility.rb +39 -0
- data/lib/hyrax/version.rb +1 -1
- data/lib/tasks/migrate.rake +6 -0
- data/lib/tasks/universal_viewer.rake +15 -0
- data/lib/valkyrie/indexing/solr/indexing_adapter.rb +102 -0
- data/lib/valkyrie/indexing_adapter.rb +29 -0
- data/lib/wings.rb +13 -4
- data/lib/wings/active_fedora_converter.rb +129 -15
- data/lib/wings/converter_value_mapper.rb +111 -0
- data/lib/wings/hydra/pcdm/models/concerns/collection_valkyrie_behavior.rb +27 -0
- data/lib/wings/hydra/pcdm/models/concerns/object_valkyrie_behavior.rb +27 -0
- data/lib/wings/hydra/pcdm/models/concerns/pcdm_valkyrie_behavior.rb +172 -0
- data/lib/wings/hydra/works/models/concerns/collection_valkyrie_behavior.rb +30 -0
- data/lib/wings/hydra/works/models/concerns/file_set_valkyrie_behavior.rb +30 -0
- data/lib/wings/hydra/works/models/concerns/work_valkyrie_behavior.rb +59 -0
- data/lib/wings/hydra/works/services/add_file_metadata_to_file_set.rb +113 -0
- data/lib/wings/model_transformer.rb +172 -47
- data/lib/wings/models/concerns/collection_behavior.rb +38 -0
- data/lib/wings/models/multi_checksum.rb +18 -0
- data/lib/wings/services/file_metadata_builder.rb +81 -0
- data/lib/wings/services/id_converter_service.rb +14 -0
- data/lib/wings/{value_mapper.rb → transformer_value_mapper.rb} +24 -5
- data/lib/wings/valkyrie/persister.rb +47 -24
- data/lib/wings/valkyrie/query_service.rb +141 -6
- data/lib/wings/valkyrie/storage/active_fedora.rb +27 -0
- data/spec/abilities/proxies_and_transfer_abilities_spec.rb +50 -10
- data/spec/actors/hyrax/actors/active_fedora_to_valkyrie_spec.rb +70 -0
- data/spec/actors/hyrax/actors/attach_members_actor_spec.rb +55 -10
- data/spec/actors/hyrax/actors/create_with_remote_files_actor_spec.rb +14 -0
- data/spec/actors/hyrax/actors/create_with_remote_files_ordered_members_actor_spec.rb +22 -30
- data/spec/actors/hyrax/actors/file_actor_spec.rb +200 -84
- data/spec/actors/hyrax/actors/file_set_actor_spec.rb +1 -1
- data/spec/actors/hyrax/actors/generic_work_actor_spec.rb +2 -6
- data/spec/actors/hyrax/actors/interpret_visibility_actor_spec.rb +1 -1
- data/spec/actors/hyrax/actors/ordered_members_actor_spec.rb +1 -1
- data/spec/actors/hyrax/actors/valkyrie_to_active_fedora_spec.rb +70 -0
- data/spec/controllers/catalog_controller_spec.rb +2 -2
- data/spec/controllers/hyrax/api/items_controller_spec.rb +9 -15
- data/spec/controllers/hyrax/collections_controller_spec.rb +6 -2
- data/spec/controllers/hyrax/dashboard/collections_controller_spec.rb +53 -4
- data/spec/controllers/hyrax/depositors_controller_spec.rb +3 -3
- data/spec/controllers/hyrax/downloads_controller_spec.rb +11 -2
- data/spec/controllers/hyrax/file_sets_controller_spec.rb +40 -2
- data/spec/controllers/hyrax/generic_works_controller_spec.rb +13 -3
- data/spec/controllers/hyrax/homepage_controller_spec.rb +3 -3
- data/spec/controllers/hyrax/single_use_links_viewer_controller_spec.rb +1 -2
- data/spec/factories/admin_sets_lw.rb +1 -1
- data/spec/factories/collections.rb +1 -1
- data/spec/factories/hyrax_embargo.rb +16 -0
- data/spec/factories/hyrax_lease.rb +16 -0
- data/spec/factories/hyrax_resource.rb +16 -0
- data/spec/factory_tests/adminsets_factory_spec.rb +4 -4
- data/spec/factory_tests/collections_factory_spec.rb +3 -3
- data/spec/features/actor_stack_spec.rb +64 -0
- data/spec/features/batch_create_spec.rb +1 -2
- data/spec/features/collection_multi_membership_spec.rb +1 -0
- data/spec/features/collection_spec.rb +2 -2
- data/spec/features/collection_type_spec.rb +1 -0
- data/spec/features/create_work_spec.rb +15 -6
- data/spec/features/dashboard/collection_spec.rb +103 -14
- data/spec/features/edit_content_block_admin_spec.rb +3 -3
- data/spec/features/edit_pages_admin.spec.rb +62 -0
- data/spec/features/proxy_spec.rb +21 -0
- data/spec/features/static_pages_spec.rb +1 -1
- data/spec/features/work_show_spec.rb +7 -3
- data/spec/fixtures/sample-file.pdf +0 -0
- data/spec/fixtures/updated-file.txt +1 -0
- data/spec/forms/hyrax/forms/batch_upload_form_spec.rb +5 -2
- data/spec/forms/hyrax/forms/collection_form_spec.rb +5 -2
- data/spec/forms/hyrax/forms/work_form_spec.rb +18 -5
- data/spec/forms/hyrax/generic_work_form_spec.rb +4 -4
- data/spec/helpers/hyrax/collections_helper_spec.rb +8 -8
- data/spec/helpers/hyrax/dashboard_helper_behavior_spec.rb +7 -8
- data/spec/helpers/hyrax/iiif_helper_spec.rb +16 -0
- data/spec/helpers/hyrax_helper_spec.rb +4 -4
- data/spec/hyrax/transactions/create_work_spec.rb +68 -0
- data/spec/hyrax/transactions/steps/apply_collection_permission_template_spec.rb +59 -0
- data/spec/hyrax/transactions/steps/apply_visibility_spec.rb +82 -0
- data/spec/indexers/hyrax/admin_set_indexer_spec.rb +15 -0
- data/spec/indexers/hyrax/file_set_indexer_spec.rb +26 -1
- data/spec/indexers/hyrax/valkyrie_indexers/base_indexer_spec.rb +16 -0
- data/spec/jobs/import_url_job_spec.rb +49 -2
- data/spec/jobs/ingest_local_file_job_spec.rb +25 -1
- data/spec/jobs/visibility_copy_job_spec.rb +46 -0
- data/spec/lib/hyrax/configuration_spec.rb +17 -11
- data/spec/lib/hyrax/redis_event_store_spec.rb +1 -1
- data/spec/matcher_tests/match_valkyrie_ids_with_af_ids_spec.rb +40 -0
- data/spec/models/file_set_spec.rb +4 -3
- data/spec/models/hyrax/embargo_spec.rb +27 -0
- data/spec/models/hyrax/file_metadata_spec.rb +110 -0
- data/spec/models/hyrax/lease_spec.rb +25 -0
- data/spec/models/hyrax/permission_template_spec.rb +2 -2
- data/spec/models/hyrax/resource_spec.rb +60 -0
- data/spec/models/hyrax/virus_scanner_spec.rb +50 -0
- data/spec/models/job_io_wrapper_spec.rb +63 -0
- data/spec/models/solr_hit_spec.rb +9 -0
- data/spec/models/user_spec.rb +1 -1
- data/spec/presenters/hyrax/file_set_presenter_spec.rb +11 -7
- data/spec/presenters/hyrax/presenter_factory_spec.rb +2 -2
- data/spec/presenters/hyrax/work_show_presenter_spec.rb +1 -1
- data/spec/requests/riiif_spec.rb +2 -2
- data/spec/search_builders/hyrax/my/find_works_search_builder_spec.rb +3 -3
- data/spec/services/hyrax/adapters/nesting_index_adapter_spec.rb +5 -6
- data/spec/services/hyrax/admin_set_service_spec.rb +2 -2
- data/spec/services/hyrax/custom_queries/navigators/child_collections_navigator_spec.rb +41 -0
- data/spec/services/hyrax/custom_queries/navigators/child_filesets_navigator_spec.rb +41 -0
- data/spec/services/hyrax/custom_queries/navigators/child_works_navigator_spec.rb +79 -0
- data/spec/services/hyrax/custom_queries/wings.rb +52 -0
- data/spec/services/hyrax/embargo_manager_spec.rb +123 -0
- data/spec/services/hyrax/embargo_service_spec.rb +2 -2
- data/spec/services/hyrax/file_set_visibility_propagator_spec.rb +59 -0
- data/spec/services/hyrax/resource_visibility_propagator_spec.rb +71 -0
- data/spec/services/hyrax/solr_query_builder_service_spec.rb +17 -0
- data/spec/services/hyrax/solr_service_spec.rb +218 -0
- data/spec/services/hyrax/thumbnail_path_service_spec.rb +6 -0
- data/spec/services/hyrax/versioning_service_spec.rb +35 -15
- data/spec/services/hyrax/visibility_intention_applicator_spec.rb +69 -0
- data/spec/services/hyrax/visibility_reader_spec.rb +38 -0
- data/spec/services/hyrax/visibility_writer_spec.rb +47 -0
- data/spec/services/hyrax/workflow/status_list_service_spec.rb +1 -13
- data/spec/services/hyrax/works/migration_service_spec.rb +29 -0
- data/spec/spec_helper.rb +24 -23
- data/spec/support/clean_solr.rb +7 -0
- data/spec/support/create_for_repository.rb +25 -0
- data/spec/support/factory_helpers.rb +3 -1
- data/spec/support/fakes/fake_actor.rb +21 -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 +11 -0
- data/spec/support/matchers/permission.rb +22 -0
- data/spec/support/valkyrie_indexing.rb +1 -0
- data/spec/test_app_templates/Gemfile.extra +0 -2
- data/spec/test_app_templates/lib/generators/test_app_generator.rb +5 -6
- data/spec/valkyrie/indexing/solr/indexing_adapter_spec.rb +41 -0
- data/spec/valkyrie/indexing_adapter_spec.rb +25 -0
- data/spec/views/hyrax/base/_attributes.html.erb_spec.rb +1 -1
- data/spec/views/hyrax/base/_social_media.html.erb_spec.rb +0 -1
- data/spec/views/hyrax/base/show.html.erb_spec.rb +2 -2
- data/spec/views/hyrax/collections/_sort_and_per_page.html.erb_spec.rb +1 -1
- data/spec/views/hyrax/dashboard/_sidebar.html.erb_spec.rb +39 -0
- data/spec/views/hyrax/dashboard/collections/_sort_and_per_page.html.erb_spec.rb +1 -1
- data/spec/views/hyrax/file_sets/_versioning.html.erb_spec.rb +1 -0
- data/spec/views/hyrax/my/collections/_list_collections.html.erb_spec.rb +2 -2
- data/spec/views/records/edit_fields/_alt_title.html.erb_spec.rb +26 -0
- data/spec/views/records/edit_fields/_title.html.erb_spec.rb +24 -0
- data/spec/wings/active_fedora_converter_spec.rb +136 -1
- data/spec/wings/converter_value_mapper_spec.rb +23 -0
- data/spec/wings/hydra/pcdm/models/concerns/collection_valkyrie_behavior_spec.rb +41 -0
- data/spec/wings/hydra/pcdm/models/concerns/object_valkyrie_behavior_spec.rb +19 -0
- data/spec/wings/hydra/pcdm/models/concerns/pcdm_valkyrie_behavior_spec.rb +442 -0
- data/spec/wings/hydra/works/models/concerns/collection_valkyrie_behavior_spec.rb +22 -0
- data/spec/wings/hydra/works/models/concerns/file_set_valkyrie_behavior_spec.rb +90 -0
- data/spec/wings/hydra/works/models/concerns/work_valkyrie_behavior_spec.rb +218 -0
- data/spec/wings/model_transformer_spec.rb +167 -112
- data/spec/wings/models/concerns/collection_behavior_spec.rb +120 -0
- data/spec/wings/services/file_metadata_builder_spec.rb +39 -0
- data/spec/wings/services/id_converter_service_spec.rb +24 -0
- data/spec/wings/{value_mapper_spec.rb → transformer_value_mapper_spec.rb} +2 -2
- data/spec/wings/valkyrie/persister_spec.rb +544 -53
- data/spec/wings/valkyrie/query_service_spec.rb +381 -4
- data/spec/wings_helper.rb +4 -0
- data/template.rb +1 -1
- metadata +205 -49
- data/.travis.yml +0 -36
- data/lib/wings/resource_factory.rb +0 -8
@@ -5,7 +5,10 @@ module Hyrax
|
|
5
5
|
# @return [Boolean] true if create was successful
|
6
6
|
def create(env)
|
7
7
|
work_ids = env.attributes.delete(:in_works_ids)
|
8
|
-
|
8
|
+
|
9
|
+
can_edit_works?(env, work_ids) &&
|
10
|
+
next_actor.create(env) &&
|
11
|
+
add_to_works(env, work_ids)
|
9
12
|
end
|
10
13
|
|
11
14
|
# @param [Hyrax::Actors::Environment] env
|
@@ -21,6 +24,15 @@ module Hyrax
|
|
21
24
|
env.current_ability.can?(:edit, work) && env.current_ability.can?(:edit, env.curation_concern)
|
22
25
|
end
|
23
26
|
|
27
|
+
def can_edit_works?(env, work_ids)
|
28
|
+
unless Array(work_ids).all? { |work_id| env.current_ability.can?(:edit, work_id) }
|
29
|
+
add_permissions_error(env.curation_concern)
|
30
|
+
return false
|
31
|
+
end
|
32
|
+
|
33
|
+
true
|
34
|
+
end
|
35
|
+
|
24
36
|
def add_to_works(env, new_work_ids)
|
25
37
|
return true if new_work_ids.nil?
|
26
38
|
cleanup_ids_to_remove_from_curation_concern(env, new_work_ids)
|
@@ -30,7 +42,7 @@ module Hyrax
|
|
30
42
|
|
31
43
|
def cleanup_ids_to_remove_from_curation_concern(env, new_work_ids)
|
32
44
|
(env.curation_concern.in_works_ids - new_work_ids).each do |old_id|
|
33
|
-
work =
|
45
|
+
work = Hyrax.query_service.find_by_alternate_identifier(alternate_identifier: old_id, use_valkyrie: false)
|
34
46
|
work.ordered_members.delete(env.curation_concern)
|
35
47
|
work.members.delete(env.curation_concern)
|
36
48
|
work.save!
|
@@ -39,16 +51,27 @@ module Hyrax
|
|
39
51
|
|
40
52
|
def add_new_work_ids_not_already_in_curation_concern(env, new_work_ids)
|
41
53
|
# add to new so long as the depositor for the parent and child matches, otherwise inject an error
|
42
|
-
(new_work_ids
|
43
|
-
work = ::ActiveFedora::Base.find(work_id)
|
54
|
+
new_works_for(env, new_work_ids).each do |work|
|
44
55
|
if can_edit_both_works?(env, work)
|
45
56
|
work.ordered_members << env.curation_concern
|
46
57
|
work.save!
|
47
58
|
else
|
48
|
-
env.curation_concern
|
59
|
+
add_permissions_error(env.curation_concern)
|
49
60
|
end
|
50
61
|
end
|
51
62
|
end
|
63
|
+
|
64
|
+
def new_works_for(env, new_work_ids)
|
65
|
+
query_service = Valkyrie.config.metadata_adapter.query_service
|
66
|
+
|
67
|
+
(new_work_ids - env.curation_concern.in_works_ids).map do |work_id|
|
68
|
+
query_service.find_by_alternate_identifier(alternate_identifier: work_id, use_valkyrie: false)
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
72
|
+
def add_permissions_error(work)
|
73
|
+
work.errors[:in_works_ids] << "Works can only be related to each other if user has ability to edit both."
|
74
|
+
end
|
52
75
|
end
|
53
76
|
end
|
54
77
|
end
|
@@ -27,7 +27,7 @@ module Hyrax
|
|
27
27
|
# @see Hyrax::Actors::AddToWorkActor for duplication
|
28
28
|
def cleanup_ids_to_remove_from_curation_concern(curation_concern, ordered_member_ids)
|
29
29
|
(curation_concern.ordered_member_ids - ordered_member_ids).each do |old_id|
|
30
|
-
work =
|
30
|
+
work = Hyrax.query_service.find_by_alternate_identifier(alternate_identifier: old_id, use_valkyrie: false)
|
31
31
|
curation_concern.ordered_members.delete(work)
|
32
32
|
curation_concern.members.delete(work)
|
33
33
|
end
|
@@ -35,7 +35,7 @@ module Hyrax
|
|
35
35
|
|
36
36
|
def add_new_work_ids_not_already_in_curation_concern(env, ordered_member_ids)
|
37
37
|
(ordered_member_ids - env.curation_concern.ordered_member_ids).each do |work_id|
|
38
|
-
work =
|
38
|
+
work = Hyrax.query_service.find_by_alternate_identifier(alternate_identifier: work_id, use_valkyrie: false)
|
39
39
|
if can_edit_both_works?(env, work)
|
40
40
|
env.curation_concern.ordered_members << work
|
41
41
|
env.curation_concern.save!
|
@@ -11,6 +11,9 @@ module Hyrax
|
|
11
11
|
# The goal of this actor is to mutate the ordered_members with as few writes
|
12
12
|
# as possible, because changing ordered_members is slow. This class only
|
13
13
|
# writes changes, not the full ordered list.
|
14
|
+
#
|
15
|
+
# The `env` for this actor may contain a `Valkyrie::Resource` or an
|
16
|
+
# `ActiveFedora::Base` model, as required by the
|
14
17
|
class AttachMembersActor < Hyrax::Actors::AbstractActor
|
15
18
|
# @param [Hyrax::Actors::Environment] env
|
16
19
|
# @return [Boolean] true if update was successful
|
@@ -24,43 +27,62 @@ module Hyrax
|
|
24
27
|
|
25
28
|
# Attaches any unattached members. Deletes those that are marked _delete
|
26
29
|
# @param [Hash<Hash>] a collection of members
|
30
|
+
#
|
31
|
+
# rubocop:disable Metrics/CyclomaticComplexity
|
32
|
+
# Complexity in this method is incleased by dual AF/Valkyrie support
|
33
|
+
# when removing AF, we should be able to reduce it substantially.
|
27
34
|
def assign_nested_attributes_for_collection(env, attributes_collection)
|
28
35
|
return true unless attributes_collection
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
36
|
+
|
37
|
+
attributes = extract_attributes(attributes_collection)
|
38
|
+
cast_concern = !env.curation_concern.is_a?(Valkyrie::Resource)
|
39
|
+
resource = cast_concern ? env.curation_concern.valkyrie_resource : env.curation_concern
|
40
|
+
inserts, destroys = split_inserts_and_destroys(attributes, resource)
|
41
|
+
|
42
|
+
# short circuit to avoid casting unnecessarily
|
43
|
+
return true if destroys.empty? && inserts.empty?
|
44
|
+
# we fail silently if we can't insert the object; this is for legacy
|
45
|
+
# compatibility
|
46
|
+
return true unless check_permissions(ability: env.current_ability,
|
47
|
+
inserts: inserts,
|
48
|
+
destroys: destroys)
|
49
|
+
|
50
|
+
update_members(resource: resource, inserts: inserts, destroys: destroys)
|
51
|
+
|
52
|
+
return true unless cast_concern
|
53
|
+
env.curation_concern = Hyrax.metadata_adapter
|
54
|
+
.resource_factory
|
55
|
+
.from_resource(resource: resource)
|
41
56
|
end
|
57
|
+
# rubocop:enable Metrics/CyclomaticComplexity
|
58
|
+
|
59
|
+
def extract_attributes(collection)
|
60
|
+
collection
|
61
|
+
.sort_by { |i, _| i.to_i }
|
62
|
+
.map { |_, attributes| attributes }
|
63
|
+
end
|
64
|
+
|
65
|
+
def split_inserts_and_destroys(attributes, resource)
|
66
|
+
current_member_ids = resource.member_ids.map(&:id)
|
67
|
+
|
68
|
+
destroys = attributes.select do |col_hash|
|
69
|
+
ActiveModel::Type::Boolean.new.cast(col_hash['_destroy'])
|
70
|
+
end
|
71
|
+
|
72
|
+
inserts = (attributes - destroys).map { |h| h['id'] }.compact - current_member_ids
|
73
|
+
destroys = destroys.map { |h| h['id'] }.compact & current_member_ids
|
42
74
|
|
43
|
-
|
44
|
-
# along side the FileSets on the show page
|
45
|
-
def add(env, id)
|
46
|
-
member = ActiveFedora::Base.find(id)
|
47
|
-
return unless env.current_ability.can?(:edit, member)
|
48
|
-
env.curation_concern.ordered_members << member
|
75
|
+
[inserts, destroys]
|
49
76
|
end
|
50
77
|
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
curation_concern.ordered_members.delete(member)
|
55
|
-
curation_concern.members.delete(member)
|
78
|
+
def update_members(resource:, inserts: [], destroys: [])
|
79
|
+
resource.member_ids += inserts.map { |id| Valkyrie::ID.new(id) }
|
80
|
+
resource.member_ids -= destroys.map { |id| Valkyrie::ID.new(id) }
|
56
81
|
end
|
57
82
|
|
58
|
-
|
59
|
-
|
60
|
-
def has_destroy_flag?(hash)
|
61
|
-
ActiveFedora::Type::Boolean.new.cast(hash['_destroy'])
|
83
|
+
def check_permissions(ability:, inserts: [], **_opts)
|
84
|
+
inserts.all? { |id| ability.can?(:edit, id) }
|
62
85
|
end
|
63
|
-
# rubocop:enable Naming/PredicateName
|
64
86
|
end
|
65
87
|
end
|
66
88
|
end
|
@@ -18,7 +18,10 @@ module Hyrax
|
|
18
18
|
def create(env)
|
19
19
|
apply_creation_data_to_curation_concern(env)
|
20
20
|
apply_save_data_to_curation_concern(env)
|
21
|
-
|
21
|
+
|
22
|
+
save(env, use_valkyrie: false) &&
|
23
|
+
next_actor.create(env) &&
|
24
|
+
run_callbacks(:after_create_concern, env)
|
22
25
|
end
|
23
26
|
|
24
27
|
# @param [Hyrax::Actors::Environment] env
|
@@ -64,7 +67,19 @@ module Hyrax
|
|
64
67
|
env.curation_concern.date_uploaded = TimeService.time_in_utc
|
65
68
|
end
|
66
69
|
|
67
|
-
def save(env)
|
70
|
+
def save(env, use_valkyrie: false)
|
71
|
+
return env.curation_concern.save unless use_valkyrie
|
72
|
+
|
73
|
+
env.curation_concern.embargo&.save
|
74
|
+
env.curation_concern.lease&.save
|
75
|
+
|
76
|
+
resource = Hyrax.persister.save(resource: env.curation_concern.valkyrie_resource)
|
77
|
+
|
78
|
+
env.curation_concern = Hyrax.metadata_adapter.resource_factory.from_resource(resource: resource)
|
79
|
+
rescue Wings::Valkyrie::Persister::FailedSaveError => _err
|
80
|
+
# for now, just hit the validation error again
|
81
|
+
# later we should capture the _err.obj and pass it back
|
82
|
+
# through the environment
|
68
83
|
env.curation_concern.save
|
69
84
|
end
|
70
85
|
|
@@ -22,7 +22,7 @@ module Hyrax
|
|
22
22
|
curation_concern.list_source.destroy
|
23
23
|
# Remove Work from Solr after it was removed from Fedora so that the
|
24
24
|
# in_objects lookup does not break when FileSets are destroyed.
|
25
|
-
|
25
|
+
Hyrax::SolrService.delete(curation_concern.id)
|
26
26
|
fs.each(&:destroy)
|
27
27
|
end
|
28
28
|
end
|
@@ -45,7 +45,8 @@ module Hyrax
|
|
45
45
|
attributes_collection.each do |attributes|
|
46
46
|
next if attributes['id'].blank?
|
47
47
|
if existing_collections.include?(attributes['id'])
|
48
|
-
remove(env.curation_concern, attributes['id']) if
|
48
|
+
remove(env.curation_concern, attributes['id']) if
|
49
|
+
ActiveModel::Type::Boolean.new.cast(attributes['_destroy'])
|
49
50
|
else
|
50
51
|
add(env, attributes['id'])
|
51
52
|
end
|
@@ -71,13 +72,6 @@ module Hyrax
|
|
71
72
|
curation_concern.member_of_collections.delete(collection)
|
72
73
|
end
|
73
74
|
|
74
|
-
# Determines if a hash contains a truthy _destroy key.
|
75
|
-
# rubocop:disable Naming/PredicateName
|
76
|
-
def has_destroy_flag?(hash)
|
77
|
-
ActiveFedora::Type::Boolean.new.cast(hash['_destroy'])
|
78
|
-
end
|
79
|
-
# rubocop:enable Naming/PredicateName
|
80
|
-
|
81
75
|
# Extact a singleton collection id from the collection attributes and save it in env. Later in the actor stack,
|
82
76
|
# in apply_permission_template_actor.rb, `env.attributes[:collection_id]` will be used to apply the
|
83
77
|
# permissions of the collection to the created work. With one and only one collection, the work is seen as
|
@@ -6,16 +6,26 @@ module Hyrax
|
|
6
6
|
# @return [Boolean] true if create was successful
|
7
7
|
def create(env)
|
8
8
|
uploaded_file_ids = filter_file_ids(env.attributes.delete(:uploaded_files))
|
9
|
-
files
|
10
|
-
|
9
|
+
files = uploaded_files(uploaded_file_ids)
|
10
|
+
# get a current copy of attributes, to protect against future mutations
|
11
|
+
attributes = env.attributes.clone
|
12
|
+
|
13
|
+
validate_files(files, env) &&
|
14
|
+
next_actor.create(env) &&
|
15
|
+
attach_files(files, env.curation_concern, attributes)
|
11
16
|
end
|
12
17
|
|
13
18
|
# @param [Hyrax::Actors::Environment] env
|
14
19
|
# @return [Boolean] true if update was successful
|
15
20
|
def update(env)
|
16
21
|
uploaded_file_ids = filter_file_ids(env.attributes.delete(:uploaded_files))
|
17
|
-
files
|
18
|
-
|
22
|
+
files = uploaded_files(uploaded_file_ids)
|
23
|
+
# get a current copy of attributes, to protect against future mutations
|
24
|
+
attributes = env.attributes.clone
|
25
|
+
|
26
|
+
validate_files(files, env) &&
|
27
|
+
next_actor.update(env) &&
|
28
|
+
attach_files(files, env.curation_concern, attributes)
|
19
29
|
end
|
20
30
|
|
21
31
|
private
|
@@ -37,9 +47,9 @@ module Hyrax
|
|
37
47
|
end
|
38
48
|
|
39
49
|
# @return [TrueClass]
|
40
|
-
def attach_files(files,
|
50
|
+
def attach_files(files, curation_concern, attributes)
|
41
51
|
return true if files.blank?
|
42
|
-
AttachFilesToWorkJob.perform_later(
|
52
|
+
AttachFilesToWorkJob.perform_later(curation_concern, files, attributes.to_h.symbolize_keys)
|
43
53
|
true
|
44
54
|
end
|
45
55
|
|
@@ -35,9 +35,9 @@ module Hyrax
|
|
35
35
|
# Creates a work and attaches files to the work
|
36
36
|
class CreateWithFilesOrderedMembersActor < CreateWithFilesActor
|
37
37
|
# @return [TrueClass]
|
38
|
-
def attach_files(files,
|
38
|
+
def attach_files(files, curation_concern, attributes)
|
39
39
|
return true if files.blank?
|
40
|
-
AttachFilesToWorkWithOrderedMembersJob.perform_later(
|
40
|
+
AttachFilesToWorkWithOrderedMembersJob.perform_later(curation_concern, files, attributes.to_h.symbolize_keys)
|
41
41
|
true
|
42
42
|
end
|
43
43
|
end
|
@@ -64,7 +64,8 @@ module Hyrax
|
|
64
64
|
# Generic utility for creating FileSet from a URL
|
65
65
|
# Used in to import files using URLs from a file picker like browse_everything
|
66
66
|
def create_file_from_url(env, uri, file_name, auth_header = {})
|
67
|
-
|
67
|
+
import_url = URI.decode_www_form_component(uri.to_s)
|
68
|
+
::FileSet.new(import_url: import_url, label: file_name) do |fs|
|
68
69
|
actor = Hyrax::Actors::FileSetActor.new(fs, env.user)
|
69
70
|
actor.create_metadata(visibility: env.curation_concern.visibility)
|
70
71
|
actor.attach_to_work(env.curation_concern)
|
@@ -42,11 +42,13 @@ module Hyrax
|
|
42
42
|
# Browse everything may also return a local file. And although it's in the
|
43
43
|
# url property, it may have spaces, and not be a valid URI.
|
44
44
|
class CreateWithRemoteFilesOrderedMembersActor < CreateWithRemoteFilesActor
|
45
|
+
attr_reader :ordered_members
|
46
|
+
|
45
47
|
# @param [HashWithIndifferentAccess] remote_files
|
46
48
|
# @return [TrueClass]
|
47
49
|
def attach_files(env, remote_files)
|
48
50
|
return true unless remote_files
|
49
|
-
|
51
|
+
@ordered_members = env.curation_concern.ordered_members.to_a
|
50
52
|
remote_files.each do |file_info|
|
51
53
|
next if file_info.blank? || file_info[:url].blank?
|
52
54
|
# Escape any space characters, so that this is a legal URI
|
@@ -58,7 +60,7 @@ module Hyrax
|
|
58
60
|
auth_header = file_info.fetch(:auth_header, {})
|
59
61
|
create_file_from_url(env, uri, file_info[:file_name], auth_header)
|
60
62
|
end
|
61
|
-
add_ordered_members(env)
|
63
|
+
add_ordered_members(env.user, env.curation_concern)
|
62
64
|
true
|
63
65
|
end
|
64
66
|
|
@@ -70,7 +72,7 @@ module Hyrax
|
|
70
72
|
actor.create_metadata(visibility: env.curation_concern.visibility)
|
71
73
|
actor.attach_to_work(env.curation_concern)
|
72
74
|
fs.save!
|
73
|
-
|
75
|
+
ordered_members << fs
|
74
76
|
if uri.scheme == 'file'
|
75
77
|
# Turn any %20 into spaces.
|
76
78
|
file_path = CGI.unescape(uri.path)
|
@@ -82,9 +84,9 @@ module Hyrax
|
|
82
84
|
end
|
83
85
|
|
84
86
|
# Add all file_sets as ordered_members in a single action
|
85
|
-
def add_ordered_members(
|
86
|
-
actor = Hyrax::Actors::OrderedMembersActor.new(
|
87
|
-
actor.attach_ordered_members_to_work(
|
87
|
+
def add_ordered_members(user, work)
|
88
|
+
actor = Hyrax::Actors::OrderedMembersActor.new(ordered_members, user)
|
89
|
+
actor.attach_ordered_members_to_work(work)
|
88
90
|
end
|
89
91
|
|
90
92
|
class_attribute :file_set_actor_class
|
@@ -8,29 +8,21 @@ module Hyrax
|
|
8
8
|
@curation_concern = curation_concern
|
9
9
|
@current_ability = current_ability
|
10
10
|
@attributes = attributes.to_h.with_indifferent_access
|
11
|
-
@actor_storage = {}
|
12
11
|
end
|
13
12
|
|
14
|
-
|
13
|
+
##
|
14
|
+
# @!attribute [rw] attributes
|
15
|
+
# @return [Hash]
|
16
|
+
# @!attribute [rw] curation_concern
|
17
|
+
# @return [Object]
|
18
|
+
# @!attribute [rw] current_ability
|
19
|
+
# @return [Hyrax::Ability]
|
20
|
+
attr_accessor :attributes, :curation_concern, :current_ability
|
15
21
|
|
16
22
|
# @return [User] the user from the current_ability
|
17
23
|
def user
|
18
24
|
current_ability.current_user
|
19
25
|
end
|
20
|
-
|
21
|
-
def store(actor, key, value)
|
22
|
-
store_for(actor)[key] = value
|
23
|
-
end
|
24
|
-
|
25
|
-
def retrieve(actor, key)
|
26
|
-
store_for(actor)[key]
|
27
|
-
end
|
28
|
-
|
29
|
-
private
|
30
|
-
|
31
|
-
def store_for(actor)
|
32
|
-
@actor_storage[actor] ||= {}
|
33
|
-
end
|
34
26
|
end
|
35
27
|
end
|
36
28
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
require 'wings/services/file_metadata_builder'
|
2
|
+
|
1
3
|
module Hyrax
|
2
4
|
module Actors
|
3
5
|
# Actions for a file identified by file_set and relation (maps to use predicate)
|
@@ -8,10 +10,11 @@ module Hyrax
|
|
8
10
|
# @param [FileSet] file_set the parent FileSet
|
9
11
|
# @param [Symbol, #to_sym] relation the type/use for the file
|
10
12
|
# @param [User] user the user to record as the Agent acting upon the file
|
11
|
-
def initialize(file_set, relation, user)
|
13
|
+
def initialize(file_set, relation, user, use_valkyrie: false)
|
12
14
|
@file_set = file_set
|
13
|
-
@relation = relation
|
15
|
+
@relation = normalize_relation(relation, use_valkyrie: use_valkyrie)
|
14
16
|
@user = user
|
17
|
+
@use_valkyrie = use_valkyrie
|
15
18
|
end
|
16
19
|
|
17
20
|
# Persists file as part of file_set and spawns async job to characterize and create derivatives.
|
@@ -21,16 +24,7 @@ module Hyrax
|
|
21
24
|
# @see IngestJob
|
22
25
|
# @todo create a job to monitor the temp directory (or in a multi-worker system, directories!) to prune old files that have made it into the repo
|
23
26
|
def ingest_file(io)
|
24
|
-
|
25
|
-
Hydra::Works::AddFileToFileSet.call(file_set,
|
26
|
-
io,
|
27
|
-
relation,
|
28
|
-
versioning: false)
|
29
|
-
return false unless file_set.save
|
30
|
-
repository_file = related_file
|
31
|
-
Hyrax::VersioningService.create(repository_file, user)
|
32
|
-
pathhint = io.uploaded_file.uploader.path if io.uploaded_file # in case next worker is on same filesystem
|
33
|
-
CharacterizeJob.perform_later(file_set, repository_file.id, pathhint || io.path)
|
27
|
+
perform_ingest_file(io, use_valkyrie: @use_valkyrie)
|
34
28
|
end
|
35
29
|
|
36
30
|
# Reverts file and spawns async job to characterize and create derivatives.
|
@@ -55,7 +49,75 @@ module Hyrax
|
|
55
49
|
|
56
50
|
# @return [Hydra::PCDM::File] the file referenced by relation
|
57
51
|
def related_file
|
58
|
-
file_set.public_send(relation) || raise("No #{relation} returned for FileSet #{file_set.id}")
|
52
|
+
file_set.public_send(normalize_relation(relation)) || raise("No #{relation} returned for FileSet #{file_set.id}")
|
53
|
+
end
|
54
|
+
|
55
|
+
# Persists file as part of file_set and records a new version.
|
56
|
+
# Also spawns an async job to characterize and create derivatives.
|
57
|
+
# @param [JobIoWrapper] io the file to save in the repository, with mime_type and original_name
|
58
|
+
# @return [FileMetadata, FalseClass] the created file metadata on success, false on failure
|
59
|
+
# @todo create a job to monitor the temp directory (or in a multi-worker system, directories!) to prune old files that have made it into the repo
|
60
|
+
def perform_ingest_file(io, use_valkyrie: false)
|
61
|
+
use_valkyrie ? perform_ingest_file_through_valkyrie(io) : perform_ingest_file_through_active_fedora(io)
|
62
|
+
end
|
63
|
+
|
64
|
+
def perform_ingest_file_through_active_fedora(io)
|
65
|
+
# Skip versioning because versions will be minted by VersionCommitter as necessary during save_characterize_and_record_committer.
|
66
|
+
Hydra::Works::AddFileToFileSet.call(file_set,
|
67
|
+
io,
|
68
|
+
relation,
|
69
|
+
versioning: false)
|
70
|
+
return false unless file_set.save
|
71
|
+
repository_file = related_file
|
72
|
+
Hyrax::VersioningService.create(repository_file, user)
|
73
|
+
pathhint = io.uploaded_file.uploader.path if io.uploaded_file # in case next worker is on same filesystem
|
74
|
+
CharacterizeJob.perform_later(file_set, repository_file.id, pathhint || io.path)
|
75
|
+
end
|
76
|
+
|
77
|
+
def perform_ingest_file_through_valkyrie(io)
|
78
|
+
# Skip versioning because versions will be minted by VersionCommitter as necessary during save_characterize_and_record_committer.
|
79
|
+
unsaved_file_metadata = io.to_file_metadata
|
80
|
+
unsaved_file_metadata.use = relation
|
81
|
+
begin
|
82
|
+
saved_file_metadata = file_metadata_builder.create(io_wrapper: io, file_metadata: unsaved_file_metadata, file_set: file_set)
|
83
|
+
rescue StandardError => e # Handle error persisting file metadata
|
84
|
+
Rails.logger.error("Failed to save file_metadata through valkyrie: #{e.message}")
|
85
|
+
return false
|
86
|
+
end
|
87
|
+
Hyrax::VersioningService.create(saved_file_metadata, user)
|
88
|
+
pathhint = io.uploaded_file.uploader.path if io.uploaded_file # in case next worker is on same filesystem
|
89
|
+
id = Hyrax.config.translate_uri_to_id.call saved_file_metadata.file_identifiers.first
|
90
|
+
CharacterizeJob.perform_later(file_set, id, pathhint || io.path)
|
91
|
+
end
|
92
|
+
|
93
|
+
def file_metadata_builder
|
94
|
+
Wings::FileMetadataBuilder.new(storage_adapter: Hyrax.storage_adapter,
|
95
|
+
persister: Hyrax.persister)
|
96
|
+
end
|
97
|
+
|
98
|
+
def normalize_relation(relation, use_valkyrie: false)
|
99
|
+
use_valkyrie ? normalize_relation_for_valkyrie(relation) : normalize_relation_for_active_fedora(relation)
|
100
|
+
end
|
101
|
+
|
102
|
+
def normalize_relation_for_active_fedora(relation)
|
103
|
+
return relation if relation.is_a? Symbol
|
104
|
+
return relation.to_sym if relation.respond_to? :to_sym
|
105
|
+
|
106
|
+
# TODO: whereever these are set, they should use Valkyrie::Vocab::PCDMUse... making the casecmp unnecessary
|
107
|
+
return :original_file if relation.to_s.casecmp(Valkyrie::Vocab::PCDMUse.original_file.to_s)
|
108
|
+
return :extracted_file if relation.to_s.casecmp(Valkyrie::Vocab::PCDMUse.extracted_file.to_s)
|
109
|
+
return :thumbnail_file if relation.to_s.casecmp(Valkyrie::Vocab::PCDMUse.thumbnail_file.to_s)
|
110
|
+
:original_file
|
111
|
+
end
|
112
|
+
|
113
|
+
def normalize_relation_for_valkyrie(relation)
|
114
|
+
# TODO: When this is fully switched to valkyrie, this should probably be removed and relation should always be passed
|
115
|
+
# in as a valid URI already set to the file's use
|
116
|
+
relation = relation.to_s.to_sym
|
117
|
+
return Valkyrie::Vocab::PCDMUse.original_file if relation == :original_file
|
118
|
+
return Valkyrie::Vocab::PCDMUse.extracted_file if relation == :extracted_file
|
119
|
+
return Valkyrie::Vocab::PCDMUse.thumbnail_file if relation == :thumbnail_file
|
120
|
+
Valkyrie::Vocab::PCDMUse.original_file
|
59
121
|
end
|
60
122
|
end
|
61
123
|
end
|