blacklight-spotlight 0.4.1 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (367) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +22 -8
  3. data/Rakefile +40 -39
  4. data/app/assets/javascripts/spotlight/blacklight_configuration.js +16 -0
  5. data/app/assets/javascripts/spotlight/blocks/resources_block.js +3 -1
  6. data/app/assets/stylesheets/spotlight/_blacklight_configuration.scss +2 -2
  7. data/app/assets/stylesheets/spotlight/_blacklight_overrides.scss +24 -0
  8. data/app/assets/stylesheets/spotlight/_header.scss +150 -47
  9. data/app/assets/stylesheets/spotlight/_pages.scss +62 -11
  10. data/app/assets/stylesheets/spotlight/_report_a_problem.scss +1 -0
  11. data/app/assets/stylesheets/spotlight/_spotlight.scss +1 -0
  12. data/app/builders/spotlight/bootstrap_breadcrumbs_builder.rb +28 -21
  13. data/app/controllers/spotlight/about_pages_controller.rb +25 -14
  14. data/app/controllers/spotlight/appearances_controller.rb +34 -30
  15. data/app/controllers/spotlight/application_controller.rb +2 -1
  16. data/app/controllers/spotlight/attachments_controller.rb +9 -7
  17. data/app/controllers/spotlight/browse_controller.rb +13 -9
  18. data/app/controllers/spotlight/catalog_controller.rb +179 -161
  19. data/app/controllers/spotlight/concerns/application_controller.rb +22 -20
  20. data/app/controllers/spotlight/concerns/catalog_search_context.rb +44 -0
  21. data/app/controllers/spotlight/confirmations_controller.rb +5 -2
  22. data/app/controllers/spotlight/contact_forms_controller.rb +13 -7
  23. data/app/controllers/spotlight/contacts_controller.rb +13 -4
  24. data/app/controllers/spotlight/custom_fields_controller.rb +48 -40
  25. data/app/controllers/spotlight/dashboards_controller.rb +17 -8
  26. data/app/controllers/spotlight/default_controller.rb +3 -1
  27. data/app/controllers/spotlight/exhibits_controller.rb +69 -62
  28. data/app/controllers/spotlight/feature_pages_controller.rb +21 -11
  29. data/app/controllers/spotlight/home_pages_controller.rb +6 -5
  30. data/app/controllers/spotlight/lock_controller.rb +3 -1
  31. data/app/controllers/spotlight/metadata_configurations_controller.rb +49 -0
  32. data/app/controllers/spotlight/pages_controller.rb +28 -18
  33. data/app/controllers/spotlight/resources/upload_controller.rb +53 -46
  34. data/app/controllers/spotlight/resources_controller.rb +9 -5
  35. data/app/controllers/spotlight/roles_controller.rb +26 -22
  36. data/app/controllers/spotlight/search_configurations_controller.rb +66 -0
  37. data/app/controllers/spotlight/searches_controller.rb +91 -82
  38. data/app/controllers/spotlight/solr_controller.rb +20 -13
  39. data/app/controllers/spotlight/tags_controller.rb +5 -3
  40. data/app/controllers/spotlight/versions_controller.rb +15 -12
  41. data/app/controllers/spotlight/view_configurations_controller.rb +17 -0
  42. data/app/helpers/spotlight/application_helper.rb +44 -32
  43. data/app/helpers/spotlight/browse_helper.rb +13 -1
  44. data/app/helpers/spotlight/crud_link_helpers.rb +22 -14
  45. data/app/helpers/spotlight/jcrop_helper.rb +4 -2
  46. data/app/helpers/spotlight/main_app_helpers.rb +45 -41
  47. data/app/helpers/spotlight/navbar_helper.rb +6 -0
  48. data/app/helpers/spotlight/pages_helper.rb +23 -15
  49. data/app/helpers/spotlight/roles_helper.rb +10 -4
  50. data/app/helpers/spotlight/search_configurations_helper.rb +22 -0
  51. data/app/helpers/spotlight/title_helper.rb +16 -13
  52. data/app/jobs/spotlight/add_uploads_from_csv.rb +13 -9
  53. data/app/jobs/spotlight/reindex_job.rb +9 -9
  54. data/app/jobs/spotlight/rename_sidecar_field_job.rb +3 -0
  55. data/app/mailers/spotlight/confirmation_mailer.rb +2 -0
  56. data/app/mailers/spotlight/indexing_complete_mailer.rb +4 -2
  57. data/app/models/ability.rb +3 -0
  58. data/app/models/concerns/spotlight/ar_light.rb +49 -25
  59. data/app/models/concerns/spotlight/blacklight_configuration_defaults.rb +25 -10
  60. data/app/models/concerns/spotlight/exhibit_analytics.rb +28 -0
  61. data/app/models/concerns/spotlight/image_derivatives.rb +25 -26
  62. data/app/models/concerns/spotlight/resources/open_graph.rb +23 -19
  63. data/app/models/concerns/spotlight/resources/web.rb +25 -24
  64. data/app/models/concerns/spotlight/solr_document.rb +40 -34
  65. data/app/models/concerns/spotlight/solr_document/active_model_concern.rb +29 -40
  66. data/app/models/concerns/spotlight/solr_document/atomic_updates.rb +22 -18
  67. data/app/models/concerns/spotlight/solr_document/finder.rb +23 -18
  68. data/app/models/concerns/spotlight/solr_document/spotlight_images.rb +43 -39
  69. data/app/models/concerns/spotlight/solr_document/uploaded_resource.rb +41 -29
  70. data/app/models/concerns/spotlight/user.rb +25 -19
  71. data/app/models/sir_trevor_rails/blocks/browse_block.rb +36 -30
  72. data/app/models/sir_trevor_rails/blocks/featured_pages_block.rb +24 -18
  73. data/app/models/sir_trevor_rails/blocks/oembed_block.rb +8 -4
  74. data/app/models/sir_trevor_rails/blocks/search_results_block.rb +29 -23
  75. data/app/models/sir_trevor_rails/blocks/solr_documents_block.rb +43 -42
  76. data/app/models/sir_trevor_rails/blocks/solr_documents_carousel_block.rb +16 -12
  77. data/app/models/sir_trevor_rails/blocks/solr_documents_embed_block.rb +7 -3
  78. data/app/models/sir_trevor_rails/blocks/solr_documents_features_block.rb +7 -3
  79. data/app/models/sir_trevor_rails/blocks/solr_documents_grid_block.rb +7 -3
  80. data/app/models/sir_trevor_rails/blocks/textable.rb +18 -18
  81. data/app/models/spotlight/ability.rb +32 -33
  82. data/app/models/spotlight/about_page.rb +3 -1
  83. data/app/models/spotlight/analytics/ga.rb +46 -27
  84. data/app/models/spotlight/attachment.rb +3 -1
  85. data/app/models/spotlight/blacklight_configuration.rb +146 -68
  86. data/app/models/spotlight/contact.rb +35 -30
  87. data/app/models/spotlight/contact_email.rb +6 -3
  88. data/app/models/spotlight/contact_form.rb +4 -3
  89. data/app/models/spotlight/custom_field.rb +41 -33
  90. data/app/models/spotlight/exhibit.rb +104 -130
  91. data/app/models/spotlight/feature_page.rb +9 -7
  92. data/app/models/spotlight/featured_image.rb +10 -10
  93. data/app/models/spotlight/field_metadata.rb +46 -0
  94. data/app/models/spotlight/home_page.rb +8 -5
  95. data/app/models/spotlight/lock.rb +4 -3
  96. data/app/models/spotlight/main_navigation.rb +9 -3
  97. data/app/models/spotlight/masthead.rb +17 -16
  98. data/app/models/spotlight/page.rb +16 -16
  99. data/app/models/spotlight/resource.rb +69 -22
  100. data/app/models/spotlight/resources/csv_upload.rb +8 -4
  101. data/app/models/spotlight/resources/upload.rb +68 -57
  102. data/app/models/spotlight/role.rb +30 -34
  103. data/app/models/spotlight/search.rb +74 -63
  104. data/app/models/spotlight/solr_document_sidecar.rb +17 -15
  105. data/app/serializers/spotlight/exhibit_export_serializer.rb +65 -29
  106. data/app/serializers/spotlight/page_representer.rb +10 -6
  107. data/app/uploaders/spotlight/attachment_uploader.rb +4 -6
  108. data/app/uploaders/spotlight/avatar_uploader.rb +4 -3
  109. data/app/uploaders/spotlight/featured_image_uploader.rb +15 -14
  110. data/app/uploaders/spotlight/item_uploader.rb +3 -1
  111. data/app/uploaders/spotlight/masthead_uploader.rb +4 -2
  112. data/app/views/catalog/_search_form.html.erb +24 -0
  113. data/app/views/shared/_browse_navbar.html.erb +1 -1
  114. data/app/views/shared/_exhibit_navbar.html.erb +1 -1
  115. data/app/views/spotlight/appearances/edit.html.erb +13 -45
  116. data/app/views/spotlight/catalog/_edit_default.html.erb +1 -1
  117. data/app/views/spotlight/custom_fields/_form.html.erb +1 -1
  118. data/app/views/spotlight/exhibits/edit.html.erb +4 -4
  119. data/app/views/spotlight/home_pages/_empty.html.erb +1 -3
  120. data/app/views/spotlight/home_pages/_page_options.html.erb +1 -1
  121. data/app/views/spotlight/{blacklight_configurations → metadata_configurations}/_metadata_field.html.erb +0 -0
  122. data/app/views/spotlight/{blacklight_configurations/edit_metadata_fields.html.erb → metadata_configurations/edit.html.erb} +1 -1
  123. data/app/views/spotlight/pages/show.html.erb +2 -2
  124. data/app/views/spotlight/search_configurations/_default_per_page.html.erb +5 -0
  125. data/app/views/spotlight/search_configurations/_document_index_view_types.html.erb +7 -0
  126. data/app/views/spotlight/search_configurations/_facets.html.erb +38 -0
  127. data/app/views/spotlight/search_configurations/_search_fields.html.erb +58 -0
  128. data/app/views/spotlight/search_configurations/_sort.html.erb +53 -0
  129. data/app/views/spotlight/search_configurations/edit.html.erb +46 -0
  130. data/app/views/spotlight/searches/_search.html.erb +1 -1
  131. data/app/views/spotlight/shared/_admin_sidebar.html.erb +0 -2
  132. data/app/views/spotlight/shared/_curation_sidebar.html.erb +2 -3
  133. data/app/views/spotlight/shared/_report_a_problem.html.erb +2 -2
  134. data/app/views/spotlight/sir_trevor/blocks/_oembed_block.html.erb +5 -1
  135. data/app/views/spotlight/sir_trevor/blocks/_solr_documents_block.html.erb +7 -5
  136. data/app/views/spotlight/sir_trevor/blocks/_solr_documents_carousel_block.html.erb +2 -2
  137. data/app/views/spotlight/sir_trevor/blocks/_solr_documents_embed_block.html.erb +7 -5
  138. data/app/views/spotlight/sir_trevor/blocks/_solr_documents_features_block.html.erb +2 -2
  139. data/app/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb +14 -9
  140. data/config/locales/spotlight.en.yml +94 -49
  141. data/config/routes.rb +11 -20
  142. data/db/migrate/20150410180014_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb +15 -0
  143. data/db/migrate/20150410180015_add_missing_taggable_index.acts_as_taggable_on_engine.rb +10 -0
  144. data/db/migrate/20150410180016_change_collation_for_tag_names.acts_as_taggable_on_engine.rb +10 -0
  145. data/db/migrate/20150713160101_change_spotlight_searches_to_published.rb +5 -0
  146. data/db/migrate/20151016092343_remove_searchable_from_exhibit.rb +20 -0
  147. data/lib/blacklight/spotlight.rb +1 -1
  148. data/lib/generators/spotlight/install_generator.rb +27 -25
  149. data/lib/generators/spotlight/templates/catalog_controller.rb +7 -5
  150. data/lib/generators/spotlight/templates/jetty.rake +8 -2
  151. data/lib/generators/spotlight/templates/spotlight_helper.rb +3 -1
  152. data/lib/spotlight.rb +4 -2
  153. data/lib/spotlight/base.rb +21 -14
  154. data/lib/spotlight/catalog.rb +10 -9
  155. data/lib/spotlight/catalog/access_controls_enforcement.rb +30 -15
  156. data/lib/spotlight/config.rb +4 -2
  157. data/lib/spotlight/controller.rb +12 -11
  158. data/lib/spotlight/engine.rb +30 -22
  159. data/lib/spotlight/rails/routes.rb +7 -4
  160. data/lib/spotlight/version.rb +2 -1
  161. data/lib/tasks/spotlight_tasks.rake +56 -50
  162. data/spec/controllers/application_controller_spec.rb +13 -13
  163. data/spec/controllers/spotlight/about_pages_controller_spec.rb +63 -59
  164. data/spec/controllers/spotlight/appearances_controller_spec.rb +29 -24
  165. data/spec/controllers/spotlight/application_controller_spec.rb +3 -3
  166. data/spec/controllers/spotlight/attachments_controller_spec.rb +10 -10
  167. data/spec/controllers/spotlight/browse_controller_spec.rb +23 -25
  168. data/spec/controllers/spotlight/catalog_controller_spec.rb +82 -87
  169. data/spec/controllers/spotlight/confirmations_controller_spec.rb +13 -11
  170. data/spec/controllers/spotlight/contact_forms_controller_spec.rb +17 -12
  171. data/spec/controllers/spotlight/contacts_controller_spec.rb +36 -36
  172. data/spec/controllers/spotlight/custom_fields_controller_spec.rb +26 -26
  173. data/spec/controllers/spotlight/dashboards_controller_spec.rb +14 -14
  174. data/spec/controllers/spotlight/exhibits_controller_spec.rb +59 -54
  175. data/spec/controllers/spotlight/feature_pages_controller_spec.rb +59 -59
  176. data/spec/controllers/spotlight/home_pages_controller_spec.rb +28 -29
  177. data/spec/controllers/spotlight/metadata_configurations_controller_spec.rb +84 -0
  178. data/spec/controllers/spotlight/resources/upload_controller_spec.rb +42 -33
  179. data/spec/controllers/spotlight/resources_controller_spec.rb +25 -29
  180. data/spec/controllers/spotlight/roles_controller_spec.rb +37 -19
  181. data/spec/controllers/spotlight/search_configurations_controller_spec.rb +125 -0
  182. data/spec/controllers/spotlight/searches_controller_spec.rb +84 -63
  183. data/spec/controllers/spotlight/solr_controller_spec.rb +13 -14
  184. data/spec/controllers/spotlight/tags_controller_spec.rb +16 -16
  185. data/spec/controllers/spotlight/versions_controller_spec.rb +15 -18
  186. data/spec/controllers/spotlight/view_configurations_controller_spec.rb +31 -0
  187. data/spec/factories/contacts.rb +1 -3
  188. data/spec/factories/custom_fields.rb +2 -4
  189. data/spec/factories/exhibits.rb +4 -2
  190. data/spec/factories/pages.rb +8 -11
  191. data/spec/factories/resources.rb +4 -4
  192. data/spec/factories/searches.rb +10 -13
  193. data/spec/factories/tags.rb +0 -3
  194. data/spec/factories/users.rb +2 -4
  195. data/spec/features/about_page_spec.rb +19 -19
  196. data/spec/features/add_contacts_spec.rb +34 -34
  197. data/spec/features/add_custom_field_metadata_spec.rb +24 -26
  198. data/spec/features/add_item_bookmarklet_spec.rb +12 -12
  199. data/spec/features/browse_category_admin_spec.rb +39 -39
  200. data/spec/features/catalog_spec.rb +9 -10
  201. data/spec/features/confirm_email_spec.rb +10 -10
  202. data/spec/features/create_exhibit_spec.rb +18 -15
  203. data/spec/features/create_page_spec.rb +8 -8
  204. data/spec/features/curator_items.rb +3 -3
  205. data/spec/features/dashboard_spec.rb +15 -16
  206. data/spec/features/edit_contact_spec.rb +8 -10
  207. data/spec/features/edit_search_fields_spec.rb +79 -0
  208. data/spec/features/exhibits/add_tags_spec.rb +15 -16
  209. data/spec/features/exhibits/administration_spec.rb +25 -25
  210. data/spec/features/exhibits/custom_metadata_fields_spec.rb +41 -43
  211. data/spec/features/exhibits/edit_metadata_fields_spec.rb +19 -19
  212. data/spec/features/feature_page_spec.rb +49 -48
  213. data/spec/features/home_page_spec.rb +38 -38
  214. data/spec/features/import_exhibit_spec.rb +23 -20
  215. data/spec/features/item_admin_spec.rb +28 -29
  216. data/spec/features/javascript/about_page_admin_spec.rb +9 -9
  217. data/spec/features/javascript/block_controls_spec.rb +16 -18
  218. data/spec/features/javascript/blocks/featured_browse_categories_block_spec.rb +11 -12
  219. data/spec/features/javascript/blocks/featured_pages_block_spec.rb +12 -13
  220. data/spec/features/javascript/blocks/search_result_block_spec.rb +17 -17
  221. data/spec/features/javascript/blocks/solr_documents_block_spec.rb +67 -65
  222. data/spec/features/javascript/edit_in_place_spec.rb +30 -56
  223. data/spec/features/javascript/feature_page_admin_spec.rb +73 -59
  224. data/spec/features/javascript/home_page_edit_spec.rb +6 -6
  225. data/spec/features/javascript/metadata_admin_spec.rb +15 -15
  226. data/spec/features/javascript/multi_image_select_spec.rb +17 -18
  227. data/spec/features/javascript/preview_block_spec.rb +11 -12
  228. data/spec/features/javascript/rule_block_spec.rb +7 -7
  229. data/spec/features/javascript/search_config_admin_spec.rb +144 -0
  230. data/spec/features/javascript/search_context_spec.rb +41 -42
  231. data/spec/features/main_navigation_spec.rb +22 -22
  232. data/spec/features/metadata_admin_spec.rb +8 -8
  233. data/spec/features/multiple_exhibits_spec.rb +15 -17
  234. data/spec/features/report_a_problem_spec.rb +23 -17
  235. data/spec/features/site_masthead_spec.rb +46 -46
  236. data/spec/features/slideshow_spec.rb +8 -9
  237. data/spec/features/tags_admin_spec.rb +11 -11
  238. data/spec/features/upload_non_repository_item_spec.rb +32 -32
  239. data/spec/features/user_admin_spec.rb +7 -7
  240. data/spec/helpers/spotlight/application_helper_spec.rb +63 -56
  241. data/spec/helpers/spotlight/browse_helper_spec.rb +6 -6
  242. data/spec/helpers/spotlight/crud_link_helpers_spec.rb +58 -52
  243. data/spec/helpers/spotlight/main_app_helpers_spec.rb +44 -24
  244. data/spec/helpers/spotlight/navbar_helper_spec.rb +4 -4
  245. data/spec/helpers/spotlight/pages_helper_spec.rb +56 -37
  246. data/spec/helpers/spotlight/roles_helper_spec.rb +3 -3
  247. data/spec/helpers/spotlight/search_configurations_helper_spec.rb +24 -0
  248. data/spec/helpers/spotlight/title_helper_spec.rb +33 -35
  249. data/spec/jobs/spotlight/reindex_job_spec.rb +6 -6
  250. data/spec/jobs/spotlight/rename_sidecar_field_job_spec.rb +7 -7
  251. data/spec/lib/spotlight/catalog/access_controls_enforcement_spec.rb +41 -26
  252. data/spec/lib/spotlight/controller_spec.rb +10 -10
  253. data/spec/lib/spotlight/routes_spec.rb +4 -4
  254. data/spec/mailers/spotlight/indexing_complete_mailer_spec.rb +13 -13
  255. data/spec/models/sir_trevor_rails/blocks/solr_documents_block_spec.rb +8 -8
  256. data/spec/models/{spotlight/sir_trevor_blocks → sir_trevor_rails/blocks}/textable_spec.rb +7 -8
  257. data/spec/models/solr_document_spec.rb +49 -50
  258. data/spec/models/spotlight/ability_spec.rb +17 -20
  259. data/spec/models/spotlight/about_page_spec.rb +6 -6
  260. data/spec/models/spotlight/analytics/ga_spec.rb +2 -2
  261. data/spec/models/spotlight/blacklight_configuration_spec.rb +196 -133
  262. data/spec/models/spotlight/contact_email_spec.rb +28 -24
  263. data/spec/models/spotlight/contact_spec.rb +6 -7
  264. data/spec/models/spotlight/custom_field_spec.rb +51 -52
  265. data/spec/models/spotlight/exhibit_spec.rb +102 -60
  266. data/spec/models/spotlight/feature_page_spec.rb +32 -32
  267. data/spec/models/spotlight/featured_image_spec.rb +5 -5
  268. data/spec/models/spotlight/field_metadata_spec.rb +78 -0
  269. data/spec/models/spotlight/home_page_spec.rb +11 -20
  270. data/spec/models/spotlight/{spotlight_image_derivatives_spec.rb → image_derivatives_spec.rb} +2 -2
  271. data/spec/models/spotlight/main_navigation_spec.rb +7 -9
  272. data/spec/models/spotlight/masthead_spec.rb +6 -6
  273. data/spec/models/spotlight/page_spec.rb +26 -29
  274. data/spec/models/spotlight/resource_spec.rb +56 -26
  275. data/spec/models/spotlight/resources/open_graph_spec.rb +16 -18
  276. data/spec/models/spotlight/resources/upload_spec.rb +32 -35
  277. data/spec/models/spotlight/resources/web_spec.rb +9 -11
  278. data/spec/models/spotlight/role_spec.rb +20 -20
  279. data/spec/models/spotlight/search_spec.rb +32 -15
  280. data/spec/models/spotlight/solr_document/atomic_updates_spec.rb +34 -0
  281. data/spec/models/spotlight/{solr_document_images_spec.rb → solr_document/spotlight_images_spec.rb} +18 -10
  282. data/spec/models/spotlight/solr_document/uploaded_resource_spec.rb +52 -0
  283. data/spec/models/spotlight/solr_document_sidecar_spec.rb +3 -4
  284. data/spec/routing/spotlight/exhibit_catalog_spec.rb +5 -5
  285. data/spec/routing/spotlight/pages_routing_spec.rb +24 -25
  286. data/spec/serializers/spotlight/exhibit_export_serializer_spec.rb +88 -68
  287. data/spec/spec_helper.rb +13 -22
  288. data/spec/support/features/test_features_helpers.rb +50 -46
  289. data/spec/support/views/test_view_helpers.rb +1 -1
  290. data/spec/test_app_templates/Gemfile.extra +0 -1
  291. data/spec/test_app_templates/carrierwave.rb +2 -2
  292. data/spec/test_app_templates/catalog_controller.rb +42 -42
  293. data/spec/test_app_templates/lib/generators/test_app_generator.rb +20 -11
  294. data/spec/test_app_templates/spotlight_test.rake +3 -3
  295. data/spec/uploaders/spotlight/item_uploader_spec.rb +68 -0
  296. data/spec/views/_user_util_links.html.erb_spec.rb +14 -14
  297. data/spec/views/shared/_analytics.html.erb_spec.rb +4 -6
  298. data/spec/views/shared/_exhibit_masthead.html.erb_spec.rb +19 -20
  299. data/spec/views/shared/_exhibit_navbar.html.erb_spec.rb +129 -131
  300. data/spec/views/shared/_footer.html.erb_spec.rb +6 -7
  301. data/spec/views/shared/_header_navbar.html.erb_spec.rb +5 -5
  302. data/spec/views/spotlight/about_pages/_empty.html.erb_spec.rb +4 -4
  303. data/spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb +9 -11
  304. data/spec/views/spotlight/about_pages/index.html.erb_spec.rb +31 -28
  305. data/spec/views/spotlight/browse/_search.html.erb_spec.rb +6 -6
  306. data/spec/views/spotlight/browse/_sort_and_per_page.html.erb_spec.rb +10 -12
  307. data/spec/views/spotlight/browse/index.html.erb_spec.rb +6 -6
  308. data/spec/views/spotlight/browse/show.html.erb_spec.rb +19 -20
  309. data/spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb +7 -7
  310. data/spec/views/spotlight/catalog/admin.html.erb_spec.rb +7 -7
  311. data/spec/views/spotlight/catalog/edit.html.erb_spec.rb +3 -6
  312. data/spec/views/spotlight/catalog/new.html.erb_spec.rb +8 -10
  313. data/spec/views/spotlight/contacts/edit.html.erb_spec.rb +8 -8
  314. data/spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb +22 -22
  315. data/spec/views/spotlight/exhibits/edit.html.erb_spec.rb +7 -8
  316. data/spec/views/spotlight/feature_pages/_empty.html.erb_spec.rb +5 -5
  317. data/spec/views/spotlight/feature_pages/_sidebar.html.erb_spec.rb +24 -26
  318. data/spec/views/spotlight/home_pages/_empty.html.erb_spec.rb +13 -9
  319. data/spec/views/spotlight/home_pages/_sidebar.html.erb_spec.rb +6 -6
  320. data/spec/views/spotlight/metadata_configurations/_metadata_field.html.erb_spec.rb +26 -0
  321. data/spec/views/spotlight/metadata_configurations/edit.html.erb_spec.rb +22 -0
  322. data/spec/views/spotlight/pages/edit.html.erb_spec.rb +16 -16
  323. data/spec/views/spotlight/pages/index.html.erb_spec.rb +19 -17
  324. data/spec/views/spotlight/pages/new.html.erb_spec.rb +6 -6
  325. data/spec/views/spotlight/pages/show.html.erb_spec.rb +27 -28
  326. data/spec/views/spotlight/roles/index.html.erb_spec.rb +6 -6
  327. data/spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb +54 -0
  328. data/spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb +28 -0
  329. data/spec/views/spotlight/searches/_search.html.erb_spec.rb +20 -10
  330. data/spec/views/spotlight/searches/edit.html.erb_spec.rb +12 -11
  331. data/spec/views/spotlight/searches/index.html.erb_spec.rb +12 -7
  332. data/spec/views/spotlight/sir_trevor/blocks/_iframe_block.html.erb_spec.rb +7 -8
  333. data/spec/views/spotlight/sir_trevor/blocks/_rule_block.html.erb_spec.rb +4 -4
  334. data/spec/views/spotlight/sir_trevor/blocks/_solr_documents_block.html.erb_spec.rb +38 -0
  335. data/spec/views/spotlight/sir_trevor/blocks/_solr_documents_carousel_block.html.erb_spec.rb +7 -8
  336. data/spec/views/spotlight/sir_trevor/blocks/_solr_documents_embed_block.html.erb_spec.rb +18 -13
  337. data/spec/views/spotlight/sir_trevor/blocks/_solr_documents_features_block.html.erb_spec.rb +14 -12
  338. data/spec/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb_spec.rb +11 -12
  339. data/spec/views/spotlight/tags/index.html.erb_spec.rb +9 -9
  340. metadata +167 -83
  341. data/app/controllers/spotlight/blacklight_configurations_controller.rb +0 -101
  342. data/app/controllers/spotlight/resources/csv_controller.rb +0 -23
  343. data/app/forms/spotlight/appearance.rb +0 -86
  344. data/app/helpers/spotlight/attachments_helper.rb +0 -4
  345. data/app/helpers/spotlight/blacklight_configurations_helper.rb +0 -15
  346. data/app/jobs/spotlight/set_default_thumbnail_job.rb +0 -16
  347. data/app/models/spotlight/resources/csv.rb +0 -80
  348. data/app/uploaders/spotlight/csv_uploader.rb +0 -15
  349. data/app/views/spotlight/blacklight_configurations/edit_facet_fields.html.erb +0 -47
  350. data/app/views/spotlight/blacklight_configurations/edit_sort_fields.html.erb +0 -65
  351. data/app/views/spotlight/resources/csv/_form.html.erb +0 -17
  352. data/app/views/spotlight/resources/csv/new.html.erb +0 -3
  353. data/spec/controllers/spotlight/blacklight_configurations_controller_spec.rb +0 -167
  354. data/spec/features/edit_sort_fields_spec.rb +0 -42
  355. data/spec/features/exhibits/edit_facet_fields_spec.rb +0 -37
  356. data/spec/features/javascript/facet_admin_spec.rb +0 -36
  357. data/spec/features/search_facets_admin_spec.rb +0 -19
  358. data/spec/features/update_appearance_spec.rb +0 -58
  359. data/spec/helpers/spotlight/blacklight_configurations_helper_spec.rb +0 -12
  360. data/spec/models/spotlight/appearance_spec.rb +0 -33
  361. data/spec/models/spotlight/resources/csv_spec.rb +0 -101
  362. data/spec/models/spotlight/solr_document_atomic_updates_spec.rb +0 -29
  363. data/spec/models/spotlight/solr_document_uploaded_resource_spec.rb +0 -45
  364. data/spec/uploaders/item_uploader_spec.rb +0 -62
  365. data/spec/views/spotlight/blacklight_configuration/_metadata_field.html.erb_spec.rb +0 -27
  366. data/spec/views/spotlight/blacklight_configuration/edit_metadata_fields.html.erb_spec.rb +0 -23
  367. data/spec/views/spotlight/blacklight_configuration/edit_sort_fields.html.erb_spec.rb +0 -19
