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
@@ -7,7 +7,6 @@ module Spotlight
|
|
7
7
|
# harvest Images from IIIF Manifest and turn them into a Spotlight::Resource
|
8
8
|
# Note: IIIF API : http://iiif.io/api/presentation/2.0
|
9
9
|
class IiifHarvester < Spotlight::Resource
|
10
|
-
self.document_builder_class = Spotlight::Resources::IiifBuilder
|
11
10
|
self.weight = -5000
|
12
11
|
|
13
12
|
validate :valid_url?
|
@@ -16,6 +15,16 @@ module Spotlight
|
|
16
15
|
@iiif_manifests ||= IiifService.parse(url)
|
17
16
|
end
|
18
17
|
|
18
|
+
def self.indexing_pipeline
|
19
|
+
@indexing_pipeline ||= super.dup.tap do |pipeline|
|
20
|
+
pipeline.sources = [Spotlight::Etl::Sources::SourceMethodSource(:iiif_manifests)]
|
21
|
+
|
22
|
+
pipeline.transforms = [
|
23
|
+
->(data, p) { data.merge(p.source.to_solr(exhibit: p.context.resource.exhibit)) }
|
24
|
+
] + pipeline.transforms
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
19
28
|
private
|
20
29
|
|
21
30
|
def valid_url?
|
@@ -24,8 +33,8 @@ module Spotlight
|
|
24
33
|
|
25
34
|
def url_is_iiif?(url)
|
26
35
|
valid_content_types = ['application/json', 'application/ld+json']
|
27
|
-
req =
|
28
|
-
req =
|
36
|
+
req = Spotlight::Resources::IiifService.http_client.head(url)
|
37
|
+
req = Spotlight::Resources::IiifService.http_client.get(url) if req.status == 405
|
29
38
|
return unless req.success?
|
30
39
|
|
31
40
|
valid_content_types.any? do |valid_type|
|
@@ -14,7 +14,9 @@ module Spotlight
|
|
14
14
|
@solr_hash = {}
|
15
15
|
end
|
16
16
|
|
17
|
-
def to_solr
|
17
|
+
def to_solr(exhibit: nil)
|
18
|
+
@exhibit = exhibit if exhibit
|
19
|
+
|
18
20
|
add_document_id
|
19
21
|
add_label
|
20
22
|
add_thumbnail_url
|
@@ -69,7 +71,7 @@ module Spotlight
|
|
69
71
|
end
|
70
72
|
|
71
73
|
def add_label
|
72
|
-
return unless title_fields.present? && manifest
|
74
|
+
return unless title_fields.present? && manifest&.label
|
73
75
|
|
74
76
|
Array.wrap(title_fields).each do |field|
|
75
77
|
solr_hash[field] = metadata_class.new(manifest).label
|
@@ -144,7 +146,7 @@ module Spotlight
|
|
144
146
|
end
|
145
147
|
|
146
148
|
def thumbnail_field
|
147
|
-
blacklight_config.index.
|
149
|
+
blacklight_config.index.thumbnail_field
|
148
150
|
end
|
149
151
|
|
150
152
|
def full_image_field
|
@@ -152,11 +154,11 @@ module Spotlight
|
|
152
154
|
end
|
153
155
|
|
154
156
|
def tile_source_field
|
155
|
-
blacklight_config.show.
|
157
|
+
blacklight_config.show.tile_source_field
|
156
158
|
end
|
157
159
|
|
158
160
|
def title_fields
|
159
|
-
Spotlight::Engine.config.iiif_title_fields || blacklight_config.index
|
161
|
+
Spotlight::Engine.config.iiif_title_fields || blacklight_config.index&.title_field
|
160
162
|
end
|
161
163
|
|
162
164
|
def sidecar
|
@@ -187,7 +189,7 @@ module Spotlight
|
|
187
189
|
end
|
188
190
|
|
189
191
|
def label
|
190
|
-
return unless manifest
|
192
|
+
return unless manifest&.label
|
191
193
|
|
192
194
|
Array(json_ld_value(manifest.label)).map { |v| html_sanitize(v) }.first
|
193
195
|
end
|
@@ -197,7 +199,7 @@ module Spotlight
|
|
197
199
|
attr_reader :manifest
|
198
200
|
|
199
201
|
def metadata
|
200
|
-
manifest
|
202
|
+
manifest&.metadata || []
|
201
203
|
end
|
202
204
|
|
203
205
|
def metadata_hash
|
@@ -29,6 +29,13 @@ module Spotlight
|
|
29
29
|
recursive_manifests(new(url))
|
30
30
|
end
|
31
31
|
|
32
|
+
def self.http_client
|
33
|
+
Faraday.new do |b|
|
34
|
+
b.use FaradayMiddleware::FollowRedirects
|
35
|
+
b.adapter Faraday.default_adapter
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
32
39
|
protected
|
33
40
|
|
34
41
|
def object
|
@@ -41,8 +48,8 @@ module Spotlight
|
|
41
48
|
|
42
49
|
class << self
|
43
50
|
def iiif_response(url)
|
44
|
-
|
45
|
-
rescue Faraday::
|
51
|
+
Spotlight::Resources::IiifService.http_client.get(url).body
|
52
|
+
rescue Faraday::ConnectionFailed, Faraday::TimeoutError => e
|
46
53
|
Rails.logger.warn("HTTP GET for #{url} failed with #{e}")
|
47
54
|
{}.to_json
|
48
55
|
end
|
@@ -5,6 +5,18 @@ module Spotlight
|
|
5
5
|
# Raw solr document uploads
|
6
6
|
class JsonUpload < Spotlight::Resource
|
7
7
|
store :data, accessors: :json
|
8
|
+
|
9
|
+
# The indexing pipeline for JSON uploads copies the data from the stored
|
10
|
+
# `#data` field directly into the indexed document.
|
11
|
+
def self.indexing_pipeline
|
12
|
+
@indexing_pipeline ||= super.dup.tap do |pipeline|
|
13
|
+
pipeline.sources = [Spotlight::Etl::Sources::StoredData]
|
14
|
+
|
15
|
+
pipeline.transforms = [
|
16
|
+
Spotlight::Etl::Transforms::IdentityTransform
|
17
|
+
] + pipeline.transforms
|
18
|
+
end
|
19
|
+
end
|
8
20
|
end
|
9
21
|
end
|
10
22
|
end
|
@@ -10,8 +10,6 @@ module Spotlight
|
|
10
10
|
# we want to do this before reindexing
|
11
11
|
after_create :update_document_sidecar
|
12
12
|
|
13
|
-
self.document_builder_class = UploadSolrDocumentBuilder
|
14
|
-
|
15
13
|
def self.fields(exhibit)
|
16
14
|
@fields ||= {}
|
17
15
|
@fields[exhibit] ||= begin
|
@@ -25,6 +23,15 @@ module Spotlight
|
|
25
23
|
end
|
26
24
|
end
|
27
25
|
|
26
|
+
def self.indexing_pipeline
|
27
|
+
@indexing_pipeline ||= super.dup.tap do |pipeline|
|
28
|
+
pipeline.transforms = [
|
29
|
+
->(data, p) { data.merge({ p.context.document_model.unique_key.to_sym => p.source.compound_id }) },
|
30
|
+
Spotlight::Etl::Transforms::SourceMethodTransform(:to_solr)
|
31
|
+
] + pipeline.transforms
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
28
35
|
def compound_id
|
29
36
|
"#{exhibit_id}-#{id}"
|
30
37
|
end
|
@@ -33,6 +40,22 @@ module Spotlight
|
|
33
40
|
@sidecar ||= document_model.new(id: compound_id).sidecar(exhibit)
|
34
41
|
end
|
35
42
|
|
43
|
+
def to_solr
|
44
|
+
return {} unless upload&.file_present?
|
45
|
+
|
46
|
+
spotlight_routes = Spotlight::Engine.routes.url_helpers
|
47
|
+
riiif = Riiif::Engine.routes.url_helpers
|
48
|
+
|
49
|
+
dimensions = Riiif::Image.new(upload_id).info
|
50
|
+
|
51
|
+
{
|
52
|
+
spotlight_full_image_width_ssm: dimensions.width,
|
53
|
+
spotlight_full_image_height_ssm: dimensions.height,
|
54
|
+
Spotlight::Engine.config.thumbnail_field => riiif.image_path(upload, size: '!400,400'),
|
55
|
+
Spotlight::Engine.config.iiif_manifest_field => spotlight_routes.manifest_exhibit_solr_document_path(exhibit, compound_id)
|
56
|
+
}
|
57
|
+
end
|
58
|
+
|
36
59
|
private
|
37
60
|
|
38
61
|
def configured_fields
|
@@ -4,11 +4,10 @@ module Spotlight
|
|
4
4
|
##
|
5
5
|
# Exhibit authorization roles
|
6
6
|
class Role < ActiveRecord::Base
|
7
|
-
ROLES = %w[admin curator].freeze
|
8
7
|
belongs_to :resource, polymorphic: true, optional: true
|
9
8
|
belongs_to :user, class_name: Spotlight::Engine.config.user_class, autosave: true, optional: false
|
10
9
|
|
11
|
-
validates :role, inclusion: { in:
|
10
|
+
validates :role, inclusion: { in: Spotlight::Engine.config.exhibit_roles }
|
12
11
|
validate :user_must_be_unique, if: :user
|
13
12
|
|
14
13
|
def user_key
|
@@ -12,9 +12,14 @@ module Spotlight
|
|
12
12
|
|
13
13
|
self.table_name = 'spotlight_searches'
|
14
14
|
belongs_to :exhibit
|
15
|
+
has_many :group_memberships, class_name: 'Spotlight::GroupMember', as: :member, dependent: :delete_all
|
16
|
+
has_many :groups, through: :group_memberships
|
17
|
+
accepts_nested_attributes_for :group_memberships
|
18
|
+
accepts_nested_attributes_for :groups
|
15
19
|
serialize :query_params, Hash
|
16
20
|
default_scope { order('weight ASC') }
|
17
21
|
scope :published, -> { where(published: true) }
|
22
|
+
scope :unpublished, -> { where(published: [nil, false]) }
|
18
23
|
validates :title, presence: true
|
19
24
|
|
20
25
|
translates :title, :subtitle, :long_description
|
@@ -74,7 +74,6 @@ module Spotlight
|
|
74
74
|
|
75
75
|
upload_fields.each_with_object({}) do |field, solr_hash|
|
76
76
|
field_name = field.field_name.to_s
|
77
|
-
next unless configured_fields && configured_fields[field_name].present?
|
78
77
|
|
79
78
|
value = configured_fields[field_name]
|
80
79
|
field_data = field.data_to_solr(convert_stored_value_to_solr(value))
|
@@ -85,6 +84,8 @@ module Spotlight
|
|
85
84
|
end
|
86
85
|
|
87
86
|
def upload_fields
|
87
|
+
return [] unless document.uploaded_resource? || resource.is_a?(Spotlight::Resources::Upload)
|
88
|
+
|
88
89
|
Spotlight::Resources::Upload.fields(exhibit)
|
89
90
|
end
|
90
91
|
|
@@ -70,7 +70,7 @@ module Spotlight
|
|
70
70
|
private
|
71
71
|
|
72
72
|
def presenter
|
73
|
-
controller.view_context.
|
73
|
+
controller.view_context.document_presenter(resource)
|
74
74
|
end
|
75
75
|
|
76
76
|
def endpoint
|
@@ -79,7 +79,7 @@ module Spotlight
|
|
79
79
|
|
80
80
|
def iiif_url
|
81
81
|
# yes this is hacky, and we are appropriately ashamed.
|
82
|
-
controller.riiif.info_url(uploaded_resource.upload
|
82
|
+
controller.riiif.info_url(uploaded_resource.upload).sub(%r{/info\.json\Z}, '')
|
83
83
|
end
|
84
84
|
end
|
85
85
|
end
|
@@ -0,0 +1,93 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'csv'
|
4
|
+
|
5
|
+
module Spotlight
|
6
|
+
# A service to generate a CSV template suitable for re-uploading for bulk updates
|
7
|
+
class BulkUpdatesCsvTemplateService
|
8
|
+
attr_reader :exhibit
|
9
|
+
|
10
|
+
def initialize(exhibit:)
|
11
|
+
@exhibit = exhibit
|
12
|
+
end
|
13
|
+
|
14
|
+
def template(view_context:, title: true, tags: true, visibility: true)
|
15
|
+
return to_enum(:template, view_context: view_context, title: title, tags: tags, visibility: visibility) unless block_given?
|
16
|
+
|
17
|
+
yield ::CSV.generate_line(csv_headers(title: title, tags: tags, visibility: visibility))
|
18
|
+
each_document do |document|
|
19
|
+
sidecar = document.sidecar(exhibit)
|
20
|
+
yield ::CSV.generate_line([
|
21
|
+
document.id,
|
22
|
+
(title_column(view_context, document) if title),
|
23
|
+
(visibility_column(sidecar) if visibility),
|
24
|
+
(tags_column(sidecar) if tags)
|
25
|
+
].flatten.compact)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
private
|
30
|
+
|
31
|
+
def title_column(view_context, document)
|
32
|
+
CGI.unescapeHTML(view_context.document_presenter(document).heading)
|
33
|
+
end
|
34
|
+
|
35
|
+
def visibility_column(sidecar)
|
36
|
+
sidecar.public ? 'TRUE' : ' '
|
37
|
+
end
|
38
|
+
|
39
|
+
def tags_column(sidecar)
|
40
|
+
exhibit_tags.map do |tag|
|
41
|
+
sidecar.all_tags_list.include?(tag) ? 'TRUE' : ' '
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
def exhibit_tags
|
46
|
+
@exhibit_tags ||= exhibit.owned_tags.map(&:name)
|
47
|
+
end
|
48
|
+
|
49
|
+
def csv_headers(title:, tags:, visibility:)
|
50
|
+
headers = [bulk_updates_config.csv_id]
|
51
|
+
headers.append(bulk_updates_config.csv_title) if title
|
52
|
+
headers.append(bulk_updates_config.csv_visibility) if visibility
|
53
|
+
if tags
|
54
|
+
exhibit_tags.each do |tag|
|
55
|
+
headers.append(format(bulk_updates_config.csv_tags, tag))
|
56
|
+
end
|
57
|
+
end
|
58
|
+
headers
|
59
|
+
end
|
60
|
+
|
61
|
+
def bulk_updates_config
|
62
|
+
Spotlight::Engine.config.bulk_updates
|
63
|
+
end
|
64
|
+
|
65
|
+
# rubocop:disable Metrics/MethodLength, Metrics/AbcSize
|
66
|
+
def each_document(&block)
|
67
|
+
return to_enum(:each_document) unless block_given?
|
68
|
+
|
69
|
+
cursor_mark = nil
|
70
|
+
next_cursor_mark = '*'
|
71
|
+
|
72
|
+
solr_params = exhibit&.exhibit_search_builder&.to_h || {}
|
73
|
+
|
74
|
+
until next_cursor_mark == cursor_mark || next_cursor_mark.nil?
|
75
|
+
cursor_mark = next_cursor_mark
|
76
|
+
response = exhibit.blacklight_config.repository.search(
|
77
|
+
solr_params.merge(
|
78
|
+
'q' => '*',
|
79
|
+
'rows' => Spotlight::Engine.config.bulk_actions_batch_size,
|
80
|
+
'cursorMark' => cursor_mark,
|
81
|
+
'sort' => "#{exhibit.blacklight_config.document_model.unique_key} asc"
|
82
|
+
)
|
83
|
+
)
|
84
|
+
response.documents.each do |document|
|
85
|
+
block.call(document)
|
86
|
+
end
|
87
|
+
|
88
|
+
next_cursor_mark = response['nextCursorMark']
|
89
|
+
end
|
90
|
+
end
|
91
|
+
# rubocop:enable Metrics/MethodLength, Metrics/AbcSize
|
92
|
+
end
|
93
|
+
end
|
@@ -0,0 +1,52 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Spotlight
|
4
|
+
module Etl
|
5
|
+
# Contextual information for the ETL pipeline
|
6
|
+
class Context
|
7
|
+
# A hook for downstream applications to report or handle errors using external
|
8
|
+
# systems or services.
|
9
|
+
class_attribute :error_reporter
|
10
|
+
|
11
|
+
attr_reader :arguments, :additional_metadata, :additional_parameters, :logger
|
12
|
+
|
13
|
+
delegate :document_model, to: :resource
|
14
|
+
|
15
|
+
def initialize(*args, additional_metadata: {}, on_error: :log, logger: Rails.logger, **additional_parameters)
|
16
|
+
@arguments = args
|
17
|
+
@additional_metadata = additional_metadata
|
18
|
+
@additional_parameters = additional_parameters
|
19
|
+
@on_error = on_error
|
20
|
+
@logger = logger
|
21
|
+
end
|
22
|
+
|
23
|
+
# @return [Spotlight::Resource]
|
24
|
+
def resource
|
25
|
+
arguments.first
|
26
|
+
end
|
27
|
+
|
28
|
+
# @return [String]
|
29
|
+
def unique_key(data)
|
30
|
+
data[document_model&.unique_key&.to_sym || :id]
|
31
|
+
end
|
32
|
+
|
33
|
+
##
|
34
|
+
# This hook receives any exceptions raised by pipeline steps and handles them
|
35
|
+
# appropriately.
|
36
|
+
def on_error(pipeline, exception, data)
|
37
|
+
error_reporter&.call(pipeline, exception, data)
|
38
|
+
|
39
|
+
case @on_error
|
40
|
+
when :log
|
41
|
+
logger.tagged('ETL') do
|
42
|
+
logger.error("Pipeline error processing resource #{resource.id}: #{exception}")
|
43
|
+
end
|
44
|
+
when :exception
|
45
|
+
raise exception
|
46
|
+
else
|
47
|
+
@on_error&.call(pipeline, exception, data)
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
@@ -0,0 +1,192 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Spotlight
|
4
|
+
module Etl
|
5
|
+
# ETL pipeline executor
|
6
|
+
class Executor
|
7
|
+
include ActiveSupport::Benchmarkable
|
8
|
+
|
9
|
+
attr_reader :pipeline, :context, :source, :cache, :logger
|
10
|
+
|
11
|
+
delegate :sources, :pre_processes, :transforms, :post_processes, :loaders, to: :pipeline
|
12
|
+
|
13
|
+
# @param [Spotlight::Etl::Pipeline] pipeline
|
14
|
+
# @param [Spotlight::Etl::Context] context
|
15
|
+
# @param [Hash] cache a shared cache for pipeline steps to store data for the lifetime of the cache
|
16
|
+
def initialize(pipeline, context, cache: nil)
|
17
|
+
@pipeline = pipeline
|
18
|
+
@context = context
|
19
|
+
|
20
|
+
@provided_cache = cache.present?
|
21
|
+
@cache = cache || {}
|
22
|
+
@step_cache = {}
|
23
|
+
end
|
24
|
+
|
25
|
+
##
|
26
|
+
# Execute the ETL pipeline
|
27
|
+
#
|
28
|
+
# @param [Hash] data the initial data structure to pass through to the transform steps
|
29
|
+
# @yield (optionally..) each transformed document after it is transformed but before
|
30
|
+
# it is sent to the loaders
|
31
|
+
def call(data: {}, &block)
|
32
|
+
extract.with_index do |source, index|
|
33
|
+
with_source(source, index) do
|
34
|
+
catch :skip do
|
35
|
+
load(transform(data), &block)
|
36
|
+
end
|
37
|
+
rescue StandardError => e
|
38
|
+
on_error(e, data)
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
after_call
|
43
|
+
end
|
44
|
+
|
45
|
+
##
|
46
|
+
# Estimate the number of documents that will be produced by the pipeline
|
47
|
+
#
|
48
|
+
# @return [Number]
|
49
|
+
def estimated_size
|
50
|
+
@estimated_size ||= compile_steps(sources).sum { |source| source.call(context).count }
|
51
|
+
end
|
52
|
+
|
53
|
+
##
|
54
|
+
# Tagged logger for benchmarks and data flow logging.
|
55
|
+
# NOTE: this is super weird to support Rails 5.2
|
56
|
+
# @private
|
57
|
+
# @yield Logger
|
58
|
+
def with_logger
|
59
|
+
logger = (context&.logger || Rails.logger)
|
60
|
+
logger.tagged(pipeline.class) do
|
61
|
+
logger.tagged("#<#{source.class} id=#{source&.id if source.respond_to?(:id)}>") do
|
62
|
+
@logger = logger
|
63
|
+
yield logger
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
67
|
+
|
68
|
+
##
|
69
|
+
# @private
|
70
|
+
# @param [Hash] data
|
71
|
+
# @return [String] a simplified + truncated version of the data hash for debugging
|
72
|
+
def transform_data_for_debugging(data, verbose: $VERBOSE, truncate: 100)
|
73
|
+
return data.inspect.truncate(truncate) unless data.is_a?(Hash)
|
74
|
+
return "id #{context.unique_key(data) || data&.first(5)&.inspect}" unless verbose
|
75
|
+
|
76
|
+
JSON.fast_generate(data).truncate(truncate)
|
77
|
+
end
|
78
|
+
|
79
|
+
##
|
80
|
+
# Propagate exceptions up to the context's error handler.
|
81
|
+
def on_error(exception, data)
|
82
|
+
context.on_error(self, exception, data)
|
83
|
+
end
|
84
|
+
|
85
|
+
private
|
86
|
+
|
87
|
+
##
|
88
|
+
# Set the current source
|
89
|
+
# @param [Object] source
|
90
|
+
# @param [Number] index
|
91
|
+
def with_source(source, index)
|
92
|
+
@source = source
|
93
|
+
|
94
|
+
benchmark "Indexing item #{source.inspect.truncate(50)} in resource #{context.resource.id} (#{index} / #{estimated_size})" do
|
95
|
+
yield.tap { @source = nil }
|
96
|
+
end
|
97
|
+
end
|
98
|
+
|
99
|
+
##
|
100
|
+
# Extract data from sources. The defined sources receive the provided context
|
101
|
+
# and should return an array or other enumerable of sources to pass through
|
102
|
+
# the pipeline.
|
103
|
+
#
|
104
|
+
# @yield [Object]
|
105
|
+
def extract(&block)
|
106
|
+
return to_enum(:extract) { estimated_size } unless block_given?
|
107
|
+
|
108
|
+
compile_steps(sources).each do |source|
|
109
|
+
source.call(context).each do |data|
|
110
|
+
block.call(data)
|
111
|
+
end
|
112
|
+
end
|
113
|
+
end
|
114
|
+
|
115
|
+
##
|
116
|
+
# Transform the source to a document.
|
117
|
+
#
|
118
|
+
# @param [Hash] from the initial seed data used as the input to the initial transforms
|
119
|
+
# @return [Hash] the transformed document
|
120
|
+
def transform(from)
|
121
|
+
compile_steps(pre_processes).each { |step| step.call(from, self) }
|
122
|
+
|
123
|
+
data = compile_steps(transforms).inject(from) { |input, step| step.call(input, self) }
|
124
|
+
|
125
|
+
compile_steps(post_processes).each { |step| step.call(data, self) }
|
126
|
+
|
127
|
+
with_logger do |logger|
|
128
|
+
logger.debug do
|
129
|
+
"Transform output: #{transform_data_for_debugging(data, verbose: true, truncate: 1000)}"
|
130
|
+
end
|
131
|
+
end
|
132
|
+
|
133
|
+
data
|
134
|
+
end
|
135
|
+
|
136
|
+
##
|
137
|
+
# Load a document into a data sink.
|
138
|
+
#
|
139
|
+
# @param [Hash] the fully transformed data
|
140
|
+
# @yield [Hash] the data before it is sent to any loaders
|
141
|
+
def load(data, &block)
|
142
|
+
return unless data
|
143
|
+
|
144
|
+
catch :skip do
|
145
|
+
block&.call(data, self)
|
146
|
+
|
147
|
+
compile_steps(loaders).each do |loader|
|
148
|
+
loader.call(data, self)
|
149
|
+
end
|
150
|
+
end
|
151
|
+
end
|
152
|
+
|
153
|
+
##
|
154
|
+
# A callback run after transforming data to do any finalizing or cleanup
|
155
|
+
# from the run.
|
156
|
+
def after_call
|
157
|
+
finalize_loaders
|
158
|
+
@cache = {} unless @provided_cache
|
159
|
+
@step_cache = {}
|
160
|
+
end
|
161
|
+
|
162
|
+
##
|
163
|
+
# Loaders may implement a `#finalize` method if they want to perform any work
|
164
|
+
# after all the data is transformed.
|
165
|
+
def finalize_loaders
|
166
|
+
compile_steps(loaders).each do |step|
|
167
|
+
step.finalize(self) if step.respond_to? :finalize
|
168
|
+
end
|
169
|
+
end
|
170
|
+
|
171
|
+
##
|
172
|
+
# DSL convenience utility for writing compact lists of steps; this unrolls
|
173
|
+
# pipeline definitions to contain arrays or hashes, e.g.:
|
174
|
+
# `pipeline.transforms = [step_1: lambda {}, step_2: lambda {}]`
|
175
|
+
#
|
176
|
+
# @return [Enumerable<Spotlight::Etl::Step>]
|
177
|
+
def compile_steps(steps)
|
178
|
+
return to_enum(:compile_steps, steps) unless block_given?
|
179
|
+
|
180
|
+
steps.flatten.each do |step|
|
181
|
+
if step.is_a? Hash
|
182
|
+
step.each do |k, v|
|
183
|
+
yield(@step_cache[k] ||= Spotlight::Etl::Step.new(v, label: k, executor: self))
|
184
|
+
end
|
185
|
+
else
|
186
|
+
yield @step_cache[step] ||= Spotlight::Etl::Step.new(step, executor: self)
|
187
|
+
end
|
188
|
+
end
|
189
|
+
end
|
190
|
+
end
|
191
|
+
end
|
192
|
+
end
|