blacklight-spotlight 3.0.0.rc4 → 3.0.0.rc5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (169) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/images/blacklight/close.svg +1 -0
  3. data/app/assets/images/blacklight/zoom_in.svg +1 -0
  4. data/app/assets/images/blacklight/zoom_out.svg +1 -0
  5. data/app/assets/javascripts/spotlight/admin/blocks/uploaded_items_block.js +8 -1
  6. data/app/assets/javascripts/spotlight/admin/catalog_edit.js +13 -47
  7. data/app/assets/javascripts/spotlight/admin/exhibit_tag_autocomplete.js +37 -0
  8. data/app/assets/javascripts/spotlight/admin/{reindex_monitor.js → progress_monitor.js} +25 -4
  9. data/app/assets/javascripts/spotlight/admin/sir-trevor/locales.js +1 -1
  10. data/app/assets/javascripts/spotlight/user/zpr_links.js.erb +29 -14
  11. data/app/assets/stylesheets/spotlight/_browse.scss +8 -0
  12. data/app/assets/stylesheets/spotlight/_catalog.scss +30 -4
  13. data/app/assets/stylesheets/spotlight/_exhibit_admin.scss +9 -0
  14. data/app/assets/stylesheets/spotlight/_modals.scss +3 -0
  15. data/app/assets/stylesheets/spotlight/_nestable.scss +8 -0
  16. data/app/assets/stylesheets/spotlight/_spotlight.scss +2 -0
  17. data/app/assets/stylesheets/spotlight/_view_larger.scss +22 -0
  18. data/app/assets/stylesheets/spotlight/typeahead.css +23 -23
  19. data/app/builders/spotlight/bootstrap_breadcrumbs_builder.rb +4 -2
  20. data/app/controllers/concerns/spotlight/catalog.rb +7 -1
  21. data/app/controllers/spotlight/browse_controller.rb +5 -0
  22. data/app/controllers/spotlight/bulk_actions_controller.rb +62 -0
  23. data/app/controllers/spotlight/bulk_updates_controller.rb +67 -0
  24. data/app/controllers/spotlight/catalog_controller.rb +5 -7
  25. data/app/controllers/spotlight/dashboards_controller.rb +2 -1
  26. data/app/controllers/spotlight/featured_images_controller.rb +1 -1
  27. data/app/controllers/spotlight/job_trackers_controller.rb +17 -0
  28. data/app/controllers/spotlight/tags_controller.rb +39 -5
  29. data/app/helpers/spotlight/application_helper.rb +1 -1
  30. data/app/helpers/spotlight/job_trackers_helper.rb +31 -0
  31. data/app/helpers/spotlight/pages_helper.rb +0 -7
  32. data/app/helpers/spotlight/roles_helper.rb +1 -1
  33. data/app/jobs/concerns/spotlight/gather_documents.rb +35 -0
  34. data/app/jobs/concerns/spotlight/job_tracking.rb +40 -23
  35. data/app/jobs/spotlight/add_tags_job.rb +31 -0
  36. data/app/jobs/spotlight/add_uploads_from_csv.rb +2 -4
  37. data/app/jobs/spotlight/change_visibility_job.rb +33 -0
  38. data/app/jobs/spotlight/process_bulk_updates_csv_job.rb +82 -0
  39. data/app/jobs/spotlight/reindex_exhibit_job.rb +5 -2
  40. data/app/jobs/spotlight/reindex_job.rb +35 -23
  41. data/app/jobs/spotlight/remove_tags_job.rb +31 -0
  42. data/app/jobs/spotlight/rename_sidecar_field_job.rb +1 -0
  43. data/app/jobs/spotlight/rename_tags_job.rb +33 -0
  44. data/app/models/concerns/spotlight/exhibit_analytics.rb +2 -6
  45. data/app/models/concerns/spotlight/exhibit_documents.rb +2 -2
  46. data/app/models/concerns/spotlight/resources/web.rb +1 -1
  47. data/app/models/concerns/spotlight/solr_document.rb +1 -1
  48. data/app/models/concerns/spotlight/solr_document/atomic_updates.rb +2 -2
  49. data/app/models/concerns/spotlight/user.rb +5 -1
  50. data/app/models/sir_trevor_rails/blocks/uploaded_items_block.rb +4 -0
  51. data/app/models/spotlight/ability.rb +6 -2
  52. data/app/models/spotlight/attachment.rb +1 -1
  53. data/app/models/spotlight/{reindex_progress.rb → background_job_progress.rb} +8 -7
  54. data/app/models/spotlight/blacklight_configuration.rb +17 -6
  55. data/app/models/spotlight/bulk_update.rb +8 -0
  56. data/app/models/spotlight/exhibit.rb +2 -1
  57. data/app/models/spotlight/feature_page.rb +0 -2
  58. data/app/models/spotlight/featured_image.rb +7 -1
  59. data/app/models/spotlight/field_metadata.rb +4 -8
  60. data/app/models/spotlight/job_tracker.rb +11 -2
  61. data/app/models/spotlight/page.rb +1 -3
  62. data/app/models/spotlight/resource.rb +4 -4
  63. data/app/models/spotlight/resources/iiif_harvester.rb +2 -2
  64. data/app/models/spotlight/resources/iiif_service.rb +8 -1
  65. data/app/models/spotlight/resources/upload.rb +2 -2
  66. data/app/models/spotlight/role.rb +1 -2
  67. data/app/presenters/spotlight/iiif_manifest_presenter.rb +1 -1
  68. data/app/services/spotlight/bulk_updates_csv_template_service.rb +93 -0
  69. data/app/services/spotlight/etl/executor.rb +1 -3
  70. data/app/services/spotlight/iiif_resource_resolver.rb +1 -1
  71. data/app/uploaders/spotlight/bulk_updates_uploader.rb +7 -0
  72. data/app/uploaders/spotlight/featured_image_uploader.rb +1 -1
  73. data/app/views/catalog/_add_tags.html.erb +28 -0
  74. data/app/views/catalog/_bulk_actions.html.erb +12 -0
  75. data/app/views/catalog/_change_visibility.html.erb +35 -0
  76. data/app/views/catalog/_curator_actions.html.erb +3 -0
  77. data/app/views/catalog/_remove_tags.html.erb +37 -0
  78. data/app/views/spotlight/bulk_updates/_download.html.erb +23 -0
  79. data/app/views/spotlight/bulk_updates/_overview.html.erb +1 -0
  80. data/app/views/spotlight/bulk_updates/_progress_panel.html.erb +19 -0
  81. data/app/views/spotlight/bulk_updates/_upload.html.erb +12 -0
  82. data/app/views/spotlight/bulk_updates/edit.html.erb +37 -0
  83. data/app/views/spotlight/catalog/_admin_header.html.erb +1 -1
  84. data/app/views/spotlight/catalog/_edit_default.html.erb +2 -2
  85. data/app/views/spotlight/catalog/_reindex_progress_panel.html.erb +1 -1
  86. data/app/views/spotlight/custom_fields/_form.html.erb +1 -1
  87. data/app/views/spotlight/custom_search_fields/_form.html.erb +1 -1
  88. data/app/views/spotlight/dashboards/_reindexing_activity.html.erb +1 -1
  89. data/app/views/spotlight/exhibits/_exhibit_card.html.erb +1 -1
  90. data/app/views/spotlight/job_trackers/show.html.erb +79 -0
  91. data/app/views/spotlight/pages/_form.html.erb +2 -2
  92. data/app/views/spotlight/resources/_form.html.erb +1 -1
  93. data/app/views/spotlight/resources/csv_upload/_form.html.erb +1 -1
  94. data/app/views/spotlight/resources/iiif/_form.html.erb +1 -1
  95. data/app/views/spotlight/resources/json_upload/_form.html.erb +2 -2
  96. data/app/views/spotlight/resources/upload/_form.html.erb +1 -1
  97. data/app/views/spotlight/shared/_curation_sidebar.html.erb +3 -0
  98. data/app/views/spotlight/sir_trevor/blocks/_browse_group_categories_block.html.erb +3 -3
  99. data/app/views/spotlight/sir_trevor/blocks/_solr_documents_block.html.erb +3 -3
  100. data/app/views/spotlight/sir_trevor/blocks/_solr_documents_carousel_block.html.erb +2 -2
  101. data/app/views/spotlight/sir_trevor/blocks/_solr_documents_features_block.html.erb +2 -2
  102. data/app/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb +2 -2
  103. data/app/views/spotlight/sir_trevor/blocks/_uploaded_items_block.html.erb +4 -0
  104. data/app/views/spotlight/tags/_tag.html.erb +24 -0
  105. data/app/views/spotlight/tags/index.html.erb +12 -16
  106. data/app/views/spotlight/translations/show.yaml.yamlbuilder +6 -0
  107. data/config/i18n-tasks.yml +1 -0
  108. data/config/locales/spotlight.en.yml +169 -10
  109. data/config/routes.rb +28 -1
  110. data/db/migrate/20210126123041_create_events.rb +1 -1
  111. data/db/migrate/20210305070001_remove_class_from_sirtrevor_image_blocks.rb +20 -0
  112. data/db/migrate/20210305171150_create_bulk_updates.rb +9 -0
  113. data/lib/generators/spotlight/templates/config/initializers/riiif.rb +7 -5
  114. data/lib/generators/spotlight/templates/config/initializers/spotlight_initializer.rb +1 -1
  115. data/lib/generators/spotlight/templates/solr/config/schema.xml +1 -1
  116. data/lib/migration/iiif.rb +3 -3
  117. data/lib/spotlight/engine.rb +14 -0
  118. data/lib/spotlight/version.rb +1 -1
  119. data/spec/controllers/spotlight/bulk_actions_controller_spec.rb +124 -0
  120. data/spec/controllers/spotlight/bulk_updates_controller_spec.rb +77 -0
  121. data/spec/controllers/spotlight/catalog_controller_spec.rb +12 -12
  122. data/spec/controllers/spotlight/featured_images_controller_spec.rb +3 -3
  123. data/spec/controllers/spotlight/job_trackers_controller_spec.rb +37 -0
  124. data/spec/controllers/spotlight/tags_controller_spec.rb +5 -1
  125. data/spec/examples.txt +1495 -1443
  126. data/spec/factories/bulk_updates.rb +15 -0
  127. data/spec/factories/exhibits.rb +4 -0
  128. data/spec/factories/job_trackers.rb +2 -0
  129. data/spec/factories/users.rb +27 -8
  130. data/spec/features/add_items_spec.rb +1 -1
  131. data/spec/features/bulk_actions_spec.rb +72 -0
  132. data/spec/features/catalog_spec.rb +1 -0
  133. data/spec/features/import_exhibit_spec.rb +5 -1
  134. data/spec/features/javascript/blocks/solr_documents_block_spec.rb +3 -3
  135. data/spec/features/javascript/blocks/uploaded_items_block_spec.rb +27 -1
  136. data/spec/features/site_users_management_spec.rb +4 -4
  137. data/spec/fixtures/bulk-update-template.csv +57 -0
  138. data/spec/fixtures/updated-bulk-update-template-w-tags.csv +4 -0
  139. data/spec/fixtures/updated-bulk-update-template.csv +4 -0
  140. data/spec/helpers/spotlight/application_helper_spec.rb +0 -1
  141. data/spec/helpers/spotlight/pages_helper_spec.rb +0 -15
  142. data/spec/helpers/spotlight/roles_helper_spec.rb +1 -1
  143. data/spec/i18n_spec.rb +1 -0
  144. data/spec/jobs/spotlight/add_tags_job_spec.rb +34 -0
  145. data/spec/jobs/spotlight/add_uploads_from_csv_spec.rb +4 -1
  146. data/spec/jobs/spotlight/change_visibility_job_spec.rb +30 -0
  147. data/spec/jobs/spotlight/process_bulk_updates_csv_job_spec.rb +78 -0
  148. data/spec/jobs/spotlight/reindex_job_spec.rb +4 -1
  149. data/spec/jobs/spotlight/remove_tags_job_spec.rb +39 -0
  150. data/spec/lib/migration/iiif_spec.rb +1 -1
  151. data/spec/models/spotlight/ability_spec.rb +27 -0
  152. data/spec/models/spotlight/{reindex_progress_spec.rb → background_job_progress_spec.rb} +15 -2
  153. data/spec/models/spotlight/blacklight_configuration_spec.rb +8 -3
  154. data/spec/models/spotlight/exhibit_spec.rb +1 -1
  155. data/spec/models/spotlight/featured_image_spec.rb +1 -1
  156. data/spec/models/spotlight/resource_spec.rb +23 -0
  157. data/spec/models/spotlight/solr_document/atomic_updates_spec.rb +10 -0
  158. data/spec/services/spotlight/bulk_updates_csv_template_service_spec.rb +26 -0
  159. data/spec/test_app_templates/Gemfile.extra +1 -0
  160. data/spec/uploaders/spotlight/featured_image_uploader_spec.rb +2 -2
  161. data/spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb +1 -1
  162. data/spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb +2 -0
  163. data/spec/views/spotlight/job_trackers/show.html.erb_spec.rb +65 -0
  164. data/spec/views/spotlight/tags/index.html.erb_spec.rb +5 -2
  165. metadata +80 -17
  166. data/app/assets/images/blacklight/add_circle.svg +0 -1
  167. data/app/assets/images/blacklight/custom_fullscreen.svg +0 -1
  168. data/app/assets/images/blacklight/remove_circle.svg +0 -1
  169. data/app/assets/images/blacklight/resize_small.svg +0 -1