@@ -1,7 +1,11 @@
1
1
  module Spotlight
2
- class Resources::CsvUpload
3
- attr_reader :url
4
- include ActiveModel::Model
5
- extend ActiveModel::Translation
2
+ module Resources
3
+ ##
4
+ # Shim object for CSV Uploads. see {Spotlight::AddUploadsFromCsv}
5
+ class CsvUpload
6
+ attr_reader :url
7
+ include ActiveModel::Model
8
+ extend ActiveModel::Translation
9
+ end
6
10
  end
7
11
  end
@@ -1,81 +1,92 @@
1
1
  # encoding: utf-8
2
2
  module Spotlight
3
- class Resources::Upload < Spotlight::Resource
4
- mount_uploader :url, Spotlight::ItemUploader
5
- include Spotlight::ImageDerivatives
6
-
7
- # we want to do this before reindexing
8
- after_create :update_document_sidecar
9
-
10
- def self.fields(exhibit)
11
- @fields ||= {}
12
- @fields[exhibit] ||= [Spotlight::Engine.config.upload_title_field || OpenStruct.new(field_name: exhibit.blacklight_config.index.title_field)] + exhibit.uploaded_resource_fields
13
- end
3
+ module Resources
4
+ ##
5
+ # Exhibit-specific resources, created using uploaded and custom fields
6
+ class Upload < Spotlight::Resource
7
+ mount_uploader :url, Spotlight::ItemUploader
8
+ include Spotlight::ImageDerivatives
9
+
10
+ # we want to do this before reindexing
11
+ after_create :update_document_sidecar
12
+
13
+ def self.fields(exhibit)
14
+ @fields ||= {}
15
+ @fields[exhibit] ||= begin
16
+ title_field = Spotlight::Engine.config.upload_title_field || OpenStruct.new(field_name: exhibit.blacklight_config.index.title_field)
17
+ [title_field] + exhibit.uploaded_resource_fields
18
+ end
19
+ end
14
20
 
