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
@@ -3,7 +3,8 @@ module Hyrax
|
|
3
3
|
module Transactions
|
4
4
|
module Steps
|
5
5
|
##
|
6
|
-
# A `dry-transcation` step that applies a permission template
|
6
|
+
# A `dry-transcation` step that applies a permission template for a given
|
7
|
+
# work's AdminSet.
|
7
8
|
#
|
8
9
|
# @since 2.4.0
|
9
10
|
class ApplyPermissionTemplate
|
@@ -0,0 +1,39 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
module Hyrax
|
3
|
+
module Transactions
|
4
|
+
module Steps
|
5
|
+
##
|
6
|
+
# A `dry-transaction` step that interprets visibility/lease/embargo from
|
7
|
+
# passed arguments.
|
8
|
+
#
|
9
|
+
# @since 3.0.0
|
10
|
+
class ApplyVisibility
|
11
|
+
include Dry::Transaction::Operation
|
12
|
+
|
13
|
+
##
|
14
|
+
# @param [Hyrax::WorkBehavior] work
|
15
|
+
# @param [String] visibility
|
16
|
+
# @param [String] release_date
|
17
|
+
# @param [String] during
|
18
|
+
# @param [String] after
|
19
|
+
#
|
20
|
+
# @return [Dry::Monads::Result] `Failure` if there is no
|
21
|
+
# `PermissionTemplate` for the input; `Success(input)`, otherwise.
|
22
|
+
def call(work, visibility: nil, release_date: nil, during: nil, after: nil)
|
23
|
+
return Success(work) unless visibility.present?
|
24
|
+
|
25
|
+
intention = Hyrax::VisibilityIntention.new(visibility: visibility,
|
26
|
+
release_date: release_date,
|
27
|
+
during: during,
|
28
|
+
after: after)
|
29
|
+
|
30
|
+
Hyrax::VisibilityIntentionApplicator.apply(intention).to(model: work)
|
31
|
+
|
32
|
+
Success(work)
|
33
|
+
rescue Hyrax::VisibilityIntentionApplicator::InvalidIntentionError => err
|
34
|
+
Failure(err)
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
data/lib/hyrax/version.rb
CHANGED
data/lib/tasks/migrate.rake
CHANGED
@@ -34,5 +34,11 @@ namespace :hyrax do
|
|
34
34
|
# added in Hyrax 2.1.0
|
35
35
|
Hyrax::Collections::MigrationService.migrate_all_collections
|
36
36
|
end
|
37
|
+
|
38
|
+
# Migrate any orphan fedora data from the first to the second predicate
|
39
|
+
task migrate_keyword_predicate: :environment do
|
40
|
+
Hyrax::Works::MigrationService.migrate_predicate(::RDF::Vocab::DC11.relation, ::RDF::Vocab::SCHEMA.keywords)
|
41
|
+
Hyrax::Works::MigrationService.migrate_predicate(::RDF::Vocab::DC.rights, ::RDF::URI.new('http://dublincore.org/documents/dcmi-terms/#terms-license'))
|
42
|
+
end
|
37
43
|
end
|
38
44
|
end
|
@@ -0,0 +1,15 @@
|
|
1
|
+
namespace :hyrax do
|
2
|
+
namespace :universal_viewer do
|
3
|
+
desc "Install Universal Viewer"
|
4
|
+
task install: :environment do
|
5
|
+
# Copy the files into place
|
6
|
+
hyrax_templates_path = File.join(Gem.loaded_specs['hyrax'].full_gem_path, 'lib', 'generators', 'hyrax', 'templates')
|
7
|
+
copy_file File.join(hyrax_templates_path, 'package.json'), Rails.root.join('package.json')
|
8
|
+
Dir.mkdir(Rails.root.join('config', 'uv')) unless File.exist?(Rails.root.join('config', 'uv'))
|
9
|
+
copy_file File.join(hyrax_templates_path, 'uv.html'), Rails.root.join('config', 'uv', 'uv.html')
|
10
|
+
copy_file File.join(hyrax_templates_path, 'uv-config.json'), Rails.root.join('config', 'uv', 'uv-config.json')
|
11
|
+
|
12
|
+
puts 'Universal Viewer (UV) configs copied into place, install UV by running yarn install or rake assets:precompile'
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
@@ -0,0 +1,102 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require 'rsolr'
|
3
|
+
|
4
|
+
module Valkyrie
|
5
|
+
module Indexing
|
6
|
+
module Solr
|
7
|
+
class IndexingAdapter
|
8
|
+
COMMIT_PARAMS = { softCommit: true }.freeze
|
9
|
+
##
|
10
|
+
# @!attribute [r] connection
|
11
|
+
# @return [RSolr::Client]
|
12
|
+
# @!attribute [r] resource_indexer
|
13
|
+
# @return [Class]
|
14
|
+
attr_reader :connection, :resource_indexer
|
15
|
+
|
16
|
+
##
|
17
|
+
# @param connection [RSolr::Client] The RSolr connection to index to.
|
18
|
+
# @param resource_indexer [Class, #to_solr] An indexer which is able to
|
19
|
+
# receive a `resource` argument and then has an instance method `#to_solr`
|
20
|
+
def initialize(connection: default_connection, resource_indexer: default_indexer)
|
21
|
+
@connection = connection
|
22
|
+
@resource_indexer = resource_indexer
|
23
|
+
end
|
24
|
+
|
25
|
+
def save(resource:)
|
26
|
+
persist([resource])
|
27
|
+
end
|
28
|
+
|
29
|
+
def save_all(resources:)
|
30
|
+
persist(resources)
|
31
|
+
end
|
32
|
+
|
33
|
+
# Deletes a Solr Document using the ID
|
34
|
+
# @return [Array<Valkyrie::Resource>] resources which have been deleted from Solr
|
35
|
+
def delete(resource:)
|
36
|
+
connection.delete_by_id resource.id.to_s, params: COMMIT_PARAMS
|
37
|
+
end
|
38
|
+
|
39
|
+
# Delete the Solr index of all Documents
|
40
|
+
def wipe!
|
41
|
+
connection.delete_by_query("*:*")
|
42
|
+
connection.commit
|
43
|
+
end
|
44
|
+
|
45
|
+
private
|
46
|
+
|
47
|
+
def persist(resources)
|
48
|
+
documents = resources.map do |resource|
|
49
|
+
solr_document(resource)
|
50
|
+
end
|
51
|
+
add_documents(documents)
|
52
|
+
end
|
53
|
+
|
54
|
+
def solr_document(resource)
|
55
|
+
resource_indexer.new(resource: resource).to_solr
|
56
|
+
end
|
57
|
+
|
58
|
+
def add_documents(documents)
|
59
|
+
connection.add documents, params: COMMIT_PARAMS
|
60
|
+
end
|
61
|
+
|
62
|
+
##
|
63
|
+
# Index configuration based on the blacklight connection.
|
64
|
+
def blacklight_based_config
|
65
|
+
begin
|
66
|
+
# If Blacklight raises an error, we're hopefully running a
|
67
|
+
# generator now (if not, the application has bigger problems
|
68
|
+
# than this missing configuration)
|
69
|
+
bl_index = Blacklight.default_index.connection.uri
|
70
|
+
rescue RuntimeError
|
71
|
+
return {}
|
72
|
+
end
|
73
|
+
|
74
|
+
{ 'host' => bl_index.host,
|
75
|
+
'port' => bl_index.port,
|
76
|
+
'core' => 'hyrax-valkyrie' }
|
77
|
+
end
|
78
|
+
|
79
|
+
def connection_url
|
80
|
+
config = begin
|
81
|
+
Rails.application.config_for(:valkyrie_index).compact
|
82
|
+
rescue RuntimeError
|
83
|
+
{}
|
84
|
+
end
|
85
|
+
|
86
|
+
# if any configuration is missing, derive it from Blacklight
|
87
|
+
config = blacklight_based_config.merge(config)
|
88
|
+
|
89
|
+
"http://#{config['host']}:#{config['port']}/solr/#{config['core']}"
|
90
|
+
end
|
91
|
+
|
92
|
+
def default_connection
|
93
|
+
RSolr.connect(url: connection_url)
|
94
|
+
end
|
95
|
+
|
96
|
+
def default_indexer
|
97
|
+
Valkyrie::Persistence::Solr::MetadataAdapter::NullIndexer
|
98
|
+
end
|
99
|
+
end
|
100
|
+
end
|
101
|
+
end
|
102
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
module Valkyrie
|
3
|
+
# IndexingAdapter is the primary DataMapper object for indexing.
|
4
|
+
# Used to register and locate adapters, for individual
|
5
|
+
# indexing backends (such as solr, elasticsearch, etc)
|
6
|
+
class IndexingAdapter
|
7
|
+
class_attribute :adapters
|
8
|
+
self.adapters = {}
|
9
|
+
class << self
|
10
|
+
# Register an adapter by a short name.
|
11
|
+
# Registering an adapter by a short name makes the adapter easier to find and reference.
|
12
|
+
# @param adapter Adapter to register.
|
13
|
+
# @param short_name [Symbol] Name to register it under.
|
14
|
+
def register(adapter, short_name)
|
15
|
+
adapters[short_name.to_sym] = adapter
|
16
|
+
end
|
17
|
+
|
18
|
+
# Find an adapter by its short name.
|
19
|
+
# @param short_name [Symbol]
|
20
|
+
# @return adapter
|
21
|
+
# @raise RuntimeError when the given short_name is not found amongst the registered adapters
|
22
|
+
def find(short_name)
|
23
|
+
symbolized_key = short_name.to_sym
|
24
|
+
return adapters[symbolized_key] if adapters.key?(symbolized_key)
|
25
|
+
raise "Unable to find unregistered adapter `#{short_name}'"
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
data/lib/wings.rb
CHANGED
@@ -21,12 +21,12 @@ module Wings; end
|
|
21
21
|
|
22
22
|
require 'valkyrie'
|
23
23
|
require 'wings/model_transformer'
|
24
|
-
require 'wings/resource_factory'
|
25
24
|
require 'wings/valkyrizable'
|
26
25
|
require 'wings/valkyrie/metadata_adapter'
|
27
26
|
require 'wings/valkyrie/resource_factory'
|
28
27
|
require 'wings/valkyrie/persister'
|
29
28
|
require 'wings/valkyrie/query_service'
|
29
|
+
require 'wings/valkyrie/storage/active_fedora'
|
30
30
|
|
31
31
|
ActiveFedora::Base.include Wings::Valkyrizable
|
32
32
|
|
@@ -37,9 +37,18 @@ end
|
|
37
37
|
Valkyrie::MetadataAdapter.register(
|
38
38
|
Wings::Valkyrie::MetadataAdapter.new, :wings_adapter
|
39
39
|
)
|
40
|
+
Valkyrie.config.metadata_adapter = :wings_adapter
|
40
41
|
|
41
42
|
Valkyrie::StorageAdapter.register(
|
42
|
-
|
43
|
-
.new(connection: Ldp::Client.new(ActiveFedora.fedora.host)),
|
44
|
-
:
|
43
|
+
Wings::Storage::ActiveFedora
|
44
|
+
.new(connection: Ldp::Client.new(ActiveFedora.fedora.host), base_path: ActiveFedora.fedora.base_path),
|
45
|
+
:active_fedora
|
45
46
|
)
|
47
|
+
Valkyrie.config.storage_adapter = :active_fedora
|
48
|
+
|
49
|
+
[Hyrax::CustomQueries::Wings,
|
50
|
+
Hyrax::CustomQueries::Navigators::ChildCollectionsNavigator,
|
51
|
+
Hyrax::CustomQueries::Navigators::ChildFilesetsNavigator,
|
52
|
+
Hyrax::CustomQueries::Navigators::ChildWorksNavigator].each do |query_handler|
|
53
|
+
Valkyrie.config.metadata_adapter.query_service.custom_queries.register_query_handler(query_handler)
|
54
|
+
end
|
@@ -1,8 +1,10 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
require 'wings/converter_value_mapper'
|
4
|
+
|
3
5
|
module Wings
|
4
6
|
##
|
5
|
-
# Converts `
|
7
|
+
# Converts `Valkyrie::Resource` objects to legacy `ActiveFedora::Base` objects.
|
6
8
|
#
|
7
9
|
# @example
|
8
10
|
# work = GenericWork.new(title: ['Comet in Moominland'])
|
@@ -13,6 +15,21 @@ module Wings
|
|
13
15
|
# @note the `Valkyrie::Resource` object passed to this class **must** have an
|
14
16
|
# `#internal_resource` mapping it to an `ActiveFedora::Base` class.
|
15
17
|
class ActiveFedoraConverter
|
18
|
+
##
|
19
|
+
# Accesses the Class implemented for handling resource attributes
|
20
|
+
# @return [Class]
|
21
|
+
def self.attributes_class
|
22
|
+
ActiveFedoraAttributes
|
23
|
+
end
|
24
|
+
|
25
|
+
##
|
26
|
+
# @params [Valkyrie::Resource] resource
|
27
|
+
#
|
28
|
+
# @return [ActiveFedora::Base]
|
29
|
+
def self.convert(resource:)
|
30
|
+
new(resource: resource).convert
|
31
|
+
end
|
32
|
+
|
16
33
|
##
|
17
34
|
# @!attribute [rw] resource
|
18
35
|
# @return [Valkyrie::Resource]
|
@@ -25,32 +42,129 @@ module Wings
|
|
25
42
|
end
|
26
43
|
|
27
44
|
##
|
28
|
-
#
|
45
|
+
# Accesses and parses the attributes from the resource through ConverterValueMapper
|
46
|
+
# @return [Hash]
|
29
47
|
def attributes
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
attrs = attrs.reject { |k, _| k.to_s.end_with? '_ids' }
|
35
|
-
|
36
|
-
attrs.delete(:internal_resource)
|
37
|
-
attrs.delete(:new_record)
|
38
|
-
attrs.delete(:id)
|
39
|
-
attrs.delete(:alternate_ids)
|
40
|
-
|
41
|
-
attrs.compact
|
48
|
+
@attribs ||= begin
|
49
|
+
wrapper = self.class.attributes_class.new(resource.attributes)
|
50
|
+
wrapper.result
|
51
|
+
end
|
42
52
|
end
|
43
53
|
|
44
54
|
##
|
45
55
|
# @return [ActiveFedora::Base]
|
46
56
|
def convert
|
47
|
-
|
57
|
+
active_fedora_class.new(normal_attributes).tap do |af_object|
|
58
|
+
af_object.id = id unless id.empty?
|
59
|
+
add_access_control_attributes(af_object)
|
60
|
+
apply_depositor_to(af_object)
|
61
|
+
convert_members(af_object)
|
62
|
+
convert_member_of_collections(af_object)
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
def active_fedora_class
|
67
|
+
klass = resource.internal_resource.constantize
|
68
|
+
return klass if klass <= ActiveFedora::Base
|
69
|
+
return Hydra::AccessControls::Embargo if klass <= Hyrax::Embargo
|
70
|
+
return Hydra::AccessControls::Lease if klass <= Hyrax::Lease
|
71
|
+
DefaultWork
|
48
72
|
end
|
49
73
|
|
50
74
|
##
|
75
|
+
# In the context of a Valkyrie resource, prefer to use the id if it
|
76
|
+
# is provided and fallback to the first of the alternate_ids. If all else fails
|
77
|
+
# then the id hasn't been minted and shouldn't yet be set.
|
51
78
|
# @return [String]
|
52
79
|
def id
|
80
|
+
id_attr = resource[:id]
|
81
|
+
return id_attr.to_s if id_attr.present? && id_attr.is_a?(::Valkyrie::ID) && !id_attr.blank?
|
82
|
+
return "" unless resource.respond_to?(:alternate_ids)
|
53
83
|
resource.alternate_ids.first.to_s
|
54
84
|
end
|
85
|
+
|
86
|
+
# A dummy work class for valkyrie resources that don't have corresponding
|
87
|
+
# hyrax ActiveFedora::Base models.
|
88
|
+
#
|
89
|
+
# A possible improvement would be to dynamically generate properties based
|
90
|
+
# on what's found in the resource.
|
91
|
+
class DefaultWork < ActiveFedora::Base
|
92
|
+
include Hyrax::WorkBehavior
|
93
|
+
property :ordered_authors, predicate: ::RDF::Vocab::DC.creator
|
94
|
+
property :ordered_nested, predicate: ::RDF::URI("http://example.com/ordered_nested")
|
95
|
+
property :nested_resource, predicate: ::RDF::URI("http://example.com/nested_resource"), class_name: "Wings::ActiveFedoraConverter::NestedResource"
|
96
|
+
include ::Hyrax::BasicMetadata
|
97
|
+
accepts_nested_attributes_for :nested_resource
|
98
|
+
|
99
|
+
# self.indexer = <%= class_name %>Indexer
|
100
|
+
end
|
101
|
+
|
102
|
+
class NestedResource < ActiveTriples::Resource
|
103
|
+
property :title, predicate: ::RDF::Vocab::DC.title
|
104
|
+
property :ordered_authors, predicate: ::RDF::Vocab::DC.creator
|
105
|
+
property :ordered_nested, predicate: ::RDF::URI("http://example.com/ordered_nested")
|
106
|
+
def initialize(uri = RDF::Node.new, _parent = ActiveTriples::Resource.new)
|
107
|
+
uri = if uri.try(:node?)
|
108
|
+
RDF::URI("#nested_resource_#{uri.to_s.gsub('_:', '')}")
|
109
|
+
elsif uri.to_s.include?('#')
|
110
|
+
RDF::URI(uri)
|
111
|
+
end
|
112
|
+
super
|
113
|
+
end
|
114
|
+
include ::Hyrax::BasicMetadata
|
115
|
+
end
|
116
|
+
|
117
|
+
private
|
118
|
+
|
119
|
+
def convert_members(af_object)
|
120
|
+
return unless resource.respond_to?(:member_ids) && resource.member_ids
|
121
|
+
# TODO: It would be better to find a way to add the members without resuming all the member AF objects
|
122
|
+
ordered_members = []
|
123
|
+
resource.member_ids.each do |valkyrie_id|
|
124
|
+
ordered_members << ActiveFedora::Base.find(valkyrie_id.id)
|
125
|
+
end
|
126
|
+
af_object.ordered_members = ordered_members
|
127
|
+
end
|
128
|
+
|
129
|
+
def convert_member_of_collections(af_object)
|
130
|
+
return unless resource.respond_to?(:member_of_collection_ids) && resource.member_of_collection_ids
|
131
|
+
# TODO: It would be better to find a way to set the parent collections without resuming all the collection AF objects
|
132
|
+
member_of_collections = []
|
133
|
+
resource.member_of_collection_ids.each do |valkyrie_id|
|
134
|
+
member_of_collections << ActiveFedora::Base.find(valkyrie_id.id)
|
135
|
+
end
|
136
|
+
af_object.member_of_collections = member_of_collections
|
137
|
+
end
|
138
|
+
|
139
|
+
# Normalizes the attributes parsed from the resource
|
140
|
+
# (This ensures that scalar values are passed to the constructor for the
|
141
|
+
# ActiveFedora::Base Class)
|
142
|
+
# @return [Hash]
|
143
|
+
def normal_attributes
|
144
|
+
normalized = {}
|
145
|
+
attributes.each_pair do |attr, value|
|
146
|
+
property = active_fedora_class.properties[attr.to_s]
|
147
|
+
# This handles some cases where the attributes do not directly map to an
|
148
|
+
# RDF property value
|
149
|
+
normalized[attr] = value
|
150
|
+
next if property.nil?
|
151
|
+
normalized[attr] = Array.wrap(value) if property.multiple?
|
152
|
+
end
|
153
|
+
normalized
|
154
|
+
end
|
155
|
+
|
156
|
+
def apply_depositor_to(af_object)
|
157
|
+
af_object.apply_depositor_metadata(attributes[:depositor]) unless attributes[:depositor].blank?
|
158
|
+
end
|
159
|
+
|
160
|
+
# Add attributes from resource which aren't AF properties into af_object
|
161
|
+
def add_access_control_attributes(af_object)
|
162
|
+
return unless af_object.is_a? Hydra::AccessControls::Permissions
|
163
|
+
|
164
|
+
af_object.read_users = attributes[:read_users]
|
165
|
+
af_object.edit_users = attributes[:edit_users]
|
166
|
+
af_object.read_groups = attributes[:read_groups]
|
167
|
+
af_object.edit_groups = attributes[:edit_groups]
|
168
|
+
end
|
55
169
|
end
|
56
170
|
end
|
@@ -0,0 +1,111 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Wings
|
4
|
+
##
|
5
|
+
# A base value mapper for converting property values in the
|
6
|
+
# `Valkyrie` type system to `ActiveFedora`/`ActiveTriples` type
|
7
|
+
#
|
8
|
+
# This top level matcher has registered several internal mappers which handle
|
9
|
+
# indivdual value types from the source data.
|
10
|
+
class ConverterValueMapper < ::Valkyrie::ValueMapper; end
|
11
|
+
|
12
|
+
class NestedEmbargoValue < ::Valkyrie::ValueMapper
|
13
|
+
ConverterValueMapper.register(self)
|
14
|
+
|
15
|
+
def self.handles?(value)
|
16
|
+
value.first == :embargo
|
17
|
+
end
|
18
|
+
|
19
|
+
def result
|
20
|
+
embargo = ActiveFedoraConverter.new(resource: Hyrax::Embargo.new(**value.last)).convert
|
21
|
+
|
22
|
+
[:embargo, embargo]
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
class NestedLeaseValue < ::Valkyrie::ValueMapper
|
27
|
+
ConverterValueMapper.register(self)
|
28
|
+
|
29
|
+
def self.handles?(value)
|
30
|
+
value.first == :lease
|
31
|
+
end
|
32
|
+
|
33
|
+
def result
|
34
|
+
lease = ActiveFedoraConverter.new(resource: Hyrax::Lease.new(**value.last)).convert
|
35
|
+
|
36
|
+
[:lease, lease]
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
class NestedResourceArrayValue < ::Valkyrie::ValueMapper
|
41
|
+
ConverterValueMapper.register(self)
|
42
|
+
def self.handles?(value)
|
43
|
+
value.last.is_a?(Array) && value.last.map { |x| x.try(:class) }.include?(Hash)
|
44
|
+
end
|
45
|
+
|
46
|
+
def result
|
47
|
+
["#{value.first}_attributes".to_sym, values]
|
48
|
+
end
|
49
|
+
|
50
|
+
def values
|
51
|
+
value.last.map do |val|
|
52
|
+
calling_mapper.for([value.first, val]).result
|
53
|
+
end.flat_map(&:last)
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
class NestedResourceValue < ::Valkyrie::ValueMapper
|
58
|
+
ConverterValueMapper.register(self)
|
59
|
+
def self.handles?(value)
|
60
|
+
value.last.is_a?(Hash)
|
61
|
+
end
|
62
|
+
|
63
|
+
def result
|
64
|
+
attrs = ActiveFedoraAttributes.new(value.last).result
|
65
|
+
attrs.delete(:read_groups)
|
66
|
+
attrs.delete(:read_users)
|
67
|
+
attrs.delete(:edit_groups)
|
68
|
+
attrs.delete(:edit_users)
|
69
|
+
|
70
|
+
[value.first, attrs]
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
class ActiveFedoraAttributes
|
75
|
+
attr_reader :attributes
|
76
|
+
def initialize(attributes)
|
77
|
+
@attributes = attributes
|
78
|
+
end
|
79
|
+
|
80
|
+
def result
|
81
|
+
Hash[
|
82
|
+
filter_attributes.map do |value|
|
83
|
+
ConverterValueMapper.for(value).result
|
84
|
+
end.select(&:present?)
|
85
|
+
]
|
86
|
+
end
|
87
|
+
|
88
|
+
##
|
89
|
+
# @return [Hash<Symbol, Object>]
|
90
|
+
def filter_attributes
|
91
|
+
# avoid reflections for now; `*_ids` can't be passed as attributes.
|
92
|
+
# handling for reflections needs to happen in future work
|
93
|
+
attrs = attributes.reject { |k, _| k.to_s.end_with? '_ids' }
|
94
|
+
|
95
|
+
attrs.delete(:internal_resource)
|
96
|
+
attrs.delete(:new_record)
|
97
|
+
attrs.delete(:id)
|
98
|
+
attrs.delete(:alternate_ids)
|
99
|
+
attrs.delete(:created_at)
|
100
|
+
attrs.delete(:updated_at)
|
101
|
+
attrs.delete(:member_ids)
|
102
|
+
|
103
|
+
# remove reflection id attributes and reinsert as strings
|
104
|
+
attrs.select { |k| k.to_s.end_with? '_id' }.each_key do |k|
|
105
|
+
val = attrs.delete(k)
|
106
|
+
attrs[k] = val.to_s unless val.blank?
|
107
|
+
end
|
108
|
+
attrs.compact
|
109
|
+
end
|
110
|
+
end
|
111
|
+
end
|