@@ -21,10 +21,12 @@ module Spotlight
21
21
  end
22
22
 
23
23
  def render_element(element)
24
- html_class = 'active' if @context.current_page?(compute_path(element))
24
+ current = @context.current_page?(compute_path(element)) || element.options&.dig(:current)
25
+
26
+ html_class = 'active' if current
25
27
 
26
28
  @context.content_tag(:li, class: "breadcrumb-item #{html_class}") do
27
- @context.link_to_unless_current(element_label(element), compute_path(element), element.options)
29
+ @context.link_to_unless(current, element_label(element), compute_path(element), element.options&.except(:current))
28
30
  end
29
31
  end
30
32
 
@@ -14,20 +14,26 @@ module Spotlight
14
14
 
15
15
  # Adds a facet to display document visibility for the current exhibit
16
16
  # if the user is a curator
17
+ # rubocop:disable Metrics/MethodLength
17
18
  def add_facet_visibility_field
18
19
  return unless current_exhibit && can?(:curate, current_exhibit)
19
20
 
20
21
  blacklight_config.add_facet_field 'exhibit_visibility',
21
22
  label: I18n.t(:'spotlight.catalog.facets.exhibit_visibility.label'),
22
23
  query: {
24
+ public: {
25
+ label: I18n.t(:'spotlight.catalog.facets.exhibit_visibility.public'),
26
+ fq: "-#{blacklight_config.document_model.visibility_field(current_exhibit)}:false"
27
+ },
23
28
  private: {
24
29
  label: I18n.t(:'spotlight.catalog.facets.exhibit_visibility.private'),
25
30
  fq: "#{blacklight_config.document_model.visibility_field(current_exhibit)}:false"
26
31
  }
27
32
  }