15
- def configured_fields
16
- self.class.fields(exhibit)
17
- end
21
+ def configured_fields
22
+ self.class.fields(exhibit)
23
+ end
18
24
 
19
- def to_solr
20
- store_url! # so that #url doesn't return the tmp directory
25
+ def to_solr
26
+ store_url! # so that #url doesn't return the tmp directory
21
27
 
22
- solr_hash = super
23
-
24
- add_default_solr_fields solr_hash
28
+ solr_hash = super
25
29
 
26
- add_image_dimensions solr_hash
30
+ add_default_solr_fields solr_hash
27
31
 
28
- add_file_versions solr_hash
32
+ add_image_dimensions solr_hash
29
33
 
30
- add_sidecar_fields solr_hash
34
+ add_file_versions solr_hash
31
35
 
32
- solr_hash
33
- end
36
+ add_sidecar_fields solr_hash
34
37
 
35
- private
38
+ solr_hash
39
+ end
36
40
 
37
-
38
- def add_default_solr_fields solr_hash
39
- solr_hash[exhibit.blacklight_config.document_model.unique_key.to_sym] = compound_id
40
- end
41
+ private
41
42
 
42
- def add_image_dimensions solr_hash
43
- dimensions = ::MiniMagick::Image.open(url.file.file)[:dimensions]
44
- solr_hash[:spotlight_full_image_width_ssm] = dimensions.first
45
- solr_hash[:spotlight_full_image_height_ssm] = dimensions.last
46
- end
43
+ def add_default_solr_fields(solr_hash)
44
+ solr_hash[exhibit.blacklight_config.document_model.unique_key.to_sym] = compound_id
45
+ end
47
46
 
