hyrax 5.0.0.rc2 → 5.0.0.rc3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +14 -0
- data/.dassie/app/listeners/hyrax_listener.rb +81 -0
- data/.dassie/config/environments/test.rb +0 -5
- data/.dassie/config/initializers/hyrax.rb +5 -0
- data/.dassie/config/initializers/publisher.rb +3 -0
- data/.dassie/config/initializers/riiif.rb +77 -0
- data/.gitignore +4 -0
- data/.koppie/.env +2 -2
- data/.koppie/app/forms/collection_resource_form.rb +1 -0
- data/.koppie/app/indexers/collection_resource_indexer.rb +1 -0
- data/.koppie/app/listeners/hyrax_listener.rb +81 -0
- data/.koppie/app/models/collection.rb +1 -1
- data/.koppie/app/models/collection_resource.rb +1 -0
- data/.koppie/config/analytics.yml +5 -5
- data/.koppie/config/initializers/publisher.rb +3 -0
- data/.koppie/config/initializers/riiif.rb +78 -0
- data/.koppie/config/metadata/collection_resource.yaml +8 -166
- data/.koppie/config/metadata/sample_metadata.yaml +4 -0
- data/CONTAINERS.md +39 -2
- data/Dockerfile +14 -11
- data/Gemfile +8 -7
- data/README.md +2 -0
- data/app/actors/hyrax/actors/base_actor.rb +6 -3
- data/app/actors/hyrax/actors/file_actor.rb +1 -1
- data/app/actors/hyrax/actors/lease_actor.rb +3 -6
- data/app/assets/javascripts/hyrax/save_work/uploaded_files.es6 +10 -2
- data/app/assets/stylesheets/hyrax/sidebar.scss +6 -1
- data/app/controllers/concerns/hyrax/collections_controller_behavior.rb +1 -1
- data/app/controllers/concerns/hyrax/local_file_downloads_controller_behavior.rb +12 -19
- data/app/controllers/concerns/hyrax/stream_file_downloads_controller_behavior.rb +54 -0
- data/app/controllers/concerns/hyrax/valkyrie_downloads_controller_behavior.rb +38 -9
- data/app/controllers/concerns/hyrax/works_controller_behavior.rb +19 -14
- data/app/controllers/hyrax/admin/admin_sets_controller.rb +2 -2
- data/app/controllers/hyrax/admin/analytics/work_reports_controller.rb +5 -5
- data/app/controllers/hyrax/dashboard/collections_controller.rb +2 -2
- data/app/controllers/hyrax/downloads_controller.rb +1 -0
- data/app/controllers/hyrax/file_sets_controller.rb +3 -2
- data/app/controllers/hyrax/my/collections_controller.rb +1 -1
- data/app/forms/concerns/hyrax/basic_metadata_form_fields_behavior.rb +1 -0
- data/app/forms/concerns/hyrax/contained_in_works_behavior.rb +24 -0
- data/app/forms/concerns/hyrax/deposit_agreement_behavior.rb +12 -0
- data/app/forms/concerns/hyrax/leaseability_behavior.rb +49 -0
- data/app/forms/concerns/hyrax/permission_behavior.rb +20 -0
- data/app/forms/hyrax/forms/administrative_set_form.rb +1 -5
- data/app/forms/hyrax/forms/collection_form.rb +19 -0
- data/app/forms/hyrax/forms/file_set_form.rb +5 -0
- data/app/forms/hyrax/forms/pcdm_collection_form.rb +1 -5
- data/app/forms/hyrax/forms/pcdm_object_form.rb +13 -22
- data/app/forms/hyrax/forms/resource_batch_edit_form.rb +7 -2
- data/app/forms/hyrax/forms/resource_form.rb +30 -100
- data/app/forms/hyrax/forms.rb +52 -0
- data/app/helpers/hyrax/hyrax_helper_behavior.rb +2 -0
- data/app/indexers/{hyrax → concerns/hyrax}/location_indexer.rb +1 -5
- data/app/indexers/{hyrax → concerns/hyrax}/permission_indexer.rb +2 -2
- data/app/indexers/{hyrax → concerns/hyrax}/visibility_indexer.rb +1 -1
- data/app/indexers/hyrax/administrative_set_indexer.rb +5 -17
- data/app/indexers/hyrax/indexers/administrative_set_indexer.rb +25 -0
- data/app/indexers/hyrax/indexers/file_set_indexer.rb +144 -0
- data/app/indexers/hyrax/indexers/pcdm_collection_indexer.rb +27 -0
- data/app/indexers/hyrax/indexers/pcdm_object_indexer.rb +72 -0
- data/app/indexers/hyrax/indexers/resource_indexer.rb +86 -0
- data/app/indexers/hyrax/indexers.rb +54 -0
- data/app/indexers/hyrax/pcdm_collection_indexer.rb +5 -18
- data/app/indexers/hyrax/valkyrie_collection_indexer.rb +6 -4
- data/app/indexers/hyrax/valkyrie_file_set_indexer.rb +5 -136
- data/app/indexers/hyrax/valkyrie_indexer.rb +8 -112
- data/app/indexers/hyrax/valkyrie_work_indexer.rb +5 -64
- data/app/indexers/hyrax/work_indexer.rb +1 -0
- data/app/jobs/create_work_job.rb +1 -0
- data/app/models/admin_set.rb +20 -1
- data/app/models/collection.rb +5 -0
- data/app/models/concerns/hyrax/ability/admin_set_ability.rb +13 -28
- data/app/models/concerns/hyrax/ability/collection_ability.rb +26 -28
- data/app/models/concerns/hyrax/ability/resource_ability.rb +19 -0
- data/app/models/concerns/hyrax/ability.rb +11 -9
- data/app/models/concerns/hyrax/collection_behavior.rb +8 -0
- data/app/models/concerns/hyrax/solr_document_behavior.rb +15 -5
- data/app/models/concerns/hyrax/work_behavior.rb +4 -0
- data/app/models/featured_work.rb +12 -4
- data/app/models/file_set.rb +5 -0
- data/app/models/hyrax/administrative_set.rb +1 -1
- data/app/models/hyrax/change_set.rb +2 -2
- data/app/models/hyrax/file_metadata.rb +34 -7
- data/app/models/hyrax/file_set.rb +2 -2
- data/app/models/hyrax/group.rb +9 -38
- data/app/models/hyrax/group_behavior.rb +58 -0
- data/app/models/hyrax/model_registry.rb +111 -0
- data/app/models/hyrax/pcdm_collection.rb +1 -7
- data/app/models/hyrax/resource.rb +66 -8
- data/app/models/hyrax/statistic.rb +1 -1
- data/app/models/hyrax/work.rb +1 -7
- data/app/presenters/hyrax/collapsable_section_presenter.rb +7 -3
- data/app/presenters/hyrax/file_set_presenter.rb +8 -6
- data/app/presenters/hyrax/lease_presenter.rb +4 -0
- data/app/presenters/hyrax/menu_presenter.rb +14 -2
- data/app/presenters/hyrax/pcdm_member_presenter_factory.rb +1 -1
- data/app/presenters/hyrax/version_list_presenter.rb +6 -4
- data/app/search_builders/hyrax/admin_set_search_builder.rb +1 -1
- data/app/search_builders/hyrax/catalog_search_builder.rb +2 -2
- data/app/search_builders/hyrax/dashboard/collections_search_builder.rb +5 -3
- data/app/search_builders/hyrax/exposed_models_relation.rb +1 -1
- data/app/search_builders/hyrax/file_set_search_builder.rb +1 -1
- data/app/search_builders/hyrax/filter_by_type.rb +3 -2
- data/app/search_builders/hyrax/member_with_files_search_builder.rb +1 -1
- data/app/search_builders/hyrax/my/collections_search_builder.rb +2 -2
- data/app/search_builders/hyrax/my/find_works_search_builder.rb +8 -3
- data/app/services/hyrax/access_control_list.rb +21 -4
- data/app/services/hyrax/action/create_valkyrie_work.rb +80 -0
- data/app/services/hyrax/admin_set_create_service.rb +7 -3
- data/app/services/hyrax/admin_set_service.rb +2 -2
- data/app/services/hyrax/collections/collection_member_search_service.rb +2 -0
- data/app/services/hyrax/collections/permissions_service.rb +27 -9
- data/app/services/hyrax/custom_queries/find_collections_by_type.rb +1 -1
- data/app/services/hyrax/custom_queries/find_file_metadata.rb +1 -1
- data/app/services/hyrax/custom_queries/navigators/find_files.rb +1 -1
- data/app/services/hyrax/custom_queries/navigators/parent_work_navigator.rb +1 -1
- data/app/services/hyrax/edit_permissions_service.rb +1 -1
- data/app/services/hyrax/embargo_manager.rb +1 -1
- data/app/services/hyrax/file_set_file_service.rb +21 -10
- data/app/services/hyrax/form_factory.rb +1 -1
- data/app/services/hyrax/lease_manager.rb +39 -16
- data/app/services/hyrax/lease_service.rb +12 -6
- data/app/services/hyrax/listeners/acl_index_listener.rb +1 -1
- data/app/services/hyrax/listeners/active_fedora_acl_index_listener.rb +1 -1
- data/app/services/hyrax/listeners/member_cleanup_listener.rb +15 -1
- data/app/services/hyrax/listeners/object_lifecycle_listener.rb +5 -1
- data/app/services/hyrax/listeners/trophy_cleanup_listener.rb +2 -1
- data/app/services/hyrax/listeners/workflow_listener.rb +13 -0
- data/app/services/hyrax/listeners.rb +2 -1
- data/app/services/hyrax/location_service.rb +3 -0
- data/app/services/hyrax/multiple_membership_checker.rb +1 -1
- data/app/services/hyrax/simple_schema_loader.rb +1 -1
- data/app/services/hyrax/solr_service.rb +19 -5
- data/app/services/hyrax/statistics/collections/over_time.rb +1 -1
- data/app/services/hyrax/statistics/query_service.rb +6 -0
- data/app/services/hyrax/valkyrie_persist_derivatives.rb +11 -4
- data/app/services/hyrax/valkyrie_upload.rb +1 -1
- data/app/services/hyrax/work_uploads_handler.rb +5 -4
- data/app/views/_user_util_links.html.erb +1 -1
- data/app/views/collections/edit_fields/_based_near.html.erb +11 -7
- data/app/views/hyrax/admin/admin_sets/_form_participants.html.erb +67 -67
- data/app/views/hyrax/admin/admin_sets/edit.html.erb +1 -1
- data/app/views/hyrax/admin/collection_types/_form_participants.html.erb +3 -1
- data/app/views/hyrax/base/_attribute_rows.html.erb +1 -0
- data/app/views/hyrax/base/_base_form_files_prepend.html.erb +4 -0
- data/app/views/hyrax/base/_form_files.html.erb +65 -64
- data/app/views/hyrax/base/show.html.erb +2 -3
- data/app/views/hyrax/collections/show.html.erb +7 -9
- data/app/views/hyrax/dashboard/_sidebar.html.erb +4 -3
- data/app/views/hyrax/dashboard/collections/_form_share_table.html.erb +2 -2
- data/app/views/hyrax/file_sets/media_display/_audio.html.erb +1 -1
- data/app/views/hyrax/file_sets/media_display/_video.html.erb +1 -1
- data/app/views/hyrax/my/facet.html.erb +1 -1
- data/app/views/layouts/_head_tag_content.html.erb +1 -0
- data/app/views/shared/_footer.html.erb +1 -1
- data/chart/hyrax/Chart.yaml +3 -3
- data/chart/hyrax/values.yaml +9 -1
- data/config/initializers/listeners.rb +1 -1
- data/config/locales/hyrax.de.yml +5 -0
- data/config/locales/hyrax.en.yml +10 -0
- data/config/locales/hyrax.es.yml +5 -0
- data/config/locales/hyrax.fr.yml +5 -0
- data/config/locales/hyrax.it.yml +5 -0
- data/config/locales/hyrax.pt-BR.yml +5 -0
- data/config/locales/hyrax.zh.yml +5 -0
- data/config/metadata/basic_metadata.yaml +1 -0
- data/config/metadata/core_metadata.yaml +2 -0
- data/config/metadata/file_set_metadata.yaml +2 -0
- data/docker-compose-koppie.yml +3 -3
- data/docker-compose-sirenia.yml +3 -3
- data/documentation/developing-your-hyrax-based-app.md +77 -60
- data/hyrax.gemspec +9 -2
- data/lib/generators/hyrax/collection_resource/templates/collection_indexer.rb.erb +1 -1
- data/lib/generators/hyrax/config_generator.rb +12 -0
- data/lib/generators/hyrax/install_generator.rb +37 -7
- data/lib/generators/hyrax/listeners_generator.rb +18 -0
- data/lib/generators/hyrax/models_generator.rb +1 -10
- data/lib/generators/hyrax/riiif_generator.rb +6 -4
- data/lib/generators/hyrax/templates/.env +9 -0
- data/lib/generators/hyrax/templates/.lando.yml +50 -0
- data/lib/generators/hyrax/templates/app/listeners/hyrax_listener.rb +81 -0
- data/lib/generators/hyrax/templates/app/models/file_set.rb +1 -2
- data/lib/generators/hyrax/templates/config/initializers/1_valkyrie.rb +102 -0
- data/lib/generators/hyrax/templates/config/initializers/file_services.rb +6 -0
- data/lib/generators/hyrax/templates/config/initializers/hyrax.rb +41 -5
- data/lib/generators/hyrax/templates/config/initializers/publisher.rb +3 -0
- data/lib/generators/hyrax/templates/config/initializers/riiif.rb +77 -0
- data/lib/generators/hyrax/templates/config/locales/hyrax.de.yml +1 -1
- data/lib/generators/hyrax/templates/config/locales/hyrax.en.yml +1 -1
- data/lib/generators/hyrax/templates/config/locales/hyrax.es.yml +1 -1
- data/lib/generators/hyrax/templates/config/locales/hyrax.fr.yml +1 -1
- data/lib/generators/hyrax/templates/config/locales/hyrax.it.yml +1 -1
- data/lib/generators/hyrax/templates/config/locales/hyrax.pt-BR.yml +1 -1
- data/lib/generators/hyrax/templates/config/locales/hyrax.zh.yml +1 -1
- data/lib/generators/hyrax/templates/config/redis.yml +3 -6
- data/lib/generators/hyrax/templates/config/valkyrie_index.yml +4 -9
- data/lib/generators/hyrax/work_resource/templates/indexer.rb.erb +1 -1
- data/lib/hyrax/configuration.rb +95 -7
- data/lib/hyrax/indexer.rb +1 -1
- data/lib/hyrax/publisher.rb +5 -2
- data/lib/hyrax/resource_sync/change_list_writer.rb +1 -1
- data/lib/hyrax/resource_sync/resource_list_writer.rb +1 -1
- data/lib/hyrax/specs/capybara.rb +1 -0
- data/lib/hyrax/specs/shared_specs/hydra_works.rb +78 -20
- data/lib/hyrax/specs/shared_specs/indexers.rb +1 -1
- data/lib/hyrax/transactions/admin_set_destroy.rb +2 -1
- data/lib/hyrax/transactions/container.rb +5 -0
- data/lib/hyrax/transactions/steps/add_to_parent.rb +1 -0
- data/lib/hyrax/transactions/steps/check_for_default_admin_set.rb +32 -0
- data/lib/hyrax/transactions/steps/check_for_empty_admin_set.rb +1 -1
- data/lib/hyrax/transactions/steps/save.rb +2 -1
- data/lib/hyrax/transactions/steps/set_user_as_creator.rb +1 -1
- data/lib/hyrax/transactions/steps/update_work_members.rb +2 -0
- data/lib/hyrax/version.rb +1 -1
- data/lib/hyrax.rb +1 -0
- data/lib/tasks/embargo_lease.rake +1 -0
- data/lib/valkyrie/indexing/solr/indexing_adapter.rb +21 -7
- data/lib/wings/active_fedora_converter/default_work.rb +4 -5
- data/lib/wings/active_fedora_converter/file_metadata_node.rb +1 -1
- data/lib/wings/model_registry.rb +8 -0
- data/lib/wings/model_transformer.rb +19 -2
- data/lib/wings/orm_converter.rb +4 -0
- data/lib/wings/services/custom_queries/find_ids_by_model.rb +2 -2
- data/lib/wings/valkyrie/query_service.rb +5 -2
- data/lib/wings.rb +3 -0
- data/spec/factories/access_control.rb +12 -0
- data/spec/factories/admin_sets.rb +32 -0
- data/spec/factories/admin_sets_lw.rb +222 -0
- data/spec/factories/administrative_sets.rb +79 -0
- data/spec/factories/api_items.rb +92 -0
- data/spec/factories/collection_branding_infos.rb +12 -0
- data/spec/factories/collection_type_participants.rb +9 -0
- data/spec/factories/collection_types.rb +139 -0
- data/spec/factories/collections.rb +282 -0
- data/spec/factories/collections_factory.rb +107 -0
- data/spec/factories/content_blocks.rb +5 -0
- data/spec/factories/counter_metrics.rb +12 -0
- data/spec/factories/featured_works.rb +5 -0
- data/spec/factories/file_sets.rb +45 -0
- data/spec/factories/generic_works.rb +200 -0
- data/spec/factories/hyrax_collection.rb +92 -0
- data/spec/factories/hyrax_default_admin_set.rb +7 -0
- data/spec/factories/hyrax_embargo.rb +18 -0
- data/spec/factories/hyrax_file_metadata.rb +92 -0
- data/spec/factories/hyrax_file_set.rb +129 -0
- data/spec/factories/hyrax_lease.rb +18 -0
- data/spec/factories/hyrax_resource.rb +15 -0
- data/spec/factories/hyrax_work.rb +221 -0
- data/spec/factories/object_id.rb +7 -0
- data/spec/factories/operations.rb +22 -0
- data/spec/factories/permission.rb +7 -0
- data/spec/factories/permission_template_accesses.rb +17 -0
- data/spec/factories/permission_templates.rb +111 -0
- data/spec/factories/proxy_deposit_requests.rb +7 -0
- data/spec/factories/single_use_links.rb +14 -0
- data/spec/factories/sipity_entities.rb +17 -0
- data/spec/factories/uploaded_files.rb +11 -0
- data/spec/factories/users.rb +52 -0
- data/spec/factories/workflow_actions.rb +7 -0
- data/spec/factories/workflow_states.rb +7 -0
- data/spec/factories/workflows.rb +7 -0
- data/spec/support/book_resource.rb +36 -0
- data/spec/support/can_can_overrides.rb +43 -0
- data/spec/support/clean_solr.rb +7 -0
- data/spec/support/controller_level_helpers.rb +27 -0
- data/spec/support/factory_helpers.rb +94 -0
- data/spec/support/fakes/fake_actor.rb +22 -0
- data/spec/support/fakes/fake_authority.rb +14 -0
- data/spec/support/fakes/fake_search_builder_scope.rb +44 -0
- data/spec/support/fakes/indexing_adapter.rb +17 -0
- data/spec/support/fakes/test_hydra_group_service.rb +55 -0
- data/spec/support/features/batch_edit_actions.rb +37 -0
- data/spec/support/features/session_helpers.rb +15 -0
- data/spec/support/features/workflow.rb +10 -0
- data/spec/support/features.rb +11 -0
- data/spec/support/form_with_validations.rb +15 -0
- data/spec/support/input_support.rb +12 -0
- data/spec/support/logging_formatter.rb +67 -0
- data/spec/support/matchers/api_responses.rb +27 -0
- data/spec/support/matchers/collection_type_property_matchers.rb +30 -0
- data/spec/support/matchers/embargo.rb +9 -0
- data/spec/support/matchers/lease.rb +9 -0
- data/spec/support/matchers/match_valkyrie_ids_with_af_ids.rb +12 -0
- data/spec/support/matchers/pcdm_matchers.rb +34 -0
- data/spec/support/matchers/permission.rb +31 -0
- data/spec/support/matchers/response_matchers.rb +8 -0
- data/spec/support/optional_example.rb +17 -0
- data/spec/support/rake.rb +42 -0
- data/spec/support/selectors.rb +112 -0
- data/spec/support/shared_examples_for_collection_presenter.rb +44 -0
- data/spec/support/simple_work.rb +28 -0
- data/spec/support/spec_statistic.rb +24 -0
- data/spec/support/speedup.rb +7 -0
- data/spec/support/statistic_helper.rb +10 -0
- data/spec/support/valkyrie_indexing.rb +2 -0
- data/spec/support/wings_models.rb +9 -0
- data/template.rb +1 -3
- metadata +112 -30
- data/app/indexers/hyrax/resource_indexer.rb +0 -15
- data/app/models/concerns/hyrax/riiif_file.rb +0 -30
- data/app/services/hyrax/characterization/model_wrapper.rb +0 -0
- data/app/services/hyrax/custom_queries/find_by_collection_type.rb +0 -0
- data/app/services/hyrax/query_service.rb +0 -0
- data/app/services/hyrax/riiif_file_resolver.rb +0 -50
- data/lib/hyrax/specs/disable_animations_in_test_environment.rb +0 -53
- /data/app/indexers/{hyrax → concerns/hyrax}/thumbnail_indexer.rb +0 -0
@@ -2,121 +2,17 @@
|
|
2
2
|
|
3
3
|
module Hyrax
|
4
4
|
##
|
5
|
-
# @
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
# The default {Hyrax::ValkyrieIndexer} implementation provides minimal
|
11
|
-
# indexing for the Valkyrie id and the reserved +#created_at+ and
|
12
|
-
# +#updated_at+ attributes.
|
13
|
-
#
|
14
|
-
# Custom indexers inheriting from others are responsible for providing a full
|
15
|
-
# index hash. A common pattern for doing this is to employ method composition
|
16
|
-
# to retrieve the parent's data, then modify it:
|
17
|
-
# +def to_solr; super.tap { |index_document| transform(index_document) }; end+.
|
18
|
-
# This technique creates infinitely composible index building behavior, with
|
19
|
-
# indexers that can always see the state of the resource and the full current
|
20
|
-
# index document.
|
21
|
-
#
|
22
|
-
# It's recommended to *never* modify the state of +resource+ in an indexer.
|
23
|
-
#
|
24
|
-
# @example defining a custom indexer with composition
|
25
|
-
# class MyIndexer < ValkyrieIndexer
|
26
|
-
# def to_solr
|
27
|
-
# super.tap do |index_document|
|
28
|
-
# index_document[:my_field_tesim] = resource.my_field.map(&:to_s)
|
29
|
-
# index_document[:other_field_ssim] = resource.other_field
|
30
|
-
# end
|
31
|
-
# end
|
32
|
-
# end
|
33
|
-
#
|
34
|
-
# @example pairing an indexer with a model class
|
35
|
-
# class Book < Hyrax::Resource
|
36
|
-
# attribute :author
|
37
|
-
# end
|
38
|
-
#
|
39
|
-
# # match by name "#{model_class}Indexer"
|
40
|
-
# class BookIndexer < ValkyrieIndexer
|
41
|
-
# def to_solr
|
42
|
-
# super.tap do |index_document|
|
43
|
-
# index_document[:author_si] = resource.author
|
44
|
-
# end
|
45
|
-
# end
|
46
|
-
# end
|
47
|
-
#
|
48
|
-
# ValkyrieIndexer.for(resource: Book.new) # => #<BookIndexer:0x0000563715a9f1f8 ...>
|
49
|
-
#
|
50
|
-
# @see Valkyrie::Indexing::Solr::IndexingAdapter
|
51
|
-
class ValkyrieIndexer
|
52
|
-
##
|
53
|
-
# @!attribute [r] resource
|
54
|
-
# @api public
|
55
|
-
# @return [Valkyrie::Resource]
|
56
|
-
attr_reader :resource
|
57
|
-
|
58
|
-
##
|
59
|
-
# @api private
|
60
|
-
# @param [Valkyrie::Resource] resource
|
61
|
-
def initialize(resource:)
|
62
|
-
@resource = resource
|
63
|
-
end
|
64
|
-
|
65
|
-
##
|
66
|
-
# @api public
|
67
|
-
# @return [HashWithIndifferentAccess<Symbol, Object>]
|
68
|
-
def to_solr
|
69
|
-
{
|
70
|
-
"id": resource.id.to_s,
|
71
|
-
"date_uploaded_dtsi": resource.created_at,
|
72
|
-
"date_modified_dtsi": resource.updated_at,
|
73
|
-
"system_create_dtsi": resource.created_at,
|
74
|
-
"system_modified_dtsi": resource.updated_at,
|
75
|
-
"has_model_ssim": resource.internal_resource
|
76
|
-
}.with_indifferent_access
|
77
|
-
end
|
78
|
-
|
79
|
-
##
|
80
|
-
# @api private
|
81
|
-
# @note provided for ActiveFedora compatibility.
|
82
|
-
def generate_solr_document
|
83
|
-
to_solr.stringify_keys
|
5
|
+
# @deprecated use +Hyrax::Indexers::ResourceIndexer+ instead
|
6
|
+
class ValkyrieIndexer < Hyrax::Indexers::ResourceIndexer
|
7
|
+
def initialize(*args, **kwargs)
|
8
|
+
Deprecation.warn "`Hyrax::ValkyrieIndexer` is deprecated. Use `Hyrax::Indexers::ResourceIndexer` instead."
|
9
|
+
super
|
84
10
|
end
|
85
11
|
|
86
12
|
class << self
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
# or an inherited class
|
91
|
-
# @note This factory will attempt to return an indexer following a naming convention
|
92
|
-
# where the indexer for a resource class is expected to be the class name
|
93
|
-
# appended with 'Indexer'. It will return default {ValkyrieIndexer} if
|
94
|
-
# an indexer class following the naming convention is not found.
|
95
|
-
#
|
96
|
-
# @return [Valkyrie::Indexer] an instance of ValkyrieIndexer or an inherited class based on naming convention
|
97
|
-
#
|
98
|
-
# @example
|
99
|
-
# ValkyrieIndexer.for(resource: Book.new) # => #<BookIndexer ...>
|
100
|
-
def for(resource:)
|
101
|
-
case resource
|
102
|
-
when Hyrax::FileSet
|
103
|
-
Hyrax::ValkyrieFileSetIndexer.new(resource: resource)
|
104
|
-
else
|
105
|
-
indexer_class_for(resource).new(resource: resource)
|
106
|
-
end
|
107
|
-
end
|
108
|
-
|
109
|
-
private
|
110
|
-
|
111
|
-
##
|
112
|
-
# @param [Object]
|
113
|
-
# @return [Class]
|
114
|
-
def indexer_class_for(resource)
|
115
|
-
indexer_class = "#{resource.class.name}Indexer".safe_constantize
|
116
|
-
|
117
|
-
return indexer_class if indexer_class.is_a?(Class) &&
|
118
|
-
indexer_class.instance_methods.include?(:to_solr)
|
119
|
-
resource.try(:work?) ? Hyrax::ValkyrieWorkIndexer : ValkyrieIndexer
|
13
|
+
def for(*args, **kwargs)
|
14
|
+
Deprecation.warn "`Hyrax::ValkyrieIndexer.for` is deprecated. Use `Hyrax::Indexers::ResourceIndexer.for` instead."
|
15
|
+
Hyrax::Indexers::ResourceIndexer.for(*args, **kwargs)
|
120
16
|
end
|
121
17
|
end
|
122
18
|
end
|
@@ -2,70 +2,11 @@
|
|
2
2
|
|
3
3
|
module Hyrax
|
4
4
|
##
|
5
|
-
#
|
6
|
-
class ValkyrieWorkIndexer < Hyrax::
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
include Hyrax::LocationIndexer
|
11
|
-
include Hyrax::ThumbnailIndexer
|
12
|
-
include Hyrax::Indexer(:core_metadata)
|
13
|
-
|
14
|
-
def to_solr # rubocop:disable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/MethodLength
|
15
|
-
super.tap do |solr_doc|
|
16
|
-
solr_doc['generic_type_si'] = 'Work'
|
17
|
-
solr_doc['suppressed_bsi'] = suppressed?(resource)
|
18
|
-
solr_doc['admin_set_id_ssim'] = [resource.admin_set_id.to_s]
|
19
|
-
admin_set_label = admin_set_label(resource)
|
20
|
-
solr_doc['admin_set_sim'] = admin_set_label
|
21
|
-
solr_doc['admin_set_tesim'] = admin_set_label
|
22
|
-
solr_doc["#{Hyrax.config.admin_set_predicate.qname.last}_ssim"] = [resource.admin_set_id.to_s]
|
23
|
-
solr_doc['member_of_collection_ids_ssim'] = resource.member_of_collection_ids.map(&:to_s)
|
24
|
-
solr_doc['member_ids_ssim'] = resource.member_ids.map(&:to_s)
|
25
|
-
solr_doc['depositor_ssim'] = [resource.depositor]
|
26
|
-
solr_doc['depositor_tesim'] = [resource.depositor]
|
27
|
-
solr_doc['hasRelatedMediaFragment_ssim'] = [resource.representative_id.to_s]
|
28
|
-
solr_doc['hasRelatedImage_ssim'] = [resource.thumbnail_id.to_s]
|
29
|
-
solr_doc['hasFormat_ssim'] = resource.rendering_ids.map(&:to_s) if resource.rendering_ids.present?
|
30
|
-
index_embargo(solr_doc)
|
31
|
-
index_lease(solr_doc)
|
32
|
-
end
|
33
|
-
end
|
34
|
-
|
35
|
-
private
|
36
|
-
|
37
|
-
def suppressed?(resource)
|
38
|
-
Hyrax::ResourceStatus.new(resource: resource).inactive?
|
39
|
-
end
|
40
|
-
|
41
|
-
def admin_set_label(resource)
|
42
|
-
return if resource.admin_set_id.blank?
|
43
|
-
admin_set = Hyrax.query_service.find_by(id: resource.admin_set_id)
|
44
|
-
admin_set.title
|
45
|
-
end
|
46
|
-
|
47
|
-
def index_embargo(doc)
|
48
|
-
if resource.embargo&.active?
|
49
|
-
doc['embargo_release_date_dtsi'] = resource.embargo.embargo_release_date&.to_datetime
|
50
|
-
doc['visibility_after_embargo_ssim'] = resource.embargo.visibility_after_embargo
|
51
|
-
doc['visibility_during_embargo_ssim'] = resource.embargo.visibility_during_embargo
|
52
|
-
else
|
53
|
-
doc['embargo_history_ssim'] = resource&.embargo&.embargo_history
|
54
|
-
end
|
55
|
-
|
56
|
-
doc
|
57
|
-
end
|
58
|
-
|
59
|
-
def index_lease(doc)
|
60
|
-
if resource.lease&.active?
|
61
|
-
doc['lease_expiration_date_dtsi'] = resource.lease.lease_expiration_date&.to_datetime
|
62
|
-
doc['visibility_after_lease_ssim'] = resource.lease.visibility_after_lease
|
63
|
-
doc['visibility_during_lease_ssim'] = resource.lease.visibility_during_lease
|
64
|
-
else
|
65
|
-
doc['lease_history_ssim'] = resource&.lease&.lease_history
|
66
|
-
end
|
67
|
-
|
68
|
-
doc
|
5
|
+
# @deprecated use +Hyrax::Indexers::PcdmObjectIndexer+ instead
|
6
|
+
class ValkyrieWorkIndexer < Hyrax::Indexers::PcdmObjectIndexer
|
7
|
+
def initialize(*args, **kwargs)
|
8
|
+
Deprecation.warn "`Hyrax::ValkyrieWorkIndexer` is deprecated. Use `Hyrax::Indexers::PcdmObjectIndexer` instead."
|
9
|
+
super
|
69
10
|
end
|
70
11
|
end
|
71
12
|
end
|
@@ -15,6 +15,7 @@ module Hyrax
|
|
15
15
|
# This enables us to return a Work when we have a FileSet that matches
|
16
16
|
# the search query. While at the same time allowing us not to return Collections
|
17
17
|
# when a work in the collection matches the query.
|
18
|
+
# NOTE: file_set_ids_ssim is not indexed for valkyrie resources
|
18
19
|
solr_doc['file_set_ids_ssim'] = solr_doc['member_ids_ssim']
|
19
20
|
solr_doc['visibility_ssi'] = object.visibility
|
20
21
|
|
data/app/jobs/create_work_job.rb
CHANGED
@@ -49,6 +49,7 @@ class CreateWorkJob < Hyrax::ApplicationJob
|
|
49
49
|
.with_step_args(
|
50
50
|
'work_resource.add_file_sets' => { uploaded_files: files },
|
51
51
|
'change_set.set_user_as_depositor' => { user: user },
|
52
|
+
'work_resource.change_depositor' => { user: ::User.find_by_user_key(form.on_behalf_of) },
|
52
53
|
'work_resource.save_acl' => { permissions_params: permissions_params }
|
53
54
|
)
|
54
55
|
.call(form)
|
data/app/models/admin_set.rb
CHANGED
@@ -28,7 +28,26 @@ class AdminSet < ActiveFedora::Base
|
|
28
28
|
DEFAULT_WORKFLOW_NAME = Hyrax.config.default_active_workflow_name
|
29
29
|
|
30
30
|
validates_with Hyrax::HasOneTitleValidator
|
31
|
+
|
32
|
+
##
|
33
|
+
# @!group Class Attributes
|
34
|
+
#
|
35
|
+
# @!attribute internal_resource
|
36
|
+
# @return [String]
|
37
|
+
class_attribute :internal_resource, default: "AdminSet"
|
38
|
+
|
31
39
|
class_attribute :human_readable_short_description
|
40
|
+
# @!endgroup Class Attributes
|
41
|
+
##
|
42
|
+
|
43
|
+
def self.to_rdf_representation
|
44
|
+
internal_resource
|
45
|
+
end
|
46
|
+
|
47
|
+
def to_rdf_representation
|
48
|
+
internal_resource
|
49
|
+
end
|
50
|
+
|
32
51
|
self.indexer = Hyrax::AdminSetIndexer
|
33
52
|
|
34
53
|
property :title, predicate: ::RDF::Vocab::DC.title
|
@@ -39,7 +58,7 @@ class AdminSet < ActiveFedora::Base
|
|
39
58
|
predicate: Hyrax.config.admin_set_predicate,
|
40
59
|
class_name: 'ActiveFedora::Base'
|
41
60
|
|
42
|
-
before_destroy :check_if_not_default_set, :check_if_empty
|
61
|
+
before_destroy :check_if_not_default_set, :check_if_empty, prepend: true
|
43
62
|
after_destroy :destroy_permission_template
|
44
63
|
|
45
64
|
def collection_type_gid
|
@@ -3,49 +3,34 @@ module Hyrax
|
|
3
3
|
module Ability
|
4
4
|
module AdminSetAbility
|
5
5
|
def admin_set_abilities # rubocop:disable Metrics/MethodLength, Metrics/AbcSize
|
6
|
+
models = Hyrax::ModelRegistry.admin_set_classes
|
6
7
|
if admin?
|
7
|
-
can :manage,
|
8
|
-
can :manage_any,
|
9
|
-
can :
|
10
|
-
can :
|
11
|
-
can :create_any, Hyrax::AdministrativeSet
|
12
|
-
can :view_admin_show_any, AdminSet
|
13
|
-
can :view_admin_show_any, Hyrax::AdministrativeSet
|
8
|
+
can :manage, models
|
9
|
+
can :manage_any, models
|
10
|
+
can :create_any, models
|
11
|
+
can :view_admin_show_any, models
|
14
12
|
else
|
15
|
-
if Hyrax::Collections::PermissionsService.can_manage_any_admin_set?(ability: self)
|
16
|
-
can :manage_any, AdminSet
|
17
|
-
can :manage_any, Hyrax::AdministrativeSet
|
18
|
-
end
|
13
|
+
can :manage_any, models if Hyrax::Collections::PermissionsService.can_manage_any_admin_set?(ability: self)
|
19
14
|
if Hyrax::CollectionTypes::PermissionsService.can_create_admin_set_collection_type?(ability: self)
|
20
|
-
can :create,
|
21
|
-
can :create_any,
|
22
|
-
can :create_any, Hyrax::AdministrativeSet
|
23
|
-
end
|
24
|
-
if Hyrax::Collections::PermissionsService.can_view_admin_show_for_any_admin_set?(ability: self)
|
25
|
-
can :view_admin_show_any, AdminSet
|
26
|
-
can :view_admin_show_any, Hyrax::AdministrativeSet
|
15
|
+
can :create, models
|
16
|
+
can :create_any, models
|
27
17
|
end
|
18
|
+
can :view_admin_show_any, models if Hyrax::Collections::PermissionsService.can_view_admin_show_for_any_admin_set?(ability: self)
|
28
19
|
# [:edit, :update, :destroy] for AdminSet is controlled by Hydra::Ability #edit_permissions
|
29
|
-
can [:edit, :update, :destroy],
|
20
|
+
can [:edit, :update, :destroy], models do |admin_set| # for test by solr_doc, see solr_document_ability.rb
|
30
21
|
test_edit(admin_set.id)
|
31
22
|
end
|
32
23
|
|
33
|
-
can :deposit,
|
34
|
-
Hyrax::Collections::PermissionsService.can_deposit_in_collection?(ability: self, collection_id: admin_set.id)
|
35
|
-
end
|
36
|
-
can :deposit, Hyrax::AdministrativeSet do |admin_set| # for test by solr_doc, see collection_ability.rb
|
24
|
+
can :deposit, models do |admin_set| # for test by solr_doc, see collection_ability.rb
|
37
25
|
Hyrax::Collections::PermissionsService.can_deposit_in_collection?(ability: self, collection_id: admin_set.id)
|
38
26
|
end
|
39
27
|
|
40
|
-
can :view_admin_show,
|
41
|
-
Hyrax::Collections::PermissionsService.can_view_admin_show_for_collection?(ability: self, collection_id: admin_set.id)
|
42
|
-
end
|
43
|
-
can :view_admin_show, Hyrax::AdministrativeSet do |admin_set| # admin show page # for test by solr_doc, see collection_ability.rb
|
28
|
+
can :view_admin_show, models do |admin_set| # admin show page # for test by solr_doc, see collection_ability.rb
|
44
29
|
Hyrax::Collections::PermissionsService.can_view_admin_show_for_collection?(ability: self, collection_id: admin_set.id)
|
45
30
|
end
|
46
31
|
|
47
32
|
# [:read] for AdminSet is controlled by Hydra::Ability #read_permissions
|
48
|
-
can :read,
|
33
|
+
can :read, models do |admin_set| # admin show page # for test by solr_doc, see collection_ability.rb
|
49
34
|
test_read(admin_set.id)
|
50
35
|
end
|
51
36
|
end
|
@@ -3,52 +3,50 @@ module Hyrax
|
|
3
3
|
module Ability
|
4
4
|
module CollectionAbility
|
5
5
|
def collection_abilities # rubocop:disable Metrics/MethodLength, Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity
|
6
|
-
models =
|
6
|
+
models = Hyrax::ModelRegistry.collection_classes
|
7
7
|
if admin?
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
can :view_admin_show_any, collection_model
|
13
|
-
end
|
8
|
+
can :manage, models
|
9
|
+
can :manage_any, models
|
10
|
+
can :create_any, models
|
11
|
+
can :view_admin_show_any, models
|
14
12
|
else
|
15
|
-
|
16
|
-
Hyrax::Collections::PermissionsService.can_manage_any_collection?(ability: self)
|
13
|
+
can :manage_any, models if Hyrax::Collections::PermissionsService.can_manage_any_collection?(ability: self)
|
17
14
|
|
18
|
-
|
19
|
-
Hyrax::CollectionTypes::PermissionsService.can_create_any_collection_type?(ability: self)
|
15
|
+
can :create_any, models if Hyrax::CollectionTypes::PermissionsService.can_create_any_collection_type?(ability: self)
|
20
16
|
|
21
|
-
|
22
|
-
Hyrax::Collections::PermissionsService.can_view_admin_show_for_any_collection?(ability: self)
|
17
|
+
can :view_admin_show_any, models if Hyrax::Collections::PermissionsService.can_view_admin_show_for_any_collection?(ability: self)
|
23
18
|
|
24
|
-
models
|
25
|
-
|
26
|
-
|
27
|
-
end
|
19
|
+
can [:edit, :update, :destroy], models do |collection|
|
20
|
+
test_edit(collection.id)
|
21
|
+
end
|
28
22
|
|
29
|
-
|
30
|
-
|
31
|
-
|
23
|
+
can :deposit, models do |collection|
|
24
|
+
Hyrax::Collections::PermissionsService.can_deposit_in_collection?(ability: self, collection_id: collection.id)
|
25
|
+
end
|
32
26
|
|
33
|
-
|
34
|
-
|
35
|
-
|
27
|
+
can :view_admin_show, models do |collection| # admin show page
|
28
|
+
Hyrax::Collections::PermissionsService.can_view_admin_show_for_collection?(ability: self, collection_id: collection.id)
|
29
|
+
end
|
36
30
|
|
37
|
-
|
38
|
-
|
39
|
-
end
|
31
|
+
can :read, models do |collection| # public show page
|
32
|
+
test_read(collection.id)
|
40
33
|
end
|
41
34
|
|
42
35
|
can :deposit, ::SolrDocument do |solr_doc|
|
43
36
|
Hyrax::Collections::PermissionsService.can_deposit_in_collection?(ability: self, collection_id: solr_doc.id) # checks collections and admin_sets
|
44
37
|
end
|
45
|
-
|
46
|
-
|
38
|
+
|
39
|
+
can :deposit, [::String, ::Valkyrie::ID] do |collection_id|
|
40
|
+
Hyrax::Collections::PermissionsService.can_deposit_in_collection?(ability: self, collection_id: collection_id.to_s)
|
47
41
|
end
|
48
42
|
|
49
43
|
can :view_admin_show, ::SolrDocument do |solr_doc| # admin show page
|
50
44
|
Hyrax::Collections::PermissionsService.can_view_admin_show_for_collection?(ability: self, collection_id: solr_doc.id) # checks collections and admin_sets
|
51
45
|
end
|
46
|
+
|
47
|
+
can :view_admin_show, [::String, ::Valkyrie::ID] do |collection_id| # admin show page
|
48
|
+
Hyrax::Collections::PermissionsService.can_view_admin_show_for_collection?(ability: self, collection_id: collection_id.to_s) # checks collections and admin_sets
|
49
|
+
end
|
52
50
|
end
|
53
51
|
end
|
54
52
|
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
module Hyrax
|
3
|
+
module Ability
|
4
|
+
module ResourceAbility
|
5
|
+
def resource_abilities
|
6
|
+
if admin?
|
7
|
+
can [:manage], ::Hyrax::Resource
|
8
|
+
else
|
9
|
+
can [:edit, :update, :destroy], ::Hyrax::Resource do |res|
|
10
|
+
test_edit(res.id)
|
11
|
+
end
|
12
|
+
can :read, ::Hyrax::Resource do |res|
|
13
|
+
test_read(res.id)
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
@@ -53,6 +53,7 @@ module Hyrax
|
|
53
53
|
include Hyrax::Ability::CollectionAbility
|
54
54
|
include Hyrax::Ability::CollectionTypeAbility
|
55
55
|
include Hyrax::Ability::PermissionTemplateAbility
|
56
|
+
include Hyrax::Ability::ResourceAbility
|
56
57
|
include Hyrax::Ability::SolrDocumentAbility
|
57
58
|
|
58
59
|
class_attribute :admin_group_name, :registered_group_name, :public_group_name
|
@@ -76,6 +77,7 @@ module Hyrax
|
|
76
77
|
:collection_abilities,
|
77
78
|
:collection_type_abilities,
|
78
79
|
:permission_template_abilities,
|
80
|
+
:resource_abilities,
|
79
81
|
:solr_document_abilities,
|
80
82
|
:trophy_abilities]
|
81
83
|
end
|
@@ -102,7 +104,7 @@ module Hyrax
|
|
102
104
|
# Returns true if can create at least one type of work and they can deposit
|
103
105
|
# into at least one AdminSet
|
104
106
|
def can_create_any_work?
|
105
|
-
|
107
|
+
curation_concerns_models.any? do |curation_concern_type|
|
106
108
|
can?(:create, curation_concern_type)
|
107
109
|
end && admin_set_with_deposit?
|
108
110
|
end
|
@@ -122,8 +124,8 @@ module Hyrax
|
|
122
124
|
#
|
123
125
|
# Overrides hydra-head, (and restores the method from blacklight-access-controls)
|
124
126
|
def download_permissions
|
125
|
-
can :download, String do |id|
|
126
|
-
test_download(id)
|
127
|
+
can :download, [::String, ::Valkyrie::ID] do |id|
|
128
|
+
test_download(id.to_s)
|
127
129
|
end
|
128
130
|
|
129
131
|
can :download, ::SolrDocument do |obj|
|
@@ -187,8 +189,8 @@ module Hyrax
|
|
187
189
|
# self.ability_logic += [:proxy_deposit_abilities]
|
188
190
|
def proxy_deposit_abilities
|
189
191
|
if Flipflop.transfer_works?
|
190
|
-
can :transfer, String do |id|
|
191
|
-
user_is_depositor?(id)
|
192
|
+
can :transfer, [::String, Valkyrie::ID] do |id|
|
193
|
+
user_is_depositor?(id.to_s)
|
192
194
|
end
|
193
195
|
end
|
194
196
|
|
@@ -366,7 +368,7 @@ module Hyrax
|
|
366
368
|
alias_action :show, to: :read
|
367
369
|
alias_action :discover, to: :read
|
368
370
|
can :update, :appearance
|
369
|
-
can :manage, String # The identifier of a work or FileSet
|
371
|
+
can :manage, [String, Valkyrie::ID] # The identifier of a work or FileSet
|
370
372
|
can :manage, curation_concerns_models
|
371
373
|
can :manage, Sipity::WorkflowResponsibility
|
372
374
|
can :manage, :collection_types
|
@@ -412,14 +414,14 @@ module Hyrax
|
|
412
414
|
end
|
413
415
|
|
414
416
|
# Returns true if the current user is the depositor of the specified work
|
415
|
-
# @param document_id [String] the id of the document.
|
417
|
+
# @param document_id [String, Valkyrie::ID] the id of the document.
|
416
418
|
def user_is_depositor?(document_id)
|
417
|
-
doc = Hyrax::SolrService.search_by_id(document_id, fl: 'depositor_ssim')
|
419
|
+
doc = Hyrax::SolrService.search_by_id(document_id.to_s, fl: 'depositor_ssim')
|
418
420
|
current_user.user_key == doc['depositor_ssim']&.first
|
419
421
|
end
|
420
422
|
|
421
423
|
def curation_concerns_models
|
422
|
-
|
424
|
+
Hyrax::ModelRegistry.collection_classes + Hyrax::ModelRegistry.file_set_classes + Hyrax::ModelRegistry.work_classes
|
423
425
|
end
|
424
426
|
|
425
427
|
def can_review_submissions?
|
@@ -17,7 +17,15 @@ module Hyrax
|
|
17
17
|
|
18
18
|
self.indexer = Hyrax::CollectionIndexer
|
19
19
|
|
20
|
+
##
|
21
|
+
# @!group Class Attributes
|
22
|
+
#
|
23
|
+
# @!attribute internal_resource
|
24
|
+
# @return [String]
|
25
|
+
class_attribute :internal_resource, default: "Collection"
|
26
|
+
|
20
27
|
class_attribute :index_collection_type_gid_as, instance_writer: false
|
28
|
+
##
|
21
29
|
self.index_collection_type_gid_as = [:symbol]
|
22
30
|
|
23
31
|
property :collection_type_gid, predicate: ::RDF::Vocab::SCHEMA.additionalType, multiple: false do |index|
|
@@ -53,25 +53,25 @@ module Hyrax
|
|
53
53
|
##
|
54
54
|
# @return [Boolean]
|
55
55
|
def collection?
|
56
|
-
|
56
|
+
Hyrax::ModelRegistry.collection_classes.include?(hydra_model)
|
57
57
|
end
|
58
58
|
|
59
59
|
##
|
60
60
|
# @return [Boolean]
|
61
61
|
def file_set?
|
62
|
-
|
62
|
+
Hyrax::ModelRegistry.file_set_classes.include?(hydra_model)
|
63
63
|
end
|
64
64
|
|
65
65
|
##
|
66
66
|
# @return [Boolean]
|
67
67
|
def admin_set?
|
68
|
-
|
68
|
+
Hyrax::ModelRegistry.admin_set_classes.include?(hydra_model)
|
69
69
|
end
|
70
70
|
|
71
71
|
##
|
72
72
|
# @return [Boolean]
|
73
73
|
def work?
|
74
|
-
Hyrax.
|
74
|
+
Hyrax::ModelRegistry.work_classes.include?(hydra_model)
|
75
75
|
end
|
76
76
|
|
77
77
|
# Method to return the model
|
@@ -86,6 +86,7 @@ module Hyrax
|
|
86
86
|
end
|
87
87
|
|
88
88
|
def creator
|
89
|
+
# TODO: should we replace "hydra_model == AdminSet" with by #admin_set?
|
89
90
|
solr_term = hydra_model == AdminSet ? "creator_ssim" : "creator_tesim"
|
90
91
|
fetch(solr_term, [])
|
91
92
|
end
|
@@ -122,7 +123,16 @@ module Hyrax
|
|
122
123
|
end
|
123
124
|
|
124
125
|
def lease_enforced?
|
125
|
-
lease_expiration_date.
|
126
|
+
return false if lease_expiration_date.blank?
|
127
|
+
|
128
|
+
indexed_lease_visibility = first('visibility_during_lease_ssim')
|
129
|
+
# if we didn't index an embargo visibility, assume the release date means
|
130
|
+
# it's enforced
|
131
|
+
return true if indexed_lease_visibility.blank?
|
132
|
+
|
133
|
+
# if the visibility and the visibility during lease are the same, we're
|
134
|
+
# enforcing the lease
|
135
|
+
self['visibility_ssi'] == indexed_lease_visibility
|
126
136
|
end
|
127
137
|
|
128
138
|
private
|
@@ -30,6 +30,10 @@ module Hyrax
|
|
30
30
|
self.default_system_virus_scanner = Hyrax::VirusScanner
|
31
31
|
end
|
32
32
|
|
33
|
+
def to_rdf_representation
|
34
|
+
self.class.to_rdf_representation
|
35
|
+
end
|
36
|
+
|
33
37
|
module ClassMethods
|
34
38
|
# This governs which partial to draw when you render this type of object
|
35
39
|
def _to_partial_path # :nodoc:
|
data/app/models/featured_work.rb
CHANGED
@@ -1,21 +1,29 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
class FeaturedWork < ActiveRecord::Base
|
3
|
-
|
3
|
+
##
|
4
|
+
# @!group Class Attributes
|
5
|
+
#
|
6
|
+
# @!attribute feature_limit [r|w]
|
7
|
+
# @return [Integer]
|
8
|
+
class_attribute :feature_limit, default: 5
|
9
|
+
# @!endgroup Class Attributes
|
10
|
+
##
|
11
|
+
|
4
12
|
validate :count_within_limit, on: :create
|
5
|
-
validates :order, inclusion: { in: proc { 0..
|
13
|
+
validates :order, inclusion: { in: proc { 0..feature_limit } }
|
6
14
|
|
7
15
|
default_scope { order(:order) }
|
8
16
|
|
9
17
|
def count_within_limit
|
10
18
|
return if FeaturedWork.can_create_another?
|
11
|
-
errors.add(:base, "Limited to #{
|
19
|
+
errors.add(:base, "Limited to #{feature_limit} featured works.")
|
12
20
|
end
|
13
21
|
|
14
22
|
attr_accessor :presenter
|
15
23
|
|
16
24
|
class << self
|
17
25
|
def can_create_another?
|
18
|
-
FeaturedWork.count <
|
26
|
+
FeaturedWork.count < feature_limit
|
19
27
|
end
|
20
28
|
end
|
21
29
|
end
|