28
33
  end
34
+ # rubocop:enable Metrics/MethodLength
29
35
 
30
- def render_save_this_search?
36
+ def render_curator_actions?
31
37
  (current_exhibit && can?(:curate, current_exhibit)) &&
32
38
  !(params[:controller] == 'spotlight/catalog' && params[:action] == 'admin')
33
39
  end
@@ -47,6 +47,7 @@ module Spotlight
47
47
 
48
48
  def swap_actions_configuration
49
49
  blacklight_config.index.document_actions = blacklight_config.browse.document_actions
50
+ blacklight_config.action_mapping.show.top_level_config = :index if blacklight_config.key?(:action_mapping)
50
51
  end
51
52
 
52
53
  def search_query
@@ -134,5 +135,9 @@ module Spotlight
134
135
  def render_save_this_search?
135
136
  false
136
137
  end
138
+
139
+ def render_curator_actions?
140
+ false
141
+ end
137
142
  end
138
143
  end
@@ -0,0 +1,62 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Spotlight
4
+ ##
5
+ # Controller enabling bulk functionality for search results
6
+ class BulkActionsController < Spotlight::CatalogController
7
+ before_action :authenticate_user!
8
+ before_action :check_authorization
9
+
10
+ def add_tags
11
+ handle_bulk_action_with_job(Spotlight::AddTagsJob, tags: add_tags_params)
12
+ end
13
+
14
+ def remove_tags
15
+ handle_bulk_action_with_job(Spotlight::RemoveTagsJob, tags: remove_tags_params)
16
+ end
17
+
18
+ def change_visibility
19
+ handle_bulk_action_with_job(Spotlight::ChangeVisibilityJob, visibility: change_visibility_params)
20
+ end
21
+
22
+ private
23
+
24
+ def handle_bulk_action_with_job(job, i18n_key: action_name, **params)
25
+ job.perform_later(
26
+ solr_params: solr_params,
27
+ exhibit: current_exhibit,
28
+ user: current_user,
29
+ **params
30
+ )
31
+
32
+ redirect_back fallback_location: spotlight.search_exhibit_catalog_path(current_search_session.query_params),
33
+ notice: t(:"spotlight.bulk_actions.#{i18n_key}.changed", count: solr_response.total)
34
+ end
35
+
36
+ def solr_params
37
+ solr_response.request_params
38
+ end
39
+
40
+ def solr_response
41
+ @solr_response ||= begin
42
+ response, _docs = search_service.search_results do |builder|
43
+ builder.merge(fl: 'id', rows: 0)
44
+ end
45
+
46
+ response
47
+ end
48
+ end
49
+
50
+ def add_tags_params
51
+ params.require(:tags).split(',').map(&:strip)
52
+ end
53
+
54
+ def remove_tags_params
55
+ params.require(:tags).split(',').map(&:strip)
56
+ end
57
+
58
+ def change_visibility_params
59
+ params.require(:visibility)
60
+ end
61
+ end
62
+ end
@@ -0,0 +1,67 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'csv'
4
+
5
+ module Spotlight
6
+ ##
7
+ # Controller enabling bulk functionality for items defined in a spreadsheet.
8
+ class BulkUpdatesController < Spotlight::ApplicationController
9
+ before_action :authenticate_user!
10
+ before_action :check_authorization
11
+
12
+ def edit; end
13
+
14
+ def download_template
15
+ # Set Last-Modified as a work-around for https://github.com/rack/rack/issues/1619
16
+ headers['Last-Modified'] = ''
17
+ headers['Cache-Control'] = 'no-cache'
18
+ headers['Content-Type'] = 'text/csv'
19
+ headers['Content-Disposition'] = "attachment; filename=\"#{current_exhibit.slug}-bulk-update-template.csv\""
20
+ headers.delete('Content-Length')
21
+
22
+ self.response_body = csv_template
23
+ end
24
+
25
+ def update
26
+ bulk_update = Spotlight::BulkUpdate.new(exhibit: current_exhibit, file: file_params)
27
+ if bulk_update.save
28
+ ProcessBulkUpdatesCsvJob.perform_later(current_exhibit, bulk_update)
29
+ redirect_back fallback_location: spotlight.edit_exhibit_bulk_updates_path(current_exhibit), notice: t(:'spotlight.bulk_updates.update.submitted')
30
+ else
31
+ redirect_back fallback_location: spotlight.edit_exhibit_bulk_updates_path(current_exhibit), alert: t(:'spotlight.bulk_updates.update.error')
32
+ end
33
+ end
34
+
35
+ def monitor
36
+ render json: BackgroundJobProgress.new(current_exhibit, job_class: Spotlight::ProcessBulkUpdatesCsvJob)
37
+ end
38
+
39
+ private
40
+
41
+ def csv_template
42
+ boolean = ActiveModel::Type::Boolean.new
43
+ Spotlight::BulkUpdatesCsvTemplateService.new(exhibit: current_exhibit).template(
44
+ view_context: view_context,
45
+ title: boolean.cast(reference_field_params[:item_title]),
46
+ tags: boolean.cast(updatable_field_params[:tags]),
47
+ visibility: boolean.cast(updatable_field_params[:visibility])
48
+ )
49
+ end
50
+
51
+ def reference_field_params
52
+ params.require(:reference_fields).permit(:item_title)
53
+ end
54
+
55
+ def updatable_field_params
56
+ params.require(:updatable_fields).permit(:visibility, :tags)
57
+ end
58
+
59
+ def file_params
60
+ params.require(:file)
61
+ end
62
+
63
+ def check_authorization
64
+ authorize! :bulk_update, current_exhibit
65
+ end
66
+ end
67
+ end
@@ -126,15 +126,11 @@ module Spotlight
126
126
  protected