48
- def add_file_versions solr_hash
49
- spotlight_image_derivatives.each do |config|
50
- if config[:version]
51
- solr_hash[config[:field]] = url.send(config[:version]).url
52
- else
53
- solr_hash[config[:field]] = url.url
47
+ def add_image_dimensions(solr_hash)
48
+ dimensions = ::MiniMagick::Image.open(url.file.file)[:dimensions]
49
+ solr_hash[:spotlight_full_image_width_ssm] = dimensions.first
50
+ solr_hash[:spotlight_full_image_height_ssm] = dimensions.last
51
+ end
52
+
53
+ def add_file_versions(solr_hash)
54
+ spotlight_image_derivatives.each do |config|
55
+ if config[:version]
56
+ solr_hash[config[:field]] = url.send(config[:version]).url
57
+ else
58
+ solr_hash[config[:field]] = url.url
59
+ end
54
60
  end
55
61
  end
56
- end
57
62
 
58
- def add_sidecar_fields solr_hash
59
- solr_hash.merge! sidecar.to_solr
60
- end
63
+ def add_sidecar_fields(solr_hash)
64
+ solr_hash.merge! sidecar.to_solr
65
+ end
61
66
 
62
- def compound_id
63
- "#{exhibit_id}-#{id}"
64
- end
65
-
66
- def update_document_sidecar
67
- sidecar_updates = data.slice(*exhibit.custom_fields.map(&:field).map(&:to_s)).select { |k,v| v.present? }
67
+ def compound_id
68
+ "#{exhibit_id}-#{id}"
69
+ end
70
+
71
+ def update_document_sidecar
72
+ sidecar.update(data: sidecar.data.merge(sidecar_update_data))
73
+ end
68
74
 
