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
@@ -48,7 +48,7 @@ module Hyrax
|
|
48
48
|
def destroy
|
49
49
|
parent = curation_concern.parent
|
50
50
|
actor.destroy
|
51
|
-
redirect_to [main_app, parent], notice: '
|
51
|
+
redirect_to [main_app, parent], notice: view_context.t('hyrax.file_sets.asset_deleted_flash.message')
|
52
52
|
end
|
53
53
|
|
54
54
|
# PATCH /concern/file_sets/:id
|
@@ -95,7 +95,8 @@ module Hyrax
|
|
95
95
|
def after_update_response
|
96
96
|
respond_to do |wants|
|
97
97
|
wants.html do
|
98
|
-
|
98
|
+
link_to_file = view_context.link_to(curation_concern, [main_app, curation_concern])
|
99
|
+
redirect_to [main_app, curation_concern], notice: view_context.t('hyrax.file_sets.asset_updated_flash.message', link_to_file: link_to_file)
|
99
100
|
end
|
100
101
|
wants.json do
|
101
102
|
@presenter = show_presenter.new(curation_concern, current_ability)
|
@@ -4,8 +4,8 @@ module Hyrax
|
|
4
4
|
# Define collection specific filter facets.
|
5
5
|
def self.configure_facets
|
6
6
|
configure_blacklight do |config|
|
7
|
-
config.add_facet_field
|
8
|
-
config.add_facet_field
|
7
|
+
config.add_facet_field "admin_set_sim", limit: 5
|
8
|
+
config.add_facet_field "member_of_collections_ssim", limit: 5
|
9
9
|
end
|
10
10
|
end
|
11
11
|
configure_facets
|
@@ -9,11 +9,11 @@ module Hyrax
|
|
9
9
|
blacklight_config.facet_fields = {}
|
10
10
|
configure_blacklight do |config|
|
11
11
|
# TODO: add a visibility facet (requires visibility to be indexed)
|
12
|
-
config.add_facet_field
|
12
|
+
config.add_facet_field "visibility_ssi",
|
13
13
|
helper_method: :visibility_badge,
|
14
14
|
limit: 5, label: I18n.t('hyrax.dashboard.my.heading.visibility')
|
15
15
|
config.add_facet_field IndexesWorkflow.suppressed_field, helper_method: :suppressed_to_status
|
16
|
-
config.add_facet_field
|
16
|
+
config.add_facet_field "resource_type_sim", limit: 5
|
17
17
|
end
|
18
18
|
end
|
19
19
|
|
@@ -59,7 +59,7 @@ module Hyrax
|
|
59
59
|
end
|
60
60
|
|
61
61
|
def asset
|
62
|
-
@asset ||=
|
62
|
+
@asset ||= Hyrax.query_service.find_by_alternate_identifier(alternate_identifier: single_use_link.item_id, use_valkyrie: false)
|
63
63
|
end
|
64
64
|
|
65
65
|
def current_ability
|
@@ -16,7 +16,7 @@ module Hyrax
|
|
16
16
|
private
|
17
17
|
|
18
18
|
def curation_concern
|
19
|
-
@curation_concern ||=
|
19
|
+
@curation_concern ||= Hyrax.query_service.find_by_alternate_identifier(alternate_identifier: params[:id], use_valkyrie: false)
|
20
20
|
end
|
21
21
|
|
22
22
|
def workflow_action_form
|
@@ -7,6 +7,14 @@ module Hyrax
|
|
7
7
|
# Cast any array values on the model to scalars.
|
8
8
|
def [](key)
|
9
9
|
return super if key == :thumbnail_id
|
10
|
+
if key == :title
|
11
|
+
@attributes["title"].each do |value|
|
12
|
+
@attributes["alt_title"] << value
|
13
|
+
end
|
14
|
+
@attributes["alt_title"].delete(@attributes["alt_title"].sort.first) unless @attributes["alt_title"].empty?
|
15
|
+
return @attributes["title"].sort.first unless @attributes["title"].empty?
|
16
|
+
return ""
|
17
|
+
end
|
10
18
|
super.first
|
11
19
|
end
|
12
20
|
|
@@ -64,7 +64,7 @@ module Hyrax
|
|
64
64
|
def initialize_combined_fields
|
65
65
|
# For each of the files in the batch, set the attributes to be the concatenation of all the attributes
|
66
66
|
batch_document_ids.each_with_object({}) do |doc_id, combined_attributes|
|
67
|
-
work =
|
67
|
+
work = Hyrax.query_service.find_by_alternate_identifier(alternate_identifier: doc_id, use_valkyrie: false)
|
68
68
|
terms.each do |field|
|
69
69
|
combined_attributes[field] ||= []
|
70
70
|
combined_attributes[field] = (combined_attributes[field] + work[field].to_a).uniq
|
@@ -7,7 +7,7 @@ module Hyrax
|
|
7
7
|
# Used by the search builder
|
8
8
|
attr_reader :scope
|
9
9
|
|
10
|
-
delegate :id, :depositor, :permissions, :human_readable_type, :member_ids, :nestable?, to: :model
|
10
|
+
delegate :id, :depositor, :permissions, :human_readable_type, :member_ids, :nestable?, :alt_title, to: :model
|
11
11
|
|
12
12
|
class_attribute :membership_service_class
|
13
13
|
|
@@ -20,7 +20,7 @@ module Hyrax
|
|
20
20
|
|
21
21
|
delegate :blacklight_config, to: Hyrax::CollectionsController
|
22
22
|
|
23
|
-
self.terms = [:resource_type, :title, :creator, :contributor, :description,
|
23
|
+
self.terms = [:alt_title, :resource_type, :title, :creator, :contributor, :description,
|
24
24
|
:keyword, :license, :publisher, :date_created, :subject, :language,
|
25
25
|
:representative_id, :thumbnail_id, :identifier, :based_near,
|
26
26
|
:related_url, :visibility, :collection_type_gid]
|
@@ -41,6 +41,36 @@ module Hyrax
|
|
41
41
|
@scope = ProxyScope.new(current_ability, repository, blacklight_config)
|
42
42
|
end
|
43
43
|
|
44
|
+
# Cast back to multi-value when saving
|
45
|
+
# Reads from form
|
46
|
+
def self.model_attributes(attributes)
|
47
|
+
attrs = super
|
48
|
+
return attrs unless attributes[:title]
|
49
|
+
|
50
|
+
attrs[:title] = Array(attributes[:title])
|
51
|
+
return attrs if attributes[:alt_title].nil?
|
52
|
+
Array(attributes[:alt_title]).each do |value|
|
53
|
+
attrs["title"] << value if value != ""
|
54
|
+
end
|
55
|
+
attrs
|
56
|
+
end
|
57
|
+
|
58
|
+
# @param [Symbol] key the field to read
|
59
|
+
# @return the value of the form field.
|
60
|
+
# For display in edit page
|
61
|
+
def [](key)
|
62
|
+
return model.member_of_collection_ids if key == :member_of_collection_ids
|
63
|
+
if key == :title
|
64
|
+
@attributes["title"].each do |value|
|
65
|
+
@attributes["alt_title"] << value
|
66
|
+
end
|
67
|
+
@attributes["alt_title"].delete(@attributes["alt_title"].sort.first) unless @attributes["alt_title"].empty?
|
68
|
+
return @attributes["title"].sort.first unless @attributes["title"].empty?
|
69
|
+
return ""
|
70
|
+
end
|
71
|
+
super
|
72
|
+
end
|
73
|
+
|
44
74
|
def permission_template
|
45
75
|
@permission_template ||= begin
|
46
76
|
template_model = PermissionTemplate.find_or_create_by(source_id: model.id)
|
@@ -60,7 +90,8 @@ module Hyrax
|
|
60
90
|
|
61
91
|
# Terms that appear within the accordion
|
62
92
|
def secondary_terms
|
63
|
-
[:
|
93
|
+
[:alt_title,
|
94
|
+
:creator,
|
64
95
|
:contributor,
|
65
96
|
:keyword,
|
66
97
|
:license,
|
@@ -17,12 +17,10 @@ module Hyrax
|
|
17
17
|
:visibility_during_embargo, :embargo_release_date, :visibility_after_embargo,
|
18
18
|
:visibility_during_lease, :lease_expiration_date, :visibility_after_lease,
|
19
19
|
:visibility, :in_works_ids, :depositor, :on_behalf_of, :permissions,
|
20
|
-
:member_ids, to: :model
|
20
|
+
:member_ids, :alt_title, to: :model
|
21
21
|
|
22
|
-
|
23
|
-
|
24
|
-
self.terms = [:title, :creator, :contributor, :description,
|
25
|
-
:keyword, :license, :rights_statement, :rights_notes, :publisher, :date_created,
|
22
|
+
self.terms = [:title, :alt_title, :creator, :contributor, :description, :abstract,
|
23
|
+
:keyword, :license, :rights_statement, :access_right, :rights_notes, :publisher, :date_created,
|
26
24
|
:subject, :language, :identifier, :based_near, :related_url,
|
27
25
|
:representative_id, :thumbnail_id, :rendering_ids, :files,
|
28
26
|
:visibility_during_embargo, :embargo_release_date, :visibility_after_embargo,
|
@@ -30,18 +28,39 @@ module Hyrax
|
|
30
28
|
:visibility, :ordered_member_ids, :source, :in_works_ids,
|
31
29
|
:member_of_collection_ids, :admin_set_id]
|
32
30
|
|
33
|
-
self.required_fields = [:title, :creator, :
|
31
|
+
self.required_fields = [:title, :creator, :rights_statement]
|
34
32
|
|
35
33
|
# The service that determines the cardinality of each field
|
36
34
|
self.field_metadata_service = Hyrax::FormMetadataService
|
37
35
|
|
38
36
|
def initialize(model, current_ability, controller)
|
39
37
|
@current_ability = current_ability
|
40
|
-
@agreement_accepted = !model.new_record?
|
41
38
|
@controller = controller
|
42
39
|
super(model)
|
43
40
|
end
|
44
41
|
|
42
|
+
# Cast back to multi-value when saving
|
43
|
+
# Reads from form
|
44
|
+
def self.model_attributes(attributes)
|
45
|
+
attrs = super
|
46
|
+
return attrs unless attributes[:title]
|
47
|
+
|
48
|
+
attrs[:title] = Array(attributes[:title])
|
49
|
+
return attrs if attributes[:alt_title].nil?
|
50
|
+
Array(attributes[:alt_title]).each do |value|
|
51
|
+
attrs["title"] << value if value != ""
|
52
|
+
end
|
53
|
+
attrs
|
54
|
+
end
|
55
|
+
|
56
|
+
##
|
57
|
+
# @return [Boolean] whether the deposit agreement has already been
|
58
|
+
# accepted
|
59
|
+
def agreement_accepted?
|
60
|
+
!model.new_record?
|
61
|
+
end
|
62
|
+
alias agreement_accepted agreement_accepted?
|
63
|
+
|
45
64
|
# when the add_works_to_collection parameter is set, they mean to create
|
46
65
|
# a new work and add it to that collection.
|
47
66
|
def member_of_collections
|
@@ -95,8 +114,16 @@ module Hyrax
|
|
95
114
|
|
96
115
|
# @param [Symbol] key the field to read
|
97
116
|
# @return the value of the form field.
|
117
|
+
# For display in edit page
|
98
118
|
def [](key)
|
99
119
|
return model.member_of_collection_ids if key == :member_of_collection_ids
|
120
|
+
if key == :title
|
121
|
+
@attributes["title"].each do |value|
|
122
|
+
@attributes["alt_title"] << value
|
123
|
+
end
|
124
|
+
@attributes["alt_title"].delete(@attributes["alt_title"].sort.first) unless @attributes["alt_title"].empty?
|
125
|
+
return @attributes[key.to_s].sort.first
|
126
|
+
end
|
100
127
|
super
|
101
128
|
end
|
102
129
|
|
@@ -89,7 +89,7 @@ module Hyrax
|
|
89
89
|
# @return [ActiveSupport::SafeBuffer] the html_safe link
|
90
90
|
def link_to_facet_list(values, solr_field, empty_message = "No value entered", separator = ", ")
|
91
91
|
return empty_message if values.blank?
|
92
|
-
facet_field =
|
92
|
+
facet_field = solr_field.to_s + "_sim"
|
93
93
|
safe_join(values.map { |item| link_to_facet(item, facet_field) }, separator)
|
94
94
|
end
|
95
95
|
|
@@ -261,7 +261,7 @@ module Hyrax
|
|
261
261
|
def collection_title_by_id(id)
|
262
262
|
solr_docs = controller.repository.find(id).docs
|
263
263
|
return nil if solr_docs.empty?
|
264
|
-
solr_field = solr_docs.first[
|
264
|
+
solr_field = solr_docs.first["title_tesim"]
|
265
265
|
return nil if solr_field.nil?
|
266
266
|
solr_field.first
|
267
267
|
end
|
@@ -307,8 +307,7 @@ module Hyrax
|
|
307
307
|
def search_state_with_facets(params, facet = {})
|
308
308
|
state = Blacklight::SearchState.new(params, CatalogController.blacklight_config)
|
309
309
|
return state.params if facet.none?
|
310
|
-
state.add_facet_params(
|
311
|
-
facet.values.first)
|
310
|
+
state.add_facet_params(facet.keys.first.to_s + "_sim", facet.values.first)
|
312
311
|
end
|
313
312
|
|
314
313
|
def institution
|
@@ -8,5 +8,13 @@ module Hyrax
|
|
8
8
|
def iiif_viewer_display_partial(work_presenter)
|
9
9
|
'hyrax/base/iiif_viewers/' + work_presenter.iiif_viewer.to_s
|
10
10
|
end
|
11
|
+
|
12
|
+
def universal_viewer_base_url
|
13
|
+
"#{request&.base_url}/uv/uv.html"
|
14
|
+
end
|
15
|
+
|
16
|
+
def universal_viewer_config_url
|
17
|
+
"#{request&.base_url}/uv/uv-config.json"
|
18
|
+
end
|
11
19
|
end
|
12
20
|
end
|
@@ -7,7 +7,7 @@ module Hyrax
|
|
7
7
|
def generate_solr_document
|
8
8
|
super.tap do |solr_doc|
|
9
9
|
# Makes Admin Sets show under the "Admin Sets" tab
|
10
|
-
|
10
|
+
solr_doc['generic_type_sim'] = ['Admin Set']
|
11
11
|
end
|
12
12
|
end
|
13
13
|
end
|
@@ -3,7 +3,7 @@ module Hyrax
|
|
3
3
|
class BasicMetadataIndexer < ActiveFedora::RDF::IndexingService
|
4
4
|
class_attribute :stored_and_facetable_fields, :stored_fields, :symbol_fields
|
5
5
|
self.stored_and_facetable_fields = %i[resource_type creator contributor keyword publisher subject language based_near]
|
6
|
-
self.stored_fields = %i[description license rights_statement rights_notes date_created identifier related_url bibliographic_citation source]
|
6
|
+
self.stored_fields = %i[alt_title description abstract license rights_statement rights_notes access_right date_created identifier related_url bibliographic_citation source]
|
7
7
|
self.symbol_fields = %i[import_url]
|
8
8
|
|
9
9
|
private
|
@@ -11,9 +11,9 @@ module Hyrax
|
|
11
11
|
def generate_solr_document
|
12
12
|
super.tap do |solr_doc|
|
13
13
|
# Makes Collections show under the "Collections" tab
|
14
|
-
|
14
|
+
solr_doc['generic_type_sim'] = ["Collection"]
|
15
15
|
# Index the size of the collection in bytes
|
16
|
-
solr_doc[
|
16
|
+
solr_doc['bytes_lts'] = object.bytes
|
17
17
|
solr_doc['visibility_ssi'] = object.visibility
|
18
18
|
|
19
19
|
object.in_collections.each do |col|
|
@@ -27,6 +27,8 @@ module Hyrax
|
|
27
27
|
solr_doc['duration_tesim'] = object.duration
|
28
28
|
solr_doc['sample_rate_tesim'] = object.sample_rate
|
29
29
|
solr_doc['original_checksum_tesim'] = object.original_checksum
|
30
|
+
solr_doc['alpha_channels_ssi'] = object.alpha_channels
|
31
|
+
solr_doc['original_file_id_ssi'] = original_file_id
|
30
32
|
end
|
31
33
|
end
|
32
34
|
|
@@ -37,6 +39,11 @@ module Hyrax
|
|
37
39
|
object.original_file.digest.first.to_s
|
38
40
|
end
|
39
41
|
|
42
|
+
def original_file_id
|
43
|
+
return unless object.original_file
|
44
|
+
Hyrax::VersioningService.versioned_file_id object.original_file
|
45
|
+
end
|
46
|
+
|
40
47
|
def file_format
|
41
48
|
if object.mime_type.present? && object.format_label.present?
|
42
49
|
"#{object.mime_type.split('/').last} (#{object.format_label.join(', ')})"
|
@@ -1,9 +1,7 @@
|
|
1
1
|
module Hyrax
|
2
2
|
module IndexesWorkflow
|
3
|
-
STORED_BOOL = ActiveFedora::Indexing::Descriptor.new(:boolean, :stored, :indexed)
|
4
|
-
|
5
3
|
mattr_accessor :suppressed_field, instance_writer: false do
|
6
|
-
|
4
|
+
"suppressed_bsi"
|
7
5
|
end
|
8
6
|
|
9
7
|
# Adds thumbnail indexing to the solr document
|
@@ -31,11 +29,11 @@ module Hyrax
|
|
31
29
|
end
|
32
30
|
|
33
31
|
def workflow_state_name_field
|
34
|
-
|
32
|
+
"workflow_state_name_ssim"
|
35
33
|
end
|
36
34
|
|
37
35
|
def workflow_role_field
|
38
|
-
|
36
|
+
"actionable_workflow_roles_ssim"
|
39
37
|
end
|
40
38
|
|
41
39
|
def workflow_roles(entity)
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
module Hyrax
|
3
|
+
module ValkyrieIndexers
|
4
|
+
class BaseIndexer
|
5
|
+
attr_reader :resource
|
6
|
+
def initialize(resource:)
|
7
|
+
@resource = resource
|
8
|
+
end
|
9
|
+
|
10
|
+
def to_solr
|
11
|
+
{
|
12
|
+
"id": resource.id.to_s,
|
13
|
+
"created_at_dtsi": resource.created_at,
|
14
|
+
"updated_at_dtsi": resource.updated_at
|
15
|
+
}
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
@@ -9,7 +9,7 @@ module Hyrax
|
|
9
9
|
solr_doc['member_ids_ssim'] = object.member_ids
|
10
10
|
solr_doc['member_of_collections_ssim'] = object.member_of_collections.map(&:first_title)
|
11
11
|
solr_doc['member_of_collection_ids_ssim'] = object.member_of_collections.map(&:id)
|
12
|
-
|
12
|
+
solr_doc['generic_type_sim'] = ['Work']
|
13
13
|
|
14
14
|
# This enables us to return a Work when we have a FileSet that matches
|
15
15
|
# the search query. While at the same time allowing us not to return Collections
|
@@ -8,7 +8,8 @@ class AttachFilesToWorkJob < Hyrax::ApplicationJob
|
|
8
8
|
validate_files!(uploaded_files)
|
9
9
|
depositor = proxy_or_depositor(work)
|
10
10
|
user = User.find_by_user_key(depositor)
|
11
|
-
|
11
|
+
|
12
|
+
work, work_permissions = create_permissions work, depositor
|
12
13
|
metadata = visibility_attributes(work_attributes)
|
13
14
|
uploaded_files.each do |uploaded_file|
|
14
15
|
next if uploaded_file.file_set_uri.present?
|
@@ -24,6 +25,13 @@ class AttachFilesToWorkJob < Hyrax::ApplicationJob
|
|
24
25
|
|
25
26
|
private
|
26
27
|
|
28
|
+
def create_permissions(work, depositor)
|
29
|
+
work.edit_users += [depositor]
|
30
|
+
work.edit_users = work.edit_users.dup
|
31
|
+
work_permissions = work.permissions.map(&:to_hash)
|
32
|
+
[work, work_permissions]
|
33
|
+
end
|
34
|
+
|
27
35
|
# The attributes used for visibility - sent as initial params to created FileSets.
|
28
36
|
def visibility_attributes(attributes)
|
29
37
|
attributes.slice(:visibility, :visibility_during_lease,
|