127
127
 
128
128
  def attach_breadcrumbs
129
- # The "q: ''" is necessary so that the breadcrumb builder recognizes that a path like this:
130
- # /exhibits/1?f%5Bgenre_sim%5D%5B%5D=map&q= is not the same as /exhibits/1
131
- # Otherwise the exhibit breadcrumb won't be a link.
132
- # see http://api.rubyonrails.org/classes/ActionView/Helpers/UrlHelper.html#method-i-current_page-3F
133
129
  if view_context.current_page?({ action: :admin })
134
- add_breadcrumb t(:'spotlight.exhibits.breadcrumb', title: @exhibit.title), exhibit_root_path(@exhibit, q: '')
130
+ add_breadcrumb t(:'spotlight.exhibits.breadcrumb', title: @exhibit.title), exhibit_root_path(@exhibit)
135
131
  else
136
132
  # When not on the admin page, get the translated value for the "Home" breadcrumb
137
- add_breadcrumb t(:'spotlight.curation.nav.home', title: @exhibit.title), exhibit_root_path(@exhibit, q: '')
133
+ add_breadcrumb t(:'spotlight.curation.nav.home', title: @exhibit.title), exhibit_root_path(@exhibit)
138
134
  end
139
135
  end
140
136
 
@@ -204,7 +200,9 @@ module Spotlight
204
200
  end