69
- sidecar_updates["configured_fields"] = data.slice(*configured_fields.map(&:field_name).map(&:to_s)).select { |k,v| v.present? }
75
+ def sidecar_update_data
76
+ custom_fields_data.merge('configured_fields' => configured_fields_data)
77
+ end
70
78
 
71
- sidecar.update(data: sidecar.data.merge(sidecar_updates))
79
+ def custom_fields_data
80
+ data.slice(*exhibit.custom_fields.map(&:field).map(&:to_s)).select { |_k, v| v.present? }
81
+ end
72
82
 
73
- sidecar.save
74
- end
83
+ def configured_fields_data
84
+ data.slice(*configured_fields.map(&:field_name).map(&:to_s)).select { |_k, v| v.present? }
85
+ end
75
86
 
76
- def sidecar
77
- @sidecar ||= document_model.new(id: compound_id).sidecar(exhibit)
87
+ def sidecar
88
+ @sidecar ||= document_model.new(id: compound_id).sidecar(exhibit)
89
+ end
78
90
  end
79
-
80
91
  end
81
92
  end
@@ -1,45 +1,41 @@
1
- class Spotlight::Role < ActiveRecord::Base
1
+ module Spotlight
2
+ ##
3
+ # Exhibit authorization roles
4
+ class Role < ActiveRecord::Base
5
+ ROLES = %w(admin curator)
6
+ belongs_to :exhibit
7
+ belongs_to :user, class_name: '::User', autosave: true
8
+ validates :role, inclusion: { in: ROLES }
9
+ validates :user_key, presence: true
10
+ validate :user_must_exist, if: -> { user_key.present? }
11
+ validate :user_must_be_unique, if: :user
2
12
 
