blacklight-spotlight 3.0.0.rc1 → 3.0.0.rc6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/app/assets/images/blacklight/arrow-alt-circle-left.svg +1 -0
- data/app/assets/images/blacklight/arrow-alt-circle-right.svg +1 -0
- data/app/assets/images/blacklight/close.svg +1 -0
- data/app/assets/images/blacklight/zoom_in.svg +1 -0
- data/app/assets/images/blacklight/zoom_out.svg +1 -0
- data/app/assets/javascripts/spotlight/admin/{add_new_page_button.js → add_new_button.js} +7 -0
- data/app/assets/javascripts/spotlight/admin/block_mixins/autocompleteable.js +4 -4
- data/app/assets/javascripts/spotlight/admin/blocks/browse_group_categories_block.js +88 -0
- data/app/assets/javascripts/spotlight/admin/blocks/pages_block.js +1 -1
- data/app/assets/javascripts/spotlight/admin/blocks/solr_documents_base_block.js +1 -1
- data/app/assets/javascripts/spotlight/admin/blocks/uploaded_items_block.js +8 -1
- data/app/assets/javascripts/spotlight/admin/catalog_edit.js +13 -47
- data/app/assets/javascripts/spotlight/admin/croppable.js +1 -1
- data/app/assets/javascripts/spotlight/admin/exhibit_tag_autocomplete.js +37 -0
- data/app/assets/javascripts/spotlight/admin/index.js +0 -2
- data/app/assets/javascripts/spotlight/admin/{reindex_monitor.js → progress_monitor.js} +26 -4
- data/app/assets/javascripts/spotlight/admin/search_typeahead.js +2 -2
- data/app/assets/javascripts/spotlight/admin/sir-trevor/locales.js +9 -2
- data/app/assets/javascripts/spotlight/user/browse_group_categories.js +59 -0
- data/app/assets/javascripts/spotlight/user/index.js +1 -0
- data/app/assets/javascripts/spotlight/user/zpr_links.js.erb +29 -14
- data/app/assets/stylesheets/spotlight/_breadcrumbs.scss +8 -0
- data/app/assets/stylesheets/spotlight/_browse.scss +8 -0
- data/app/assets/stylesheets/spotlight/_catalog.scss +34 -8
- data/app/assets/stylesheets/spotlight/_exhibit_admin.scss +9 -0
- data/app/assets/stylesheets/spotlight/_featured_browse_categories_block.scss +212 -84
- data/app/assets/stylesheets/spotlight/_item_text_block.scss +1 -1
- data/app/assets/stylesheets/spotlight/_modals.scss +3 -0
- data/app/assets/stylesheets/spotlight/_nestable.scss +8 -0
- data/app/assets/stylesheets/spotlight/_pages.scss +9 -4
- data/app/assets/stylesheets/spotlight/_spotlight.scss +4 -0
- data/app/assets/stylesheets/spotlight/_translations.scss +6 -0
- data/app/assets/stylesheets/spotlight/_view_larger.scss +22 -0
- data/app/assets/stylesheets/spotlight/browse_group_categories_block.scss +92 -0
- data/app/assets/stylesheets/spotlight/typeahead.css +23 -23
- data/app/builders/spotlight/bootstrap_breadcrumbs_builder.rb +5 -4
- data/app/controllers/concerns/spotlight/base.rb +1 -1
- data/app/controllers/concerns/spotlight/catalog.rb +7 -1
- data/app/controllers/concerns/spotlight/search_helper.rb +2 -8
- data/app/controllers/spotlight/appearances_controller.rb +0 -13
- data/app/controllers/spotlight/browse_controller.rb +15 -17
- data/app/controllers/spotlight/bulk_actions_controller.rb +62 -0
- data/app/controllers/spotlight/bulk_updates_controller.rb +67 -0
- data/app/controllers/spotlight/catalog_controller.rb +17 -14
- data/app/controllers/spotlight/concerns/application_controller.rb +13 -2
- data/app/controllers/spotlight/dashboards_controller.rb +5 -4
- data/app/controllers/spotlight/exhibits_controller.rb +1 -1
- data/app/controllers/spotlight/featured_images_controller.rb +1 -1
- data/app/controllers/spotlight/groups_controller.rb +80 -0
- data/app/controllers/spotlight/job_trackers_controller.rb +17 -0
- data/app/controllers/spotlight/pages_controller.rb +8 -13
- data/app/controllers/spotlight/searches_controller.rb +4 -17
- data/app/controllers/spotlight/tags_controller.rb +39 -5
- data/app/helpers/spotlight/application_helper.rb +21 -2
- data/app/helpers/spotlight/crud_link_helpers.rb +1 -1
- data/app/helpers/spotlight/job_trackers_helper.rb +31 -0
- data/app/helpers/spotlight/main_app_helpers.rb +4 -5
- data/app/helpers/spotlight/meta_helper.rb +2 -2
- data/app/helpers/spotlight/pages_helper.rb +1 -8
- data/app/helpers/spotlight/roles_helper.rb +1 -1
- data/app/helpers/spotlight/searches_helper.rb +1 -1
- data/app/jobs/concerns/spotlight/gather_documents.rb +35 -0
- data/app/jobs/concerns/spotlight/job_tracking.rb +64 -0
- data/app/jobs/concerns/spotlight/limit_concurrency.rb +33 -0
- data/app/jobs/spotlight/add_tags_job.rb +31 -0
- data/app/jobs/spotlight/add_uploads_from_csv.rb +4 -3
- data/app/jobs/spotlight/application_job.rb +8 -0
- data/app/jobs/spotlight/change_visibility_job.rb +33 -0
- data/app/jobs/spotlight/cleanup_job_trackers_job.rb +13 -0
- data/app/jobs/spotlight/default_thumbnail_job.rb +1 -3
- data/app/jobs/spotlight/process_bulk_updates_csv_job.rb +82 -0
- data/app/jobs/spotlight/reindex_exhibit_job.rb +39 -0
- data/app/jobs/spotlight/reindex_job.rb +64 -44
- data/app/jobs/spotlight/remove_tags_job.rb +31 -0
- data/app/jobs/spotlight/rename_sidecar_field_job.rb +3 -2
- data/app/jobs/spotlight/rename_tags_job.rb +33 -0
- data/app/jobs/spotlight/update_job_trackers_job.rb +20 -0
- data/app/models/concerns/spotlight/browse_category_search_builder.rb +59 -0
- data/app/models/concerns/spotlight/exhibit_analytics.rb +2 -6
- data/app/models/concerns/spotlight/exhibit_defaults.rb +1 -1
- data/app/models/concerns/spotlight/exhibit_documents.rb +2 -2
- data/app/models/concerns/spotlight/resources/web.rb +1 -1
- data/app/models/concerns/spotlight/search_builder.rb +11 -0
- data/app/models/concerns/spotlight/solr_document.rb +1 -1
- data/app/models/concerns/spotlight/solr_document/atomic_updates.rb +2 -2
- data/app/models/concerns/spotlight/user.rb +7 -2
- data/app/models/sir_trevor_rails/blocks/browse_group_categories_block.rb +25 -0
- data/app/models/sir_trevor_rails/blocks/solr_documents_block.rb +9 -0
- data/app/models/sir_trevor_rails/blocks/uploaded_items_block.rb +4 -0
- data/app/models/spotlight/ability.rb +8 -2
- data/app/models/spotlight/about_page.rb +1 -1
- data/app/models/spotlight/attachment.rb +1 -1
- data/app/models/spotlight/background_job_progress.rb +96 -0
- data/app/models/spotlight/blacklight_configuration.rb +28 -7
- data/app/models/spotlight/bulk_update.rb +8 -0
- data/app/models/spotlight/event.rb +13 -0
- data/app/models/spotlight/exhibit.rb +15 -12
- data/app/models/spotlight/feature_page.rb +1 -3
- data/app/models/spotlight/featured_image.rb +8 -2
- data/app/models/spotlight/field_metadata.rb +4 -8
- data/app/models/spotlight/group.rb +22 -0
- data/app/models/spotlight/group_member.rb +11 -0
- data/app/models/spotlight/home_page.rb +1 -1
- data/app/models/spotlight/job_tracker.rb +114 -0
- data/app/models/spotlight/page.rb +3 -5
- data/app/models/spotlight/page_configurations.rb +15 -9
- data/app/models/spotlight/resource.rb +28 -62
- data/app/models/spotlight/resources/iiif_harvester.rb +12 -3
- data/app/models/spotlight/resources/iiif_manifest.rb +9 -7
- data/app/models/spotlight/resources/iiif_service.rb +9 -2
- data/app/models/spotlight/resources/json_upload.rb +12 -0
- data/app/models/spotlight/resources/upload.rb +25 -2
- data/app/models/spotlight/role.rb +1 -2
- data/app/models/spotlight/search.rb +5 -0
- data/app/models/spotlight/solr_document_sidecar.rb +2 -1
- data/app/presenters/spotlight/iiif_manifest_presenter.rb +2 -2
- data/app/services/spotlight/bulk_updates_csv_template_service.rb +93 -0
- data/app/services/spotlight/etl.rb +7 -0
- data/app/services/spotlight/etl/context.rb +52 -0
- data/app/services/spotlight/etl/executor.rb +192 -0
- data/app/services/spotlight/etl/loaders.rb +12 -0
- data/app/services/spotlight/etl/pipeline.rb +81 -0
- data/app/services/spotlight/etl/solr_loader.rb +96 -0
- data/app/services/spotlight/etl/sources.rb +25 -0
- data/app/services/spotlight/etl/step.rb +82 -0
- data/app/services/spotlight/etl/transforms.rb +64 -0
- data/app/services/spotlight/exhibit_import_export_service.rb +50 -22
- data/app/services/spotlight/iiif_resource_resolver.rb +1 -1
- data/app/services/spotlight/validity_checker.rb +5 -5
- data/app/uploaders/spotlight/bulk_updates_uploader.rb +7 -0
- data/app/uploaders/spotlight/featured_image_uploader.rb +1 -1
- data/app/views/catalog/_add_tags.html.erb +28 -0
- data/app/views/catalog/_bulk_actions.html.erb +12 -0
- data/app/views/catalog/_change_visibility.html.erb +35 -0
- data/app/views/catalog/_curator_actions.html.erb +3 -0
- data/app/views/catalog/_remove_tags.html.erb +37 -0
- data/app/views/catalog/_save_search.html.erb +1 -1
- data/app/views/spotlight/about_pages/_empty.html.erb +5 -5
- data/app/views/spotlight/browse/_search.html.erb +2 -1
- data/app/views/spotlight/browse/_search_box.html.erb +9 -9
- data/app/views/spotlight/browse/index.html.erb +13 -0
- data/app/views/spotlight/bulk_updates/_download.html.erb +23 -0
- data/app/views/spotlight/bulk_updates/_overview.html.erb +1 -0
- data/app/views/spotlight/bulk_updates/_progress_panel.html.erb +19 -0
- data/app/views/spotlight/bulk_updates/_upload.html.erb +12 -0
- data/app/views/spotlight/bulk_updates/edit.html.erb +37 -0
- data/app/views/spotlight/catalog/_admin_header.html.erb +1 -1
- data/app/views/spotlight/catalog/_admin_index_header_default.html.erb +1 -1
- data/app/views/spotlight/catalog/_admin_thumbnail_default.html.erb +3 -2
- data/app/views/spotlight/catalog/_document.html.erb +2 -4
- data/app/views/spotlight/catalog/_edit_default.html.erb +2 -2
- data/app/views/spotlight/catalog/_reindex_progress_panel.html.erb +1 -1
- data/app/views/spotlight/catalog/index.iiif_json.jbuilder +22 -0
- data/app/views/spotlight/contacts/_form.html.erb +1 -1
- data/app/views/spotlight/custom_fields/_form.html.erb +1 -1
- data/app/views/spotlight/custom_search_fields/_form.html.erb +1 -1
- data/app/views/spotlight/dashboards/_reindexing_activity.html.erb +6 -6
- data/app/views/spotlight/exhibits/_exhibit_card.html.erb +1 -1
- data/app/views/spotlight/feature_pages/_empty.html.erb +5 -5
- data/app/views/spotlight/featured_images/_form.html.erb +2 -2
- data/app/views/spotlight/featured_images/_upload_form.html.erb +1 -1
- data/app/views/spotlight/home_pages/_empty.html.erb +3 -3
- data/app/views/spotlight/job_trackers/show.html.erb +79 -0
- data/app/views/spotlight/metadata_configurations/_metadata_field.html.erb +2 -2
- data/app/views/spotlight/pages/_form.html.erb +2 -2
- data/app/views/spotlight/pages/_view_type_group.html.erb +3 -3
- data/app/views/spotlight/resources/_form.html.erb +1 -1
- data/app/views/spotlight/resources/csv_upload/_form.html.erb +1 -1
- data/app/views/spotlight/resources/iiif/_form.html.erb +1 -1
- data/app/views/spotlight/resources/json_upload/_form.html.erb +2 -2
- data/app/views/spotlight/resources/upload/_form.html.erb +1 -1
- data/app/views/spotlight/search_configurations/_document_index_view_types.html.erb +2 -2
- data/app/views/spotlight/searches/_form.html.erb +14 -2
- data/app/views/spotlight/searches/_group.html.erb +27 -0
- data/app/views/spotlight/searches/index.html.erb +58 -17
- data/app/views/spotlight/shared/_curation_sidebar.html.erb +3 -0
- data/app/views/spotlight/shared/_locale_picker.html.erb +1 -1
- data/app/views/spotlight/sir_trevor/blocks/_browse_group_categories_block.html.erb +45 -0
- data/app/views/spotlight/sir_trevor/blocks/_solr_documents_block.html.erb +8 -8
- data/app/views/spotlight/sir_trevor/blocks/_solr_documents_carousel_block.html.erb +7 -7
- data/app/views/spotlight/sir_trevor/blocks/_solr_documents_features_block.html.erb +9 -7
- data/app/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb +5 -5
- data/app/views/spotlight/sir_trevor/blocks/_uploaded_items_block.html.erb +4 -0
- data/app/views/spotlight/tags/_tag.html.erb +24 -0
- data/app/views/spotlight/tags/index.html.erb +12 -16
- data/app/views/spotlight/translations/_groups.html.erb +34 -0
- data/app/views/spotlight/translations/_import.html.erb +5 -5
- data/app/views/spotlight/translations/edit.html.erb +6 -0
- data/app/views/spotlight/translations/show.yaml.yamlbuilder +6 -0
- data/config/i18n-tasks.yml +6 -0
- data/config/locales/spotlight.ar.yml +11 -1
- data/config/locales/spotlight.en.yml +283 -87
- data/config/routes.rb +39 -1
- data/db/migrate/20210113092223_create_spotlight_groups.rb +23 -0
- data/db/migrate/20210122082032_create_job_trackers.rb +22 -0
- data/db/migrate/20210126123041_create_events.rb +15 -0
- data/db/migrate/20210305070001_remove_class_from_sirtrevor_image_blocks.rb +20 -0
- data/db/migrate/20210305171150_create_bulk_updates.rb +9 -0
- data/db/migrate/20210308090000_migrate_caption_values_for_title_key.rb +29 -0
- data/lib/generators/spotlight/install_generator.rb +5 -5
- data/lib/generators/spotlight/scaffold_resource_generator.rb +5 -13
- data/lib/generators/spotlight/templates/config/initializers/riiif.rb +7 -5
- data/lib/generators/spotlight/templates/config/initializers/spotlight_initializer.rb +1 -1
- data/lib/generators/spotlight/templates/solr/config/schema.xml +1 -1
- data/lib/migration/iiif.rb +3 -3
- data/lib/spotlight/engine.rb +26 -4
- data/lib/spotlight/version.rb +1 -1
- data/spec/controllers/spotlight/about_pages_controller_spec.rb +3 -3
- data/spec/controllers/spotlight/browse_controller_spec.rb +23 -6
- data/spec/controllers/spotlight/bulk_actions_controller_spec.rb +124 -0
- data/spec/controllers/spotlight/bulk_updates_controller_spec.rb +77 -0
- data/spec/controllers/spotlight/catalog_controller_spec.rb +15 -13
- data/spec/controllers/spotlight/contacts_controller_spec.rb +2 -2
- data/spec/controllers/spotlight/feature_pages_controller_spec.rb +11 -0
- data/spec/controllers/spotlight/featured_images_controller_spec.rb +3 -3
- data/spec/controllers/spotlight/groups_controller_spec.rb +103 -0
- data/spec/controllers/spotlight/home_pages_controller_spec.rb +1 -1
- data/spec/controllers/spotlight/job_trackers_controller_spec.rb +37 -0
- data/spec/controllers/spotlight/searches_controller_spec.rb +10 -3
- data/spec/controllers/spotlight/tags_controller_spec.rb +5 -1
- data/spec/controllers/spotlight/view_configurations_controller_spec.rb +1 -1
- data/spec/examples.txt +1501 -1410
- data/spec/factories/bulk_updates.rb +15 -0
- data/spec/factories/exhibits.rb +4 -0
- data/spec/factories/group.rb +17 -0
- data/spec/factories/job_trackers.rb +11 -0
- data/spec/factories/searches.rb +11 -1
- data/spec/factories/users.rb +27 -8
- data/spec/features/add_items_spec.rb +10 -5
- data/spec/features/browse_category_admin_spec.rb +37 -5
- data/spec/features/browse_category_navigation_spec.rb +44 -0
- data/spec/features/browse_category_spec.rb +2 -2
- data/spec/features/bulk_actions_spec.rb +72 -0
- data/spec/features/catalog_spec.rb +3 -2
- data/spec/features/dashboard_spec.rb +2 -2
- data/spec/features/edit_search_fields_spec.rb +2 -2
- data/spec/features/exhibits/edit_metadata_fields_spec.rb +1 -1
- data/spec/features/exhibits/translation_editing_spec.rb +55 -6
- data/spec/features/home_page_spec.rb +5 -5
- data/spec/features/import_exhibit_spec.rb +5 -1
- data/spec/features/item_admin_spec.rb +4 -4
- data/spec/features/javascript/about_page_admin_spec.rb +1 -1
- data/spec/features/javascript/block_controls_spec.rb +1 -1
- data/spec/features/javascript/blocks/browse_group_categories_block_spec.rb +64 -0
- data/spec/features/javascript/blocks/solr_documents_block_spec.rb +4 -4
- data/spec/features/javascript/blocks/uploaded_items_block_spec.rb +27 -1
- data/spec/features/javascript/browse_group_admin_spec.rb +45 -0
- data/spec/features/javascript/edit_in_place_spec.rb +3 -3
- data/spec/features/javascript/feature_page_admin_spec.rb +1 -1
- data/spec/features/javascript/reindex_monitor_spec.rb +1 -1
- data/spec/features/javascript/search_config_admin_spec.rb +1 -1
- data/spec/features/report_a_problem_spec.rb +1 -1
- data/spec/features/site_users_management_spec.rb +5 -5
- data/spec/fixtures/bulk-update-template.csv +57 -0
- data/spec/fixtures/updated-bulk-update-template-w-tags.csv +4 -0
- data/spec/fixtures/updated-bulk-update-template.csv +4 -0
- data/spec/helpers/spotlight/application_helper_spec.rb +5 -6
- data/spec/helpers/spotlight/crud_link_helpers_spec.rb +3 -3
- data/spec/helpers/spotlight/pages_helper_spec.rb +8 -15
- data/spec/helpers/spotlight/roles_helper_spec.rb +1 -1
- data/spec/i18n_spec.rb +1 -0
- data/spec/jobs/spotlight/add_tags_job_spec.rb +34 -0
- data/spec/jobs/spotlight/add_uploads_from_csv_spec.rb +4 -1
- data/spec/jobs/spotlight/change_visibility_job_spec.rb +30 -0
- data/spec/jobs/spotlight/process_bulk_updates_csv_job_spec.rb +78 -0
- data/spec/jobs/spotlight/reindex_exhibit_job_spec.rb +43 -0
- data/spec/jobs/spotlight/reindex_job_spec.rb +34 -60
- data/spec/jobs/spotlight/remove_tags_job_spec.rb +39 -0
- data/spec/lib/migration/iiif_spec.rb +1 -1
- data/spec/models/sir_trevor_rails/blocks/browse_group_categories_block_spec.rb +41 -0
- data/spec/models/spotlight/ability_spec.rb +27 -0
- data/spec/models/spotlight/background_job_progress_spec.rb +137 -0
- data/spec/models/spotlight/blacklight_configuration_spec.rb +22 -17
- data/spec/models/spotlight/browse_category_search_builder_spec.rb +49 -0
- data/spec/models/spotlight/exhibit_spec.rb +13 -59
- data/spec/models/spotlight/featured_image_spec.rb +1 -1
- data/spec/models/spotlight/group_spec.rb +19 -0
- data/spec/models/spotlight/main_navigation_spec.rb +1 -1
- data/spec/models/spotlight/resource_spec.rb +89 -87
- data/spec/models/spotlight/resources/iiif_harvester_spec.rb +9 -10
- data/spec/models/spotlight/role_spec.rb +1 -1
- data/spec/models/spotlight/search_spec.rb +30 -3
- data/spec/models/spotlight/solr_document/atomic_updates_spec.rb +10 -0
- data/spec/models/spotlight/solr_document_sidecar_spec.rb +1 -0
- data/spec/presenters/spotlight/iiif_manifest_presenter_spec.rb +1 -1
- data/spec/services/spotlight/bulk_updates_csv_template_service_spec.rb +26 -0
- data/spec/services/spotlight/etl/context_spec.rb +66 -0
- data/spec/services/spotlight/etl/executor_spec.rb +149 -0
- data/spec/services/spotlight/etl/pipeline_spec.rb +22 -0
- data/spec/services/spotlight/etl/solr_loader_spec.rb +76 -0
- data/spec/services/spotlight/etl/step_spec.rb +70 -0
- data/spec/services/spotlight/exhibit_import_export_service_spec.rb +48 -1
- data/spec/spec_helper.rb +3 -6
- data/spec/support/features/test_features_helpers.rb +15 -0
- data/spec/test_app_templates/Gemfile.extra +2 -0
- data/spec/test_app_templates/catalog_controller.rb +6 -3
- data/spec/test_app_templates/lib/generators/test_app_generator.rb +2 -2
- data/spec/uploaders/spotlight/featured_image_uploader_spec.rb +2 -2
- data/spec/views/shared/_exhibit_navbar.html.erb_spec.rb +1 -1
- data/spec/views/spotlight/browse/index.html.erb_spec.rb +2 -0
- data/spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb +1 -1
- data/spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb +1 -1
- data/spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb +30 -25
- data/spec/views/spotlight/job_trackers/show.html.erb_spec.rb +65 -0
- data/spec/views/spotlight/metadata_configurations/_metadata_field.html.erb_spec.rb +3 -4
- data/spec/views/spotlight/pages/show.html.erb_spec.rb +1 -0
- data/spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb +1 -1
- data/spec/views/spotlight/sir_trevor/blocks/_browse_block.html.erb_spec.rb +1 -1
- data/spec/views/spotlight/sir_trevor/blocks/_iframe_block.html.erb_spec.rb +1 -1
- data/spec/views/spotlight/sir_trevor/blocks/_link_to_search_block.html.erb_spec.rb +1 -1
- data/spec/views/spotlight/sir_trevor/blocks/_rule_block.html.erb_spec.rb +1 -1
- data/spec/views/spotlight/sir_trevor/blocks/_solr_documents_block.html.erb_spec.rb +8 -4
- data/spec/views/spotlight/sir_trevor/blocks/_solr_documents_carousel_block.html.erb_spec.rb +7 -2
- data/spec/views/spotlight/sir_trevor/blocks/_solr_documents_embed_block.html.erb_spec.rb +8 -5
- data/spec/views/spotlight/sir_trevor/blocks/_solr_documents_features_block.html.erb_spec.rb +3 -2
- data/spec/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb_spec.rb +9 -4
- data/spec/views/spotlight/tags/index.html.erb_spec.rb +5 -2
- data/vendor/assets/javascripts/tiny-slider.js +3218 -0
- data/vendor/assets/stylesheets/tiny-slider.css +1 -0
- metadata +471 -281
- data/app/assets/images/blacklight/add_circle.svg +0 -1
- data/app/assets/images/blacklight/custom_fullscreen.svg +0 -1
- data/app/assets/images/blacklight/remove_circle.svg +0 -1
- data/app/assets/images/blacklight/resize_small.svg +0 -1
- data/app/models/concerns/spotlight/resources/open_graph.rb +0 -36
- data/app/models/spotlight/reindex_progress.rb +0 -78
- data/app/models/spotlight/reindexing_log_entry.rb +0 -42
- data/app/services/spotlight/resources/iiif_builder.rb +0 -19
- data/app/services/spotlight/solr_document_builder.rb +0 -77
- data/app/services/spotlight/upload_solr_document_builder.rb +0 -57
- data/spec/factories/reindexing_log_entries.rb +0 -54
- data/spec/models/spotlight/reindex_progress_spec.rb +0 -122
- data/spec/models/spotlight/reindexing_log_entry_spec.rb +0 -129
- data/spec/models/spotlight/resources/open_graph_spec.rb +0 -65
- data/spec/services/spotlight/solr_document_builder_spec.rb +0 -66
- data/vendor/assets/javascripts/handlebars-v1.3.0.js +0 -2746
@@ -0,0 +1,19 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
describe Spotlight::Group, type: :model do
|
4
|
+
let(:exhibit) { FactoryBot.create(:exhibit) }
|
5
|
+
|
6
|
+
describe '#searches' do
|
7
|
+
let(:group) { FactoryBot.create(:group_with_searches, exhibit: exhibit, searches_count: 4) }
|
8
|
+
|
9
|
+
it do
|
10
|
+
expect(group.searches.count).to eq 4
|
11
|
+
end
|
12
|
+
|
13
|
+
it do
|
14
|
+
group.searches.all do |search|
|
15
|
+
expect(search).to be_an Spotlight::Search
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
@@ -7,7 +7,7 @@ describe Spotlight::MainNavigation, type: :model do
|
|
7
7
|
|
8
8
|
it 'has a default_label' do
|
9
9
|
subject.nav_type = :curated_features
|
10
|
-
expect(subject.default_label).to eq 'Curated
|
10
|
+
expect(subject.default_label).to eq 'Curated features'
|
11
11
|
end
|
12
12
|
|
13
13
|
it 'returns the use the default label in the absence of a label' do
|
@@ -1,126 +1,128 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
describe Spotlight::Resource, type: :model do
|
4
|
-
|
5
|
-
allow_any_instance_of(described_class).to receive(:update_index)
|
6
|
-
end
|
4
|
+
subject(:resource) { described_class.create(id: 123, exhibit: exhibit) }
|
7
5
|
|
8
6
|
let(:exhibit) { FactoryBot.create(:exhibit) }
|
9
7
|
|
10
|
-
describe '#
|
11
|
-
|
12
|
-
subject
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
let(:solr_response) { { id: 123 } }
|
17
|
-
|
18
|
-
before do
|
19
|
-
SolrDocument.new(id: 123).sidecars.create!(exhibit: exhibit, data: { document_data: true })
|
20
|
-
allow(subject).to receive_messages(to_global_id: '')
|
8
|
+
describe '#save_and_index' do
|
9
|
+
before do
|
10
|
+
allow(subject).to receive(:save)
|
11
|
+
allow(subject).to receive(:reindex_later)
|
12
|
+
end
|
21
13
|
|
22
|
-
|
23
|
-
|
14
|
+
it 'saves the object' do
|
15
|
+
expect(subject).to receive(:save).and_return(true)
|
16
|
+
subject.save_and_index
|
17
|
+
end
|
24
18
|
|
25
|
-
|
26
|
-
|
27
|
-
|
19
|
+
it 'reindexes after save' do
|
20
|
+
expect(subject).to receive(:save).and_return(true)
|
21
|
+
expect(subject).to receive(:reindex_later)
|
22
|
+
subject.save_and_index
|
23
|
+
end
|
28
24
|
|
29
|
-
|
30
|
-
|
25
|
+
it 'passes through reindexing options' do
|
26
|
+
expect(subject).to receive(:save).and_return(true)
|
27
|
+
expect(subject).to receive(:reindex_later).with(a: 1)
|
28
|
+
subject.save_and_index(reindex_options: { a: 1 })
|
29
|
+
end
|
31
30
|
|
32
|
-
|
31
|
+
context 'if the save fails' do
|
32
|
+
it 'does not reindex' do
|
33
|
+
expect(subject).to receive(:save).and_return(false)
|
34
|
+
expect(subject).not_to receive(:reindex_later)
|
35
|
+
subject.save_and_index
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
33
39
|
|
34
|
-
|
35
|
-
|
40
|
+
describe '#reindex_later' do
|
41
|
+
around do |block|
|
42
|
+
old = ActiveJob::Base.queue_adapter
|
43
|
+
begin
|
44
|
+
ActiveJob::Base.queue_adapter = :test
|
36
45
|
|
37
|
-
|
46
|
+
block.call
|
47
|
+
ensure
|
48
|
+
ActiveJob::Base.queue_adapter = old
|
38
49
|
end
|
50
|
+
end
|
39
51
|
|
40
|
-
|
41
|
-
|
52
|
+
it 'passes through reindexing options' do
|
53
|
+
expect { subject.reindex_later(whatever: true) }.to have_enqueued_job(Spotlight::ReindexJob).with(subject, whatever: true, 'validity_token' => nil)
|
54
|
+
end
|
55
|
+
end
|
42
56
|
|
43
|
-
|
44
|
-
|
45
|
-
|
57
|
+
describe '#reindex' do
|
58
|
+
before do
|
59
|
+
# sneak some data into the pipeline
|
60
|
+
subject.indexing_pipeline.transforms = [->(*) { { id: '123' } }] + subject.indexing_pipeline.transforms
|
61
|
+
end
|
46
62
|
|
47
|
-
|
48
|
-
|
49
|
-
end
|
63
|
+
let(:indexed_document) do
|
64
|
+
result = nil
|
50
65
|
|
51
|
-
|
52
|
-
|
53
|
-
allow(subject.send(:blacklight_solr)).to receive(:update)
|
54
|
-
end
|
66
|
+
subject.reindex(**index_args) do |data, *|
|
67
|
+
result = data
|
55
68
|
|
56
|
-
|
57
|
-
|
58
|
-
expect(reindexing_log_entry).to receive(:update).with(items_reindexed_count: 1)
|
59
|
-
subject.reindex reindexing_log_entry
|
60
|
-
end
|
69
|
+
# skip actually indexing the document into the solr index
|
70
|
+
throw :skip
|
61
71
|
end
|
62
72
|
|
63
|
-
|
64
|
-
|
65
|
-
allow(Spotlight::Engine.config).to receive_messages(writable_index: false)
|
66
|
-
end
|
73
|
+
result
|
74
|
+
end
|
67
75
|
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
76
|
+
let(:index_args) { {} }
|
77
|
+
|
78
|
+
it 'returns the number of items indexed' do
|
79
|
+
expect(subject.reindex { |*| throw :skip }).to eq 1
|
80
|
+
end
|
73
81
|
|
74
|
-
|
75
|
-
|
82
|
+
it 'applies exhibit-specific metadata from the sidecar' do
|
83
|
+
expect(indexed_document).to include Spotlight::SolrDocumentSidecar.new(document: SolrDocument.new(id: '123'), exhibit: exhibit).to_solr
|
84
|
+
end
|
76
85
|
|
77
|
-
|
78
|
-
|
79
|
-
|
86
|
+
it 'includes metata from each sidecar' do
|
87
|
+
a = Spotlight::SolrDocumentSidecar.create(document: SolrDocument.new(id: '123'), exhibit: exhibit)
|
88
|
+
b = Spotlight::SolrDocumentSidecar.create(document: SolrDocument.new(id: '123'), exhibit: FactoryBot.build(:exhibit))
|
80
89
|
|
81
|
-
|
82
|
-
|
83
|
-
end
|
90
|
+
expect(indexed_document).to include(a.to_solr).and(include(b.to_solr))
|
91
|
+
end
|
84
92
|
|
85
|
-
|
86
|
-
|
93
|
+
it 'persists a sidecar document' do
|
94
|
+
expect { indexed_document }.to change(Spotlight::SolrDocumentSidecar, :count).by(1)
|
87
95
|
|
88
|
-
|
89
|
-
|
96
|
+
expect(Spotlight::SolrDocumentSidecar.last).to have_attributes(document_id: '123', exhibit: exhibit)
|
97
|
+
end
|
90
98
|
|
91
|
-
|
92
|
-
|
99
|
+
it 'applies application metadata' do
|
100
|
+
expect(indexed_document).to include(spotlight_resource_id_ssim: resource.to_global_id.to_s, spotlight_resource_type_ssim: 'spotlight/resources')
|
101
|
+
end
|
93
102
|
|
94
|
-
|
103
|
+
context 'with some provided metadata' do
|
104
|
+
let(:index_args) { { additional_metadata: { a: 1 } } }
|
95
105
|
|
96
|
-
|
97
|
-
|
106
|
+
it 'applies externally provided metadata' do
|
107
|
+
expect(indexed_document).to include a: 1
|
98
108
|
end
|
99
109
|
end
|
100
|
-
end
|
101
110
|
|
102
|
-
|
103
|
-
|
104
|
-
allow(subject.send(:blacklight_solr)).to receive(:update)
|
105
|
-
allow(subject).to receive(:reindex_later)
|
106
|
-
end
|
111
|
+
it 'touches the exhibit to bust any caches' do
|
112
|
+
allow(exhibit).to receive(:touch)
|
107
113
|
|
108
|
-
|
109
|
-
expect(subject).to receive(:save).and_return(true)
|
110
|
-
subject.save_and_index
|
111
|
-
end
|
114
|
+
indexed_document
|
112
115
|
|
113
|
-
|
114
|
-
expect(subject).to receive(:save).and_return(true)
|
115
|
-
expect(subject).to receive(:reindex_later)
|
116
|
-
subject.save_and_index
|
116
|
+
expect(exhibit).to have_received(:touch)
|
117
117
|
end
|
118
118
|
|
119
|
-
context '
|
120
|
-
it 'does not
|
121
|
-
|
122
|
-
|
123
|
-
subject.
|
119
|
+
context 'with touch: false' do
|
120
|
+
it 'does not touch the exhibit' do
|
121
|
+
allow(exhibit).to receive(:touch)
|
122
|
+
|
123
|
+
expect(subject.reindex(touch: false) { |*| throw :skip }).to eq 1
|
124
|
+
|
125
|
+
expect(exhibit).not_to have_received(:touch)
|
124
126
|
end
|
125
127
|
end
|
126
128
|
end
|
@@ -3,12 +3,11 @@
|
|
3
3
|
require 'spec_helper'
|
4
4
|
|
5
5
|
describe Spotlight::Resources::IiifHarvester do
|
6
|
+
subject(:harvester) { described_class.create(exhibit_id: exhibit.id, url: url) }
|
7
|
+
|
6
8
|
let(:exhibit) { FactoryBot.create(:exhibit) }
|
7
|
-
let(:harvester) { described_class.create(exhibit_id: exhibit.id, url: url) }
|
8
9
|
|
9
10
|
describe 'Validation' do
|
10
|
-
subject { harvester }
|
11
|
-
|
12
11
|
context 'when given an invalid URL' do
|
13
12
|
before do
|
14
13
|
stub_request(:head, 'http://example.com').to_return(status: 200, headers: { 'Content-Type' => 'text/html' })
|
@@ -38,16 +37,16 @@ describe Spotlight::Resources::IiifHarvester do
|
|
38
37
|
end
|
39
38
|
end
|
40
39
|
|
41
|
-
describe '#
|
42
|
-
subject { harvester.document_builder }
|
43
|
-
|
40
|
+
describe '#reindex' do
|
44
41
|
let(:url) { 'uri://for-top-level-collection' }
|
45
42
|
|
46
|
-
before
|
43
|
+
before do
|
44
|
+
stub_default_collection
|
45
|
+
allow(Spotlight::Engine.config).to receive(:writable_index).and_return(false)
|
46
|
+
end
|
47
47
|
|
48
|
-
it '
|
49
|
-
expect(subject.
|
50
|
-
expect(subject.documents_to_index.count).to eq 8
|
48
|
+
it 'indexes all the solr documents' do
|
49
|
+
expect(subject.reindex).to eq 8
|
51
50
|
end
|
52
51
|
end
|
53
52
|
end
|
@@ -9,7 +9,7 @@ describe Spotlight::Role, type: :model do
|
|
9
9
|
|
10
10
|
it 'does not be valid' do
|
11
11
|
expect(subject).not_to be_valid
|
12
|
-
expect(subject.errors.messages).to include(role: ['is not included in the list'], 'user.email': ["can't be blank"])
|
12
|
+
expect(subject.errors.messages.transform_values(&:to_a)).to include(role: ['is not included in the list'], 'user.email': ["can't be blank"])
|
13
13
|
end
|
14
14
|
end
|
15
15
|
|
@@ -5,7 +5,7 @@ describe Spotlight::Search, type: :model do
|
|
5
5
|
|
6
6
|
let(:exhibit) { FactoryBot.create(:exhibit) }
|
7
7
|
|
8
|
-
let(:query_params) { { 'f' => { '
|
8
|
+
let(:query_params) { { 'f' => { 'genre_ssim' => ['map'] } } }
|
9
9
|
|
10
10
|
let(:blacklight_config) { ::CatalogController.blacklight_config }
|
11
11
|
let(:document) do
|
@@ -17,7 +17,10 @@ describe Spotlight::Search, type: :model do
|
|
17
17
|
let(:query_params) { {} }
|
18
18
|
|
19
19
|
it 'has items' do
|
20
|
-
|
20
|
+
# Add some fuzziness to this. Running locally it should be 55 but in some
|
21
|
+
# CI environments, spec/features/add_items_spec.rb will end up adding new
|
22
|
+
# records and cannot ensure deletion of them.
|
23
|
+
expect(subject.documents.size).to be_within(1).of(55)
|
21
24
|
end
|
22
25
|
end
|
23
26
|
|
@@ -31,6 +34,16 @@ describe Spotlight::Search, type: :model do
|
|
31
34
|
end
|
32
35
|
end
|
33
36
|
|
37
|
+
describe '.unpublished' do
|
38
|
+
let!(:search1) { FactoryBot.create(:search, published: true) }
|
39
|
+
let!(:search2) { FactoryBot.create(:search, published: false) }
|
40
|
+
let!(:search3) { FactoryBot.create(:search, published: nil) }
|
41
|
+
|
42
|
+
it 'accounts for nil and false values' do
|
43
|
+
expect(described_class.unpublished.count).to eq 5
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
34
47
|
describe '#slug' do
|
35
48
|
let(:search) { FactoryBot.create(:search) }
|
36
49
|
|
@@ -54,7 +67,7 @@ describe Spotlight::Search, type: :model do
|
|
54
67
|
|
55
68
|
describe '#search_params' do
|
56
69
|
it 'maps the search to the appropriate facet values' do
|
57
|
-
expect(subject.search_params.to_hash).to include 'fq' => array_including('{!term f=
|
70
|
+
expect(subject.search_params.to_hash).to include 'fq' => array_including('{!term f=genre_ssim}map')
|
58
71
|
end
|
59
72
|
|
60
73
|
context 'with filter_resources_by_exhibit configured' do
|
@@ -95,4 +108,18 @@ describe Spotlight::Search, type: :model do
|
|
95
108
|
expect(search_params).to include user_params
|
96
109
|
end
|
97
110
|
end
|
111
|
+
|
112
|
+
describe '#groups' do
|
113
|
+
let(:search) { FactoryBot.create(:search_with_groups, groups_count: 3) }
|
114
|
+
|
115
|
+
it do
|
116
|
+
expect(search.groups.count).to eq 3
|
117
|
+
end
|
118
|
+
|
119
|
+
it do
|
120
|
+
search.groups.all do |group|
|
121
|
+
expect(group).to be_an Spotlight::Group
|
122
|
+
end
|
123
|
+
end
|
124
|
+
end
|
98
125
|
end
|
@@ -37,6 +37,16 @@ describe Spotlight::SolrDocument::AtomicUpdates, type: :model do
|
|
37
37
|
subject.reindex
|
38
38
|
end
|
39
39
|
|
40
|
+
it 'update parameters can be specified to modify commitWithin' do
|
41
|
+
expected = {
|
42
|
+
params: { commitWithin: 5001 },
|
43
|
+
data: [{ id: 'doc_id', a: { set: 1 }, b: { set: 2 }, timestamp: { set: nil } }].to_json,
|
44
|
+
headers: { 'Content-Type' => 'application/json' }
|
45
|
+
}
|
46
|
+
expect(blacklight_solr).to receive(:update).with(expected)
|
47
|
+
subject.reindex(update_params: { commitWithin: 5001 })
|
48
|
+
end
|
49
|
+
|
40
50
|
it 'cowardlies refuse to index a document if the only value is an id' do
|
41
51
|
allow(subject).to receive_messages(to_solr: { id: 'doc_id' }, timestamp: { set: nil })
|
42
52
|
expect(blacklight_solr).not_to receive(:update)
|
@@ -20,6 +20,7 @@ describe Spotlight::SolrDocumentSidecar, type: :model do
|
|
20
20
|
context 'with an uploaded item' do
|
21
21
|
before do
|
22
22
|
subject.data = { 'configured_fields' => { 'some_configured_field' => 'some value' } }
|
23
|
+
subject.resource = Spotlight::Resources::Upload.new
|
23
24
|
allow(Spotlight::Resources::Upload).to receive(:fields).with(exhibit).and_return([uploaded_field_config])
|
24
25
|
end
|
25
26
|
|
@@ -16,7 +16,7 @@ describe Spotlight::IiifManifestPresenter do
|
|
16
16
|
end
|
17
17
|
|
18
18
|
describe 'public methods' do
|
19
|
-
let(:helpers) { double(
|
19
|
+
let(:helpers) { double(document_presenter: presenter) }
|
20
20
|
let(:presenter) { instance_double(Blacklight::ShowPresenter, heading: title_field_value) }
|
21
21
|
|
22
22
|
let(:iiif_url) { 'https://iiif.test/images/1-1' }
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'spec_helper'
|
4
|
+
|
5
|
+
RSpec.describe Spotlight::BulkUpdatesCsvTemplateService do
|
6
|
+
subject(:service) { described_class.new(exhibit: exhibit) }
|
7
|
+
|
8
|
+
let(:exhibit) { FactoryBot.create(:exhibit) }
|
9
|
+
let!(:tag1) { FactoryBot.create(:tagging, tagger: exhibit, taggable: exhibit) }
|
10
|
+
let!(:tag2) { FactoryBot.create(:tagging, tagger: exhibit, taggable: exhibit) }
|
11
|
+
|
12
|
+
describe '#template' do
|
13
|
+
let(:view_context) { double('ViewContext', document_presenter: double('DocumentPresenter', heading: 'Document Title')) }
|
14
|
+
|
15
|
+
it 'has a row for every document (+ the header)' do
|
16
|
+
template = CSV.parse(service.template(view_context: view_context).to_a.join)
|
17
|
+
expect(template).to have_at_least(56).items
|
18
|
+
expect(template[0].join(',')).to match(/Item ID,Item Title,Visibility,Tag: tagging\d,Tag: tagging\d/)
|
19
|
+
end
|
20
|
+
|
21
|
+
it 'only has requested columns' do
|
22
|
+
template = CSV.parse(service.template(view_context: view_context, tags: false).to_a.join)
|
23
|
+
expect(template[0].join(',')).to eq 'Item ID,Item Title,Visibility'
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
@@ -0,0 +1,66 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
describe Spotlight::Etl::Context do
|
4
|
+
subject(:context) { described_class.new(resource, **context_args) }
|
5
|
+
|
6
|
+
let(:resource) { instance_double(Spotlight::Resource, id: 123, document_model: SolrDocument) }
|
7
|
+
let(:context_args) { {} }
|
8
|
+
|
9
|
+
describe '#resource' do
|
10
|
+
it 'extracts the Spotlight::Resource from the argument list' do
|
11
|
+
expect(context.resource).to eq resource
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
describe '#unique_key' do
|
16
|
+
let(:data) { { id: '123' } }
|
17
|
+
|
18
|
+
it 'tries to get a usable unique key for a transformed document' do
|
19
|
+
expect(context.unique_key(data)).to eq '123'
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
describe '#on_error' do
|
24
|
+
context 'with a class-level handler' do
|
25
|
+
let(:handler) { instance_double(Proc, call: nil) }
|
26
|
+
|
27
|
+
it 'calls the class-level handler' do
|
28
|
+
allow(described_class).to receive(:error_reporter).and_return(handler)
|
29
|
+
|
30
|
+
subject.on_error(nil, nil, {})
|
31
|
+
|
32
|
+
expect(handler).to have_received(:call)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
context 'with an instance-level handler' do
|
37
|
+
let(:context_args) { { on_error: handler } }
|
38
|
+
let(:handler) { instance_double(Proc, call: nil) }
|
39
|
+
|
40
|
+
it 'calls the instance-level handler' do
|
41
|
+
subject.on_error(nil, nil, {})
|
42
|
+
|
43
|
+
expect(handler).to have_received(:call)
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
context 'with :log' do
|
48
|
+
it 'logs an error' do
|
49
|
+
allow(Rails.logger).to receive(:error)
|
50
|
+
|
51
|
+
subject.on_error(nil, nil, {})
|
52
|
+
|
53
|
+
expect(Rails.logger).to have_received(:error).with(/Pipeline error/)
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
context 'with :exception' do
|
58
|
+
let(:context_args) { { on_error: :exception } }
|
59
|
+
let(:e) { StandardError.new('asdf') }
|
60
|
+
|
61
|
+
it 'raises an exception' do
|
62
|
+
expect { subject.on_error(nil, e, {}) }.to raise_exception(e)
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|