205
201
 
206
202
  def add_breadcrumb_with_search_params
207
- add_breadcrumb t(:'spotlight.catalog.breadcrumb.index'), spotlight.search_exhibit_catalog_path(params.to_unsafe_h) if has_search_parameters?
203
+ return unless has_search_parameters?
204
+
205
+ add_breadcrumb t(:'spotlight.catalog.breadcrumb.index'), spotlight.search_exhibit_catalog_path(params.to_unsafe_h), current: action_name == 'index'
208
206
  end
209
207
 
210
208
  # rubocop:disable Metrics/AbcSize
@@ -15,6 +15,7 @@ module Spotlight
15
15
  blacklight_config.view.admin_table.partials = ['index_compact']
16
16
  blacklight_config.view.admin_table.document_actions = []
17
17
  blacklight_config.track_search_session = false
18
+ blacklight_config.action_mapping.show.top_level_config = :index if blacklight_config.key?(:action_mapping)
18
19
  end
19
20
 
20
21
  def show
@@ -22,7 +23,7 @@ module Spotlight
22
23
 
23
24
  @pages = @exhibit.pages.recent.limit(5)
24
25
  @solr_documents = load_recent_solr_documents 5
25
- @recent_reindexing = @exhibit.job_trackers.recent
26
+ @recent_reindexing = @exhibit.job_trackers.where.not(job_class: Spotlight::Engine.config.hidden_job_classes).recent
26
27
 