3
- ROLES = %w(admin curator)
4
- belongs_to :exhibit
5
- belongs_to :user, class_name: '::User', autosave: true
6
- validates :role, inclusion: { in: ROLES }
7
- validates :user_key, presence: true
8
- validate :user_must_exist, if: -> { user_key.present? }
9
- validate :user_must_be_unique, if: :user
10
-
11
- def user_key
12
- if user
13
- @user_key = user.user_key
14
- else
15
- @user_key
13
+ def user_key
14
+ if user
15
+ @user_key = user.user_key
16
+ else
17
+ @user_key
18
+ end
16
19
  end
17
- end
18
20
 
19
- # setting user key causes the user to get set
20
- def user_key= key
21
- @user_key = key
22
- self.user ||= User.find_by_user_key(key)
23
- if user
24
- user.user_key = key
21
+ # setting user key causes the user to get set
22
+ def user_key=(key)
23
+ @user_key = key
24
+ self.user ||= ::User.find_by_user_key(key)
25
+ user.user_key = key if user
25
26
  end
26
- end
27
27
 
28
- protected
28
+ protected
29
29
 
30
- def user_must_exist
31
- unless user.present?
32
- errors.add(:user_key, "User must sign up first.")
30
+ def user_must_exist
31
+ errors.add(:user_key, 'User must sign up first.') unless user.present?
33
32
  end
