blacklight-spotlight 3.0.0.rc4 → 3.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- 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/blocks/uploaded_items_block.js +8 -1
- data/app/assets/javascripts/spotlight/admin/catalog_edit.js +13 -47
- data/app/assets/javascripts/spotlight/admin/exhibit_tag_autocomplete.js +37 -0
- data/app/assets/javascripts/spotlight/admin/{reindex_monitor.js → progress_monitor.js} +25 -4
- data/app/assets/javascripts/spotlight/admin/sir-trevor/locales.js +1 -1
- data/app/assets/javascripts/spotlight/user/zpr_links.js.erb +29 -14
- data/app/assets/stylesheets/spotlight/_browse.scss +8 -0
- data/app/assets/stylesheets/spotlight/_catalog.scss +30 -4
- data/app/assets/stylesheets/spotlight/_exhibit_admin.scss +9 -0
- data/app/assets/stylesheets/spotlight/_modals.scss +3 -0
- data/app/assets/stylesheets/spotlight/_nestable.scss +8 -0
- data/app/assets/stylesheets/spotlight/_spotlight.scss +2 -0
- data/app/assets/stylesheets/spotlight/_view_larger.scss +22 -0
- data/app/assets/stylesheets/spotlight/typeahead.css +23 -23
- data/app/builders/spotlight/bootstrap_breadcrumbs_builder.rb +4 -2
- data/app/controllers/concerns/spotlight/base.rb +1 -1
- data/app/controllers/concerns/spotlight/catalog.rb +7 -1
- data/app/controllers/spotlight/browse_controller.rb +9 -15
- 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 +12 -12
- data/app/controllers/spotlight/dashboards_controller.rb +5 -4
- data/app/controllers/spotlight/featured_images_controller.rb +1 -1
- data/app/controllers/spotlight/job_trackers_controller.rb +17 -0
- data/app/controllers/spotlight/pages_controller.rb +6 -7
- data/app/controllers/spotlight/tags_controller.rb +39 -5
- data/app/helpers/spotlight/application_helper.rb +1 -1
- data/app/helpers/spotlight/job_trackers_helper.rb +31 -0
- data/app/helpers/spotlight/main_app_helpers.rb +3 -4
- data/app/helpers/spotlight/meta_helper.rb +2 -2
- data/app/helpers/spotlight/pages_helper.rb +0 -7
- 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 +40 -23
- data/app/jobs/spotlight/add_tags_job.rb +31 -0
- data/app/jobs/spotlight/add_uploads_from_csv.rb +2 -4
- data/app/jobs/spotlight/change_visibility_job.rb +33 -0
- data/app/jobs/spotlight/process_bulk_updates_csv_job.rb +82 -0
- data/app/jobs/spotlight/reindex_exhibit_job.rb +5 -2
- data/app/jobs/spotlight/reindex_job.rb +35 -23
- data/app/jobs/spotlight/remove_tags_job.rb +31 -0
- data/app/jobs/spotlight/rename_sidecar_field_job.rb +1 -0
- data/app/jobs/spotlight/rename_tags_job.rb +33 -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_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 +5 -1
- data/app/models/sir_trevor_rails/blocks/browse_block.rb +1 -1
- data/app/models/sir_trevor_rails/blocks/featured_pages_block.rb +1 -1
- 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 +6 -2
- data/app/models/spotlight/attachment.rb +1 -1
- data/app/models/spotlight/{reindex_progress.rb → background_job_progress.rb} +8 -7
- data/app/models/spotlight/blacklight_configuration.rb +26 -6
- data/app/models/spotlight/bulk_update.rb +8 -0
- data/app/models/spotlight/exhibit.rb +2 -1
- data/app/models/spotlight/feature_page.rb +0 -2
- data/app/models/spotlight/featured_image.rb +40 -1
- data/app/models/spotlight/field_metadata.rb +4 -8
- data/app/models/spotlight/job_tracker.rb +11 -2
- data/app/models/spotlight/page.rb +1 -3
- data/app/models/spotlight/page_configurations.rb +10 -9
- data/app/models/spotlight/resource.rb +4 -4
- data/app/models/spotlight/resources/iiif_harvester.rb +2 -2
- data/app/models/spotlight/resources/iiif_service.rb +8 -1
- data/app/models/spotlight/resources/upload.rb +2 -2
- data/app/models/spotlight/role.rb +1 -2
- 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/executor.rb +1 -3
- data/app/services/spotlight/iiif_resource_resolver.rb +1 -1
- 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/_sidebar.html.erb +2 -2
- data/app/views/spotlight/browse/_search.html.erb +3 -3
- data/app/views/spotlight/browse/_search_box.html.erb +9 -9
- data/app/views/spotlight/browse/_search_title.html.erb +1 -1
- 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/_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 +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 +1 -1
- data/app/views/spotlight/exhibits/_exhibit_card.html.erb +1 -1
- data/app/views/spotlight/feature_pages/_sidebar.html.erb +1 -1
- data/app/views/spotlight/featured_images/_form.html.erb +1 -1
- 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/_order_pages.html.erb +2 -2
- data/app/views/spotlight/pages/_view_type_group.html.erb +3 -3
- data/app/views/spotlight/pages/show.html.erb +1 -1
- 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 +2 -2
- data/app/views/spotlight/shared/_curation_sidebar.html.erb +3 -0
- data/app/views/spotlight/sir_trevor/blocks/_browse_group_categories_block.html.erb +3 -3
- data/app/views/spotlight/sir_trevor/blocks/_search_results_block.html.erb +1 -1
- 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/show.yaml.yamlbuilder +6 -0
- data/config/i18n-tasks.yml +1 -0
- data/config/locales/spotlight.en.yml +169 -10
- data/config/routes.rb +29 -1
- data/db/migrate/20210126123041_create_events.rb +1 -1
- 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/db/migrate/20210506070809_add_indexes_for_featured_images.rb +9 -0
- data/lib/generators/spotlight/install_generator.rb +2 -2
- 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 +14 -0
- data/lib/spotlight/version.rb +1 -1
- data/spec/controllers/spotlight/browse_controller_spec.rb +0 -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 +12 -12
- data/spec/controllers/spotlight/featured_images_controller_spec.rb +3 -3
- data/spec/controllers/spotlight/job_trackers_controller_spec.rb +37 -0
- data/spec/controllers/spotlight/tags_controller_spec.rb +5 -1
- data/spec/examples.txt +1496 -1442
- data/spec/factories/bulk_updates.rb +15 -0
- data/spec/factories/exhibits.rb +4 -0
- data/spec/factories/job_trackers.rb +2 -0
- data/spec/factories/users.rb +27 -8
- data/spec/features/add_items_spec.rb +1 -1
- data/spec/features/bulk_actions_spec.rb +72 -0
- data/spec/features/catalog_spec.rb +1 -0
- data/spec/features/import_exhibit_spec.rb +5 -1
- 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/site_users_management_spec.rb +4 -4
- 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/pages_helper_spec.rb +0 -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_job_spec.rb +4 -1
- data/spec/jobs/spotlight/remove_tags_job_spec.rb +39 -0
- data/spec/lib/migration/iiif_spec.rb +1 -1
- data/spec/models/spotlight/ability_spec.rb +27 -0
- data/spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb +1 -2
- data/spec/models/spotlight/{reindex_progress_spec.rb → background_job_progress_spec.rb} +15 -2
- 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 +1 -1
- data/spec/models/spotlight/featured_image_spec.rb +13 -1
- data/spec/models/spotlight/resource_spec.rb +23 -0
- data/spec/models/spotlight/solr_document/atomic_updates_spec.rb +10 -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/test_app_templates/Gemfile.extra +1 -0
- data/spec/test_app_templates/lib/generators/test_app_generator.rb +1 -1
- data/spec/uploaders/spotlight/featured_image_uploader_spec.rb +2 -2
- data/spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb +1 -1
- data/spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb +2 -0
- 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/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
- metadata +90 -21
- 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
@@ -92,7 +92,7 @@ module Spotlight
|
|
92
92
|
# Helper to turn tag data into facets
|
93
93
|
def url_to_tag_facet(tag)
|
94
94
|
if current_exhibit
|
95
|
-
search_action_url(search_state.reset.
|
95
|
+
search_action_url(search_state.reset.filter(:exhibit_tags).add(tag).params)
|
96
96
|
else
|
97
97
|
search_action_url(q: tag)
|
98
98
|
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Spotlight
|
4
|
+
# HTML <meta> tag helpers
|
5
|
+
module JobTrackersHelper
|
6
|
+
def job_status_icon(job_tracker)
|
7
|
+
content_tag :span, title: t(job_tracker.status || 'missing', scope: 'spotlight.job_trackers.status') do # rubocop:disable Rails/ContentTag
|
8
|
+
if job_tracker.enqueued? || job_tracker.in_progress?
|
9
|
+
'⏱'
|
10
|
+
elsif job_tracker.completed?
|
11
|
+
'✅'
|
12
|
+
elsif job_tracker.failed?
|
13
|
+
'🟥'
|
14
|
+
else
|
15
|
+
''
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
def job_tracker_event_table_row_class(event)
|
21
|
+
case event.type
|
22
|
+
when 'error'
|
23
|
+
'table-danger'
|
24
|
+
when 'info', 'summary'
|
25
|
+
''
|
26
|
+
else
|
27
|
+
"table-#{event.type}"
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
@@ -28,12 +28,11 @@ module Spotlight
|
|
28
28
|
super
|
29
29
|
end
|
30
30
|
|
31
|
-
def
|
32
|
-
|
33
|
-
when 'index'
|
31
|
+
def document_presenter_class(_document)
|
32
|
+
if action_name == 'index'
|
34
33
|
super
|
35
34
|
else
|
36
|
-
|
35
|
+
blacklight_config.view_config(action_name: :show).document_presenter_class
|
37
36
|
end
|
38
37
|
end
|
39
38
|
|
@@ -81,7 +81,7 @@ module Spotlight
|
|
81
81
|
end
|
82
82
|
|
83
83
|
def document_twitter_card_content(document)
|
84
|
-
presenter =
|
84
|
+
presenter = document_presenter(document)
|
85
85
|
|
86
86
|
twitter_card('summary_large_image') do |card|
|
87
87
|
card.title presenter.heading
|
@@ -90,7 +90,7 @@ module Spotlight
|
|
90
90
|
end
|
91
91
|
|
92
92
|
def document_opengraph_content(document)
|
93
|
-
presenter =
|
93
|
+
presenter = document_presenter(document)
|
94
94
|
|
95
95
|
opengraph do |graph|
|
96
96
|
graph.site_name application_name
|
@@ -29,13 +29,6 @@ module Spotlight
|
|
29
29
|
render_markdown(clean_text)
|
30
30
|
end
|
31
31
|
|
32
|
-
def available_index_fields
|
33
|
-
fields = blacklight_config.index_fields.map { |k, _v| { key: k, label: index_field_label(blacklight_config.document_model.new, k) } }
|
34
|
-
fields.unshift(key: document_show_link_field, label: t(:'spotlight.pages.form.title_placeholder')) unless index_fields.include? document_show_link_field
|
35
|
-
|
36
|
-
fields
|
37
|
-
end
|
38
|
-
|
39
32
|
def disable_save_pages_button?
|
40
33
|
page_collection_name == 'about_pages' && @pages.empty?
|
41
34
|
end
|
@@ -7,7 +7,7 @@ module Spotlight
|
|
7
7
|
##
|
8
8
|
# Format the available roles for a select_tag
|
9
9
|
def roles_for_select
|
10
|
-
Spotlight::
|
10
|
+
Spotlight::Engine.config.exhibit_roles.each_with_object({}) do |key, object|
|
11
11
|
object[t("spotlight.role.#{key}")] = key
|
12
12
|
end
|
13
13
|
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Spotlight
|
4
|
+
# Gather documents by a given query that can be used in a job
|
5
|
+
# Will also increment job tracking total
|
6
|
+
module GatherDocuments
|
7
|
+
extend ActiveSupport::Concern
|
8
|
+
|
9
|
+
# rubocop:disable Metrics/MethodLength
|
10
|
+
def each_document(solr_params, exhibit, &block)
|
11
|
+
return to_enum(:each_document, solr_params, exhibit) unless block_given?
|
12
|
+
|
13
|
+
cursor_mark = nil
|
14
|
+
next_cursor_mark = '*'
|
15
|
+
|
16
|
+
until next_cursor_mark == cursor_mark || next_cursor_mark.nil?
|
17
|
+
cursor_mark = next_cursor_mark
|
18
|
+
response = exhibit.blacklight_config.repository.search(
|
19
|
+
solr_params.merge(
|
20
|
+
'rows' => Spotlight::Engine.config.bulk_actions_batch_size,
|
21
|
+
'cursorMark' => cursor_mark,
|
22
|
+
'sort' => "#{exhibit.blacklight_config.document_model.unique_key} asc"
|
23
|
+
)
|
24
|
+
)
|
25
|
+
progress.total = response.total
|
26
|
+
response.documents.each do |document|
|
27
|
+
block.call(document)
|
28
|
+
end
|
29
|
+
|
30
|
+
next_cursor_mark = response['nextCursorMark']
|
31
|
+
end
|
32
|
+
end
|
33
|
+
# rubocop:enable Metrics/MethodLength
|
34
|
+
end
|
35
|
+
end
|
@@ -6,42 +6,59 @@ module Spotlight
|
|
6
6
|
extend ActiveSupport::Concern
|
7
7
|
include ActiveJob::Status
|
8
8
|
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
class_methods do
|
10
|
+
# @param resource [Proc] receives the job and returns the resource connect to the job tracking status
|
11
|
+
# @param reports_on [Proc] optional, receives the job and returns a Spotlight::JobTracker to "roll up" statuses to
|
12
|
+
# @param user [Proc] optional, receives the job and returns the User that initiated the job
|
13
|
+
def with_job_tracking(
|
14
|
+
resource:,
|
15
|
+
reports_on: ->(job) { job.arguments.last[:reports_on] if job.arguments.last.is_a?(Hash) },
|
16
|
+
user: ->(job) { job.arguments.last[:user] if job.arguments.last.is_a?(Hash) }
|
17
|
+
)
|
18
|
+
around_perform do |job, block|
|
19
|
+
resource_object = resource&.call(job)
|
20
|
+
|
21
|
+
job.initialize_job_tracker!(
|
22
|
+
resource: resource_object,
|
23
|
+
on: reports_on&.call(job) || resource_object,
|
24
|
+
user: user&.call(job)
|
25
|
+
)
|
26
|
+
|
27
|
+
block.call
|
28
|
+
ensure
|
29
|
+
job.finalize_job_tracker!
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
def mark_job_as_failed!
|
35
|
+
@failed = true
|
12
36
|
end
|
13
37
|
|
14
38
|
def job_tracker
|
15
39
|
@job_tracker ||= find_or_initialize_job_tracker
|
16
40
|
end
|
17
41
|
|
42
|
+
def initialize_job_tracker!(**params)
|
43
|
+
job_tracker.update(params.merge(status: 'in_progress').compact)
|
44
|
+
end
|
45
|
+
|
46
|
+
def finalize_job_tracker!
|
47
|
+
return unless job_tracker.status == 'in_progress' || job_tracker.status == 'enqueued'
|
48
|
+
|
49
|
+
job_tracker.update(
|
50
|
+
status: @failed ? 'failed' : 'completed',
|
51
|
+
data: { progress: progress.progress, total: progress.total }
|
52
|
+
)
|
53
|
+
end
|
54
|
+
|
18
55
|
private
|
19
56
|
|
20
57
|
def find_or_initialize_job_tracker
|
21
58
|
JobTracker.find_or_create_by(job_id: job_id) do |tracker|
|
22
59
|
tracker.job_class = self.class.name
|
23
60
|
tracker.status = 'enqueued'
|
24
|
-
update_job_tracker_properties(tracker)
|
25
61
|
end
|
26
62
|
end
|
27
|
-
|
28
|
-
def finalize_job_tracker
|
29
|
-
job_tracker.update(status: 'completed') if job_tracker.status == 'enqueued'
|
30
|
-
end
|
31
|
-
|
32
|
-
def update_job_tracker_properties(tracker)
|
33
|
-
tracker.resource = job_tracking_resource
|
34
|
-
tracker.on = reports_on_resource || tracker.resource
|
35
|
-
|
36
|
-
tracker.user = arguments.last[:user] if arguments.last.is_a?(Hash)
|
37
|
-
end
|
38
|
-
|
39
|
-
def job_tracking_resource
|
40
|
-
arguments.first
|
41
|
-
end
|
42
|
-
|
43
|
-
def reports_on_resource
|
44
|
-
arguments.last[:reports_on] if arguments.last.is_a?(Hash)
|
45
|
-
end
|
46
63
|
end
|
47
64
|
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Spotlight
|
4
|
+
###
|
5
|
+
class AddTagsJob < Spotlight::ApplicationJob
|
6
|
+
include Spotlight::JobTracking
|
7
|
+
include Spotlight::GatherDocuments
|
8
|
+
with_job_tracking(resource: ->(job) { job.arguments.last[:exhibit] })
|
9
|
+
|
10
|
+
# rubocop:disable Metrics/AbcSize, Metrics/MethodLength
|
11
|
+
def perform(solr_params:, exhibit:, tags:, **)
|
12
|
+
@errors = 0
|
13
|
+
|
14
|
+
each_document(solr_params, exhibit) do |document|
|
15
|
+
sidecar = document.sidecar(exhibit)
|
16
|
+
all_tags = sidecar.all_tags_list
|
17
|
+
all_tags += tags
|
18
|
+
exhibit.tag(document.sidecar(exhibit), with: all_tags, on: :tags)
|
19
|
+
document.reindex(update_params: {})
|
20
|
+
progress&.increment
|
21
|
+
rescue StandardError => e
|
22
|
+
job_tracker.append_log_entry(type: :error, exhibit: exhibit, message: e.to_s)
|
23
|
+
@errors += 1
|
24
|
+
mark_job_as_failed!
|
25
|
+
end
|
26
|
+
exhibit.blacklight_config.repository.connection.commit
|
27
|
+
job_tracker.append_log_entry(type: :info, exhibit: exhibit, message: "#{progress.progress} of #{progress.total} (#{@errors} errors)")
|
28
|
+
end
|
29
|
+
# rubocop:enable Metrics/AbcSize, Metrics/MethodLength
|
30
|
+
end
|
31
|
+
end
|
@@ -5,6 +5,8 @@ module Spotlight
|
|
5
5
|
# Process a CSV upload into new Spotlight::Resource::Upload objects
|
6
6
|
class AddUploadsFromCsv < Spotlight::ApplicationJob
|
7
7
|
include Spotlight::JobTracking
|
8
|
+
with_job_tracking(resource: ->(job) { job.arguments[1] })
|
9
|
+
|
8
10
|
attr_reader :count
|
9
11
|
attr_reader :errors
|
10
12
|
|
@@ -58,9 +60,5 @@ module Spotlight
|
|
58
60
|
end.compact.to_h
|
59
61
|
end.compact
|
60
62
|
end
|
61
|
-
|
62
|
-
def job_tracking_resource
|
63
|
-
arguments[1]
|
64
|
-
end
|
65
63
|
end
|
66
64
|
end
|
@@ -0,0 +1,33 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Spotlight
|
4
|
+
###
|
5
|
+
class ChangeVisibilityJob < Spotlight::ApplicationJob
|
6
|
+
include Spotlight::JobTracking
|
7
|
+
include Spotlight::GatherDocuments
|
8
|
+
with_job_tracking(resource: ->(job) { job.arguments.last[:exhibit] })
|
9
|
+
|
10
|
+
# rubocop:disable Metrics/MethodLength
|
11
|
+
def perform(solr_params:, exhibit:, visibility:, **)
|
12
|
+
@errors = 0
|
13
|
+
|
14
|
+
each_document(solr_params, exhibit) do |document|
|
15
|
+
case visibility
|
16
|
+
when 'public'
|
17
|
+
document.make_public!(exhibit)
|
18
|
+
when 'private'
|
19
|
+
document.make_private!(exhibit)
|
20
|
+
end
|
21
|
+
document.reindex(update_params: {})
|
22
|
+
progress&.increment
|
23
|
+
rescue StandardError => e
|
24
|
+
job_tracker.append_log_entry(type: :error, exhibit: exhibit, message: e.to_s)
|
25
|
+
@errors += 1
|
26
|
+
mark_job_as_failed!
|
27
|
+
end
|
28
|
+
exhibit.blacklight_config.repository.connection.commit
|
29
|
+
job_tracker.append_log_entry(type: :info, exhibit: exhibit, message: "#{progress.progress} of #{progress.total} (#{@errors} errors)")
|
30
|
+
end
|
31
|
+
# rubocop:enable Metrics/MethodLength
|
32
|
+
end
|
33
|
+
end
|
@@ -0,0 +1,82 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'csv'
|
4
|
+
|
5
|
+
module Spotlight
|
6
|
+
###
|
7
|
+
class ProcessBulkUpdatesCsvJob < Spotlight::ApplicationJob
|
8
|
+
include Spotlight::JobTracking
|
9
|
+
with_job_tracking(resource: ->(job) { job.arguments.first })
|
10
|
+
|
11
|
+
# rubocop:disable Metrics/AbcSize, Metrics/MethodLength
|
12
|
+
def perform(exhibit, bulk_update)
|
13
|
+
errors = 0
|
14
|
+
header_converter = ->(header) { header } # Use raw header for columns (since they are configured)
|
15
|
+
csv_path = bulk_update.file.current_path
|
16
|
+
File.open(csv_path) do |f|
|
17
|
+
progress&.total = f.each_line.count(&:present?) - 1 # ignore the header
|
18
|
+
|
19
|
+
::CSV.table(f, header_converters: header_converter).each do |row|
|
20
|
+
process_row(exhibit, row)
|
21
|
+
progress&.increment
|
22
|
+
rescue StandardError => e
|
23
|
+
job_tracker.append_log_entry(type: :error, exhibit: exhibit, message: e.to_s)
|
24
|
+
errors += 1
|
25
|
+
mark_job_as_failed!
|
26
|
+
end
|
27
|
+
|
28
|
+
exhibit.blacklight_config.repository.connection.commit
|
29
|
+
job_tracker.append_log_entry(type: :info, exhibit: exhibit, message: "#{progress&.progress} of #{progress&.total} (#{errors} errors)")
|
30
|
+
end
|
31
|
+
end
|
32
|
+
# rubocop:enable Metrics/AbcSize, Metrics/MethodLength
|
33
|
+
|
34
|
+
private
|
35
|
+
|
36
|
+
# rubocop:disable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/MethodLength, Metrics/PerceivedComplexity
|
37
|
+
def process_row(exhibit, row)
|
38
|
+
document = exhibit.blacklight_config.document_model.find(row[config.csv_id])
|
39
|
+
sidecar = document.sidecar(exhibit)
|
40
|
+
|
41
|
+
raise 'Unable to locate document' if document.blank?
|
42
|
+
|
43
|
+
needs_reindex = false
|
44
|
+
|
45
|
+
begin
|
46
|
+
if sidecar.public != to_bool(row[config.csv_visibility])
|
47
|
+
sidecar.update(public: to_bool(row[config.csv_visibility]))
|
48
|
+
needs_reindex = true
|
49
|
+
end
|
50
|
+
|
51
|
+
tag_cols = row.headers.select { |k| k =~ /^#{config.csv_tags_prefix}/ }
|
52
|
+
|
53
|
+
if tag_cols.any?
|
54
|
+
all_tags = sidecar.all_tags_list
|
55
|
+
|
56
|
+
added_tags_cols, removed_tags_cols = tag_cols.partition do |k|
|
57
|
+
to_bool(row[k])
|
58
|
+
end
|
59
|
+
|
60
|
+
existing_or_added_tags = added_tags_cols.map { |x| x.sub(/#{config.csv_tags_prefix}\s/, '') }
|
61
|
+
removed_tags = removed_tags_cols.map { |x| x.sub(/#{config.csv_tags_prefix}\s/, '') }
|
62
|
+
|
63
|
+
if all_tags.difference(existing_or_added_tags).any? || existing_or_added_tags.difference(all_tags).any?
|
64
|
+
exhibit.tag(sidecar, with: all_tags - removed_tags + existing_or_added_tags, on: :tags)
|
65
|
+
needs_reindex = true
|
66
|
+
end
|
67
|
+
end
|
68
|
+
ensure
|
69
|
+
document.reindex(update_params: {}) if needs_reindex
|
70
|
+
end
|
71
|
+
end
|
72
|
+
# rubocop:enable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/MethodLength, Metrics/PerceivedComplexity
|
73
|
+
|
74
|
+
def to_bool(value)
|
75
|
+
ActiveModel::Type::Boolean.new.cast(value.to_s.strip)
|
76
|
+
end
|
77
|
+
|
78
|
+
def config
|
79
|
+
Spotlight::Engine.config.bulk_updates
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
@@ -5,11 +5,11 @@ module Spotlight
|
|
5
5
|
# Reindex an exhibit by parallelizing resource indexing into multiple batches of reindex jobs
|
6
6
|
class ReindexExhibitJob < Spotlight::ApplicationJob
|
7
7
|
include Spotlight::JobTracking
|
8
|
+
with_job_tracking(resource: ->(job) { job.arguments.first })
|
9
|
+
|
8
10
|
include Spotlight::LimitConcurrency
|
9
11
|
|
10
12
|
def perform(exhibit, batch_size: Spotlight::Engine.config.reindexing_batch_size, batch_count: Spotlight::Engine.config.reindexing_batch_count, **)
|
11
|
-
job_tracker.update(status: 'in_progress')
|
12
|
-
|
13
13
|
count = exhibit.resources.count
|
14
14
|
|
15
15
|
# Use the provided batch size, or calculate a reasonable default
|
@@ -21,6 +21,9 @@ module Spotlight
|
|
21
21
|
batch_size ||= (count.to_f / batch_count).ceil
|
22
22
|
|
23
23
|
perform_later_in_batches(exhibit, of: batch_size)
|
24
|
+
|
25
|
+
# mark the job as 'pending' and let the UpdateJobTrackersJob finalize this status after the ReindexJobs finish
|
26
|
+
job_tracker.update(status: 'pending')
|
24
27
|
end
|
25
28
|
|
26
29
|
def perform_later_in_batches(exhibit, of:)
|
@@ -5,6 +5,8 @@ module Spotlight
|
|
5
5
|
# Reindex the given resources or exhibits
|
6
6
|
class ReindexJob < Spotlight::ApplicationJob
|
7
7
|
include Spotlight::JobTracking
|
8
|
+
with_job_tracking(resource: ->(job) { job.exhibit })
|
9
|
+
|
8
10
|
include Spotlight::LimitConcurrency
|
9
11
|
|
10
12
|
before_perform do |job|
|
@@ -22,12 +24,17 @@ module Spotlight
|
|
22
24
|
|
23
25
|
# rubocop:disable Metrics/AbcSize, Metrics/MethodLength
|
24
26
|
def perform(exhibit_or_resources, start: nil, finish: nil, **)
|
25
|
-
job_tracker.update(status: 'in_progress')
|
26
|
-
|
27
27
|
errors = 0
|
28
28
|
|
29
|
-
error_handler = lambda do |pipeline,
|
30
|
-
job_tracker.append_log_entry(
|
29
|
+
error_handler = lambda do |pipeline, exception, _data|
|
30
|
+
job_tracker.append_log_entry(
|
31
|
+
type: :error,
|
32
|
+
exhibit: exhibit,
|
33
|
+
message: exception.to_s,
|
34
|
+
backtrace: exception.backtrace.first(5).join("\n"),
|
35
|
+
resource_id: (pipeline.source.id if pipeline.source.respond_to?(:id))
|
36
|
+
)
|
37
|
+
mark_job_as_failed!
|
31
38
|
errors += 1
|
32
39
|
end
|
33
40
|
|
@@ -36,14 +43,34 @@ module Spotlight
|
|
36
43
|
progress&.increment
|
37
44
|
end
|
38
45
|
rescue StandardError => e
|
39
|
-
error_handler.call(Struct.new(:source).new(resource),
|
46
|
+
error_handler.call(Struct.new(:source).new(resource), e, nil)
|
40
47
|
end
|
41
48
|
|
42
|
-
job_tracker.append_log_entry(
|
43
|
-
|
49
|
+
job_tracker.append_log_entry(
|
50
|
+
type: :summary,
|
51
|
+
exhibit: exhibit,
|
52
|
+
message: I18n.t(
|
53
|
+
'spotlight.job_trackers.show.messages.status.in_progress',
|
54
|
+
progress: progress.progress,
|
55
|
+
total: progress.total,
|
56
|
+
errors: (I18n.t('spotlight.job_trackers.show.messages.errors', count: errors) if errors.positive?)
|
57
|
+
),
|
58
|
+
progress: progress.progress, total: progress.total, errors: errors
|
59
|
+
)
|
44
60
|
end
|
45
61
|
# rubocop:enable Metrics/AbcSize, Metrics/MethodLength
|
46
62
|
|
63
|
+
def exhibit
|
64
|
+
exhibit_or_resources = arguments.first
|
65
|
+
|
66
|
+
case exhibit_or_resources
|
67
|
+
when Spotlight::Exhibit
|
68
|
+
exhibit_or_resources
|
69
|
+
when Spotlight::Resource
|
70
|
+
exhibit_or_resources.exhibit
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
47
74
|
private
|
48
75
|
|
49
76
|
def commit
|
@@ -53,7 +80,7 @@ module Spotlight
|
|
53
80
|
def job_data
|
54
81
|
return unless job_tracker
|
55
82
|
|
56
|
-
{ Spotlight::Engine.config.job_tracker_id_field => job_tracker.top_level_job_tracker.job_id }
|
83
|
+
@job_data ||= { Spotlight::Engine.config.job_tracker_id_field => job_tracker.top_level_job_tracker.job_id }
|
57
84
|
end
|
58
85
|
|
59
86
|
def resource_list(exhibit_or_resources, start: nil, finish: nil)
|
@@ -63,20 +90,5 @@ module Spotlight
|
|
63
90
|
Array(exhibit_or_resources)
|
64
91
|
end
|
65
92
|
end
|
66
|
-
|
67
|
-
def job_tracking_resource
|
68
|
-
exhibit
|
69
|
-
end
|
70
|
-
|
71
|
-
def exhibit
|
72
|
-
exhibit_or_resources = arguments.first
|
73
|
-
|
74
|
-
case exhibit_or_resources
|
75
|
-
when Spotlight::Exhibit
|
76
|
-
exhibit_or_resources
|
77
|
-
when Spotlight::Resource
|
78
|
-
exhibit_or_resources.exhibit
|
79
|
-
end
|
80
|
-
end
|
81
93
|
end
|
82
94
|
end
|