27
28
  attach_dashboard_breadcrumbs
28
29
  end
@@ -16,7 +16,7 @@ module Spotlight
16
16
  private
17
17
 
18
18
  def tilesource
19
- riiif.info_url(@featured_image.id)
19
+ riiif.info_url(@featured_image)
20
20
  end
21
21
 
22
22
  # The create action can be called from a number of different forms, so
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Spotlight
4
+ ##
5
+ # Locking mechanism for page-level locks
6
+ class JobTrackersController < Spotlight::ApplicationController
7
+ load_and_authorize_resource :exhibit
8
+ load_and_authorize_resource through: :exhibit
9
+
10
+ # GET /:exhibit_id/job_trackers/1
11
+ def show
12
+ add_breadcrumb t(:'spotlight.exhibits.breadcrumb', title: @exhibit.title), @exhibit
13
+ add_breadcrumb t(:'spotlight.curation.sidebar.dashboard'), exhibit_dashboard_path(@exhibit)
14
+ add_breadcrumb t(:'spotlight.configuration.sidebar.job_trackers'), [@job_tracker.on, @job_tracker]
15
+ end
16
+ end
17
+ end
@@ -6,9 +6,13 @@ module Spotlight
6
6
  class TagsController < Spotlight::ApplicationController
7
7
  before_action :authenticate_user!