34
- end
35
33
 
36
- # This is just like
37
- # validates :user, uniqueness: { scope: :exhibit}
38
- # but it puts the error message on the user_key instead of user so that the form will render correctly
39
- def user_must_be_unique
40
- if Spotlight::Role.where(exhibit_id: exhibit_id, user_id: user.id).where.not(id: id).any?
41
- errors.add(:user_key, "already a member of this exhibit")
34
+ # This is just like
35
+ # validates :user, uniqueness: { scope: :exhibit}
36
+ # but it puts the error message on the user_key instead of user so that the form will render correctly
37
+ def user_must_be_unique
38
+ errors.add(:user_key, 'already a member of this exhibit') if Spotlight::Role.where(exhibit_id: exhibit_id, user_id: user.id).where.not(id: id).any?
42
39
  end
43
40
  end
44
-
45
41
  end
@@ -1,82 +1,93 @@
1
- class Spotlight::Search < ActiveRecord::Base
1
+ module Spotlight
2
+ ##
3
+ # Exhibit saved searches
4
+ class Search < ActiveRecord::Base
5
+ extend FriendlyId
6
+ friendly_id :title, use: [:slugged, :scoped, :finders, :history], scope: :exhibit
7
+
8
+ self.table_name = 'spotlight_searches'
9
+ belongs_to :exhibit
10
+ serialize :query_params, Hash
11
+ default_scope { order('weight ASC') }
12
+ scope :published, -> { where(published: true) }
13
+ validates :title, presence: true
14
+ has_paper_trail
15
+
16
+ belongs_to :masthead, dependent: :destroy
17
+ belongs_to :thumbnail, class_name: 'Spotlight::FeaturedImage', dependent: :destroy
18
+ accepts_nested_attributes_for :thumbnail, update_only: true
19
+ accepts_nested_attributes_for :masthead, update_only: true
20
+
21
+ before_create :set_default_featured_image
22
+
23
+ include Blacklight::SearchHelper
24
+ include Spotlight::Catalog::AccessControlsEnforcement
25
+
26
+ def thumbnail_image_url
27
+ thumbnail.image.thumb.url if thumbnail && thumbnail.image
28
+ end
2
29
 
3
- extend FriendlyId
4
- friendly_id :title, use: [:slugged,:scoped,:finders,:history], scope: :exhibit
30
+ def count
31
+ repository.search(search_builder.with(query_params).rows(0).merge(facet: false))['response']['numFound']
32
+ end
5
33
 
6
- self.table_name = 'spotlight_searches'
7
- belongs_to :exhibit
8
- serialize :query_params, Hash
9
- default_scope { order("weight ASC") }
10
- scope :published, -> { where(on_landing_page: true) }
11
- validates :title, presence: true
12
- has_paper_trail
13
-
14
- belongs_to :masthead, dependent: :destroy
15
- belongs_to :thumbnail, class_name: "Spotlight::FeaturedImage", dependent: :destroy
16
- accepts_nested_attributes_for :thumbnail, update_only: true
17
- accepts_nested_attributes_for :masthead, update_only: true
34
+ def images
35
+ documents.map do |doc|
36
+ [
37
+ doc.first(blacklight_config.document_model.unique_key),
38
+ doc.first(blacklight_config.index.title_field),
39
+ doc.first(blacklight_config.index.thumbnail_field)
40
+ ]
41
+ end
42
+ end
18
43
 
44
+ def documents
45
+ return enum_for(:documents) unless block_given?
19
46
 
20
- before_create :set_default_featured_image
47
+ Blacklight::SolrResponse.new(solr_response, {}).docs.each do |result|
48
+ yield blacklight_config.document_model.new(result)
49
+ end
50
+ end
21
51
 
22
- include Blacklight::SearchHelper
23
- include Spotlight::Catalog::AccessControlsEnforcement
52
+ delegate :blacklight_config, to: :exhibit
24
53
 
25
- def thumbnail_image_url
26
- thumbnail.image.thumb.url if thumbnail and thumbnail.image
27
- end
54
+ def display_masthead?
55
+ masthead && masthead.display?
56
+ end
28
57
 
29
- def count
30
- query_solr(query_params, rows: 0, facet: false)['response']['numFound']
31
- end
58
+ private
32
59
 
33
- def images
34
- documents.map do |doc|
60
+ def solr_response
61
+ @solr_response ||= repository.search(
62
+ search_builder.with(query_params).rows(1000).merge(
63
+ facet: false,
64
+ fl: default_search_fields
65
+ )
66
+ )
67
+ end
35
68
 
69
+ def default_search_fields
36
70
  [
37
- doc.first(blacklight_config.document_model.unique_key),
38
- doc.first(blacklight_config.index.title_field),
39
- doc.first(blacklight_config.index.thumbnail_field)
71
+ blacklight_config.document_model.unique_key,
72
+ blacklight_config.index.title_field,
73
+ blacklight_config.index.thumbnail_field,
74
+ Spotlight::Engine.config.full_image_field
40
75
  ]
41
76
  end
42
- end
43
-
44
- def documents
45
- return enum_for(:documents) unless block_given?
46
77
 
47
- Blacklight::SolrResponse.new(solr_response, {}).docs.each do |result|
48
- yield blacklight_config.document_model.new(result)
78
+ def should_generate_new_friendly_id?
79
+ title_changed?
49
80
  end
50
- end
51
-
52
- def blacklight_config
53
- exhibit.blacklight_config
54
- end
55
81
 
56
- def display_masthead?
57
- masthead && masthead.display?
58
- end
59
-
60
- private
61
- def solr_response
62
- @solr_response ||= query_solr(query_params,
63
- rows: 1000,
64
- fl: [blacklight_config.document_model.unique_key, blacklight_config.index.title_field, blacklight_config.index.thumbnail_field, Spotlight::Engine.config.full_image_field],
65
- facet: false)
66
- end
67
- def should_generate_new_friendly_id?
68
- title_changed?
69
- end
70
-
71
- def set_default_featured_image
72
- self.thumbnail ||= begin
73
- if doc = documents.first
74
- self.create_thumbnail source: 'exhibit', document_global_id: doc.to_global_id.to_s, remote_image_url: doc.first(Spotlight::Engine.config.full_image_field)
82
+ def set_default_featured_image
83
+ self.thumbnail ||= begin
84
+ doc = documents.detect { |x| x.first(Spotlight::Engine.config.full_image_field) }
85
+ if doc
86
+ create_thumbnail source: 'exhibit', document_global_id: doc.to_global_id.to_s, remote_image_url: doc.first(Spotlight::Engine.config.full_image_field)
87
+ end
75
88
  end
76
89
  end
77
- end
78
-
79
-
80
- alias_method :current_exhibit, :exhibit
81
90
 
91
+ alias_method :current_exhibit, :exhibit
92
+ end
82
93
  end
@@ -1,10 +1,12 @@
1
1
  module Spotlight
2
+ ##
3
+ # Exhibit-specific metadata for indexed documents
2
4
  class SolrDocumentSidecar < ActiveRecord::Base
3
5
  belongs_to :exhibit
4
6
  belongs_to :document, polymorphic: true
5
7
  serialize :data, Hash
6
8
 
7
- delegate :has_key?, to: :data
9
+ delegate :has_key?, :key?, to: :data
8
10
 
9
11
  def to_solr
10
12
  { document.class.unique_key.to_sym => document.id, visibility_field => public? }.merge(data_to_solr)
@@ -42,26 +44,26 @@ module Spotlight
42
44
  end
43
45
 
44
46
  def data_to_solr
45
- data.except("configured_fields").merge(configured_fields_data_to_solr)
47
+ data.except('configured_fields').merge(configured_fields_data_to_solr)
46
48
  end
47
49
 
48
50
  def configured_fields_data_to_solr
49
- solr_hash = {}
50
- if data["configured_fields"]
51
- configured_fields = Spotlight::Resources::Upload.fields(exhibit)
52
-
53
- configured_fields.each do |field|
54
- solr_fields = Array(field.solr_field || field.field_name)
55
- if data["configured_fields"][field.field_name.to_s].present?
56
- solr_fields.each do |solr_field|
57
- solr_hash[solr_field] = data["configured_fields"][field.field_name.to_s]
58
- end
59
- end
51
+ configured_fields = data.fetch('configured_fields', {})
52
+
53
+ upload_fields.each_with_object({}) do |field, solr_hash|
54
+ field_name = field.field_name.to_s
55
+ next unless configured_fields && configured_fields[field_name].present?
56
+
57
+ solr_fields = Array(field.solr_field || field.field_name)
58
+
59
+ solr_fields.each do |solr_field|
60
+ solr_hash[solr_field] = configured_fields[field_name]
60
61
  end
61
62
  end
62
-
63
- solr_hash.select { |k,v| v.present? }
64
63
  end
65
64
 
65
+ def upload_fields
66
+ Spotlight::Resources::Upload.fields(exhibit)
67
+ end
66
68
  end
67
69
  end