8
8
  load_and_authorize_resource :exhibit, class: Spotlight::Exhibit
9
+ load_resource :tag, through: :exhibit, through_association: :owned_tags, except: [:index], class: 'ActsAsTaggableOn::Tag'
9
10
 
10
- def index
11
+ before_action do
11
12
  authorize! :tag, @exhibit
13
+ end
14
+
15
+ def index
12
16
  @tags = @exhibit.owned_tags
13
17
  add_breadcrumb t(:'spotlight.exhibits.breadcrumb', title: @exhibit.title), @exhibit
14
18
  add_breadcrumb t(:'spotlight.curation.sidebar.header'), exhibit_dashboard_path(@exhibit)
@@ -16,16 +20,46 @@ module Spotlight
16
20
 
17
21
  respond_to do |format|
18
22
  format.html
19
- format.json { render json: @exhibit.owned_tags.map(&:name) }
23
+ format.json { render json: @tags.map(&:name) }
20
24
  end
21
25
  end
22
26
 
23
27
  def destroy
24
- authorize! :tag, @exhibit
25
- # warning: this causes every solr document with this tag to reindex. That could be slow.
26
- @exhibit.owned_taggings.where(tag_id: params[:id]).destroy_all
28
+ Spotlight::RenameTagsJob.perform_later(@exhibit, @tag, to: nil)
27
29
 
28
30
  redirect_to exhibit_tags_path(@exhibit)
29
31
  end
32
+
33
+ def rename
34
+ Spotlight::RenameTagsJob.perform_later(@exhibit, @tag, to: params[:new_tag])
35
+
36
+ redirect_to exhibit_tags_path(@exhibit)
37
+ end
38
+
39
+ def update_all
40
+ tags_to_rename = batch_update_params['owned_tags_attributes'].values.select do |tag|
41
+ tag[:name]&.present? && tag[:current_name]&.strip != tag[:name]&.strip
42
+ end
43
+
44
+ rename_tags_later!(tags_to_rename)
45
+
46
+ redirect_back fallback_location: fallback_url, notice: t(:'helpers.submit.tags.batch_updated', count: tags_to_rename.count)
47
+ end
48
+
49
+ private
50
+
51
+ def rename_tags_later!(tags_to_rename)
52
+ tags_to_rename.each do |tag|
53
+ Spotlight::RenameTagsJob.perform_later(@exhibit, @exhibit.owned_tags.find(tag[:id]), to: tag[:name])
54
+ end
55
+ end
56
+
57
+ def fallback_url
58
+ spotlight.exhibit_tags_path(@exhibit)
59
+ end
60
+
61
+ def batch_update_params
62
+ params.require(:exhibit).permit('owned_tags_attributes' => %i[id current_name name])
63
+ end
30
64
  end
31
65
  end
@@ -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.add_facet_params(blacklight_config.document_model.solr_field_for_tagger(current_exhibit), tag))
95
+ search_action_url(search_state.reset.add_facet_params(:exhibit_tags, tag))
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
@@ -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::Role::ROLES.each_with_object({}) do |key, object|
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
- def self.with_job_tracking
10
- before_perform :find_or_initialize_job_tracker
11
- after_perform :finalize_job_tracker
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