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.
- checksums.yaml +4 -4
- data/README.md +22 -8
- data/Rakefile +40 -39
- data/app/assets/javascripts/spotlight/blacklight_configuration.js +16 -0
- data/app/assets/javascripts/spotlight/blocks/resources_block.js +3 -1
- data/app/assets/stylesheets/spotlight/_blacklight_configuration.scss +2 -2
- data/app/assets/stylesheets/spotlight/_blacklight_overrides.scss +24 -0
- data/app/assets/stylesheets/spotlight/_header.scss +150 -47
- data/app/assets/stylesheets/spotlight/_pages.scss +62 -11
- data/app/assets/stylesheets/spotlight/_report_a_problem.scss +1 -0
- data/app/assets/stylesheets/spotlight/_spotlight.scss +1 -0
- data/app/builders/spotlight/bootstrap_breadcrumbs_builder.rb +28 -21
- data/app/controllers/spotlight/about_pages_controller.rb +25 -14
- data/app/controllers/spotlight/appearances_controller.rb +34 -30
- data/app/controllers/spotlight/application_controller.rb +2 -1
- data/app/controllers/spotlight/attachments_controller.rb +9 -7
- data/app/controllers/spotlight/browse_controller.rb +13 -9
- data/app/controllers/spotlight/catalog_controller.rb +179 -161
- data/app/controllers/spotlight/concerns/application_controller.rb +22 -20
- data/app/controllers/spotlight/concerns/catalog_search_context.rb +44 -0
- data/app/controllers/spotlight/confirmations_controller.rb +5 -2
- data/app/controllers/spotlight/contact_forms_controller.rb +13 -7
- data/app/controllers/spotlight/contacts_controller.rb +13 -4
- data/app/controllers/spotlight/custom_fields_controller.rb +48 -40
- data/app/controllers/spotlight/dashboards_controller.rb +17 -8
- data/app/controllers/spotlight/default_controller.rb +3 -1
- data/app/controllers/spotlight/exhibits_controller.rb +69 -62
- data/app/controllers/spotlight/feature_pages_controller.rb +21 -11
- data/app/controllers/spotlight/home_pages_controller.rb +6 -5
- data/app/controllers/spotlight/lock_controller.rb +3 -1
- data/app/controllers/spotlight/metadata_configurations_controller.rb +49 -0
- data/app/controllers/spotlight/pages_controller.rb +28 -18
- data/app/controllers/spotlight/resources/upload_controller.rb +53 -46
- data/app/controllers/spotlight/resources_controller.rb +9 -5
- data/app/controllers/spotlight/roles_controller.rb +26 -22
- data/app/controllers/spotlight/search_configurations_controller.rb +66 -0
- data/app/controllers/spotlight/searches_controller.rb +91 -82
- data/app/controllers/spotlight/solr_controller.rb +20 -13
- data/app/controllers/spotlight/tags_controller.rb +5 -3
- data/app/controllers/spotlight/versions_controller.rb +15 -12
- data/app/controllers/spotlight/view_configurations_controller.rb +17 -0
- data/app/helpers/spotlight/application_helper.rb +44 -32
- data/app/helpers/spotlight/browse_helper.rb +13 -1
- data/app/helpers/spotlight/crud_link_helpers.rb +22 -14
- data/app/helpers/spotlight/jcrop_helper.rb +4 -2
- data/app/helpers/spotlight/main_app_helpers.rb +45 -41
- data/app/helpers/spotlight/navbar_helper.rb +6 -0
- data/app/helpers/spotlight/pages_helper.rb +23 -15
- data/app/helpers/spotlight/roles_helper.rb +10 -4
- data/app/helpers/spotlight/search_configurations_helper.rb +22 -0
- data/app/helpers/spotlight/title_helper.rb +16 -13
- data/app/jobs/spotlight/add_uploads_from_csv.rb +13 -9
- data/app/jobs/spotlight/reindex_job.rb +9 -9
- data/app/jobs/spotlight/rename_sidecar_field_job.rb +3 -0
- data/app/mailers/spotlight/confirmation_mailer.rb +2 -0
- data/app/mailers/spotlight/indexing_complete_mailer.rb +4 -2
- data/app/models/ability.rb +3 -0
- data/app/models/concerns/spotlight/ar_light.rb +49 -25
- data/app/models/concerns/spotlight/blacklight_configuration_defaults.rb +25 -10
- data/app/models/concerns/spotlight/exhibit_analytics.rb +28 -0
- data/app/models/concerns/spotlight/image_derivatives.rb +25 -26
- data/app/models/concerns/spotlight/resources/open_graph.rb +23 -19
- data/app/models/concerns/spotlight/resources/web.rb +25 -24
- data/app/models/concerns/spotlight/solr_document.rb +40 -34
- data/app/models/concerns/spotlight/solr_document/active_model_concern.rb +29 -40
- data/app/models/concerns/spotlight/solr_document/atomic_updates.rb +22 -18
- data/app/models/concerns/spotlight/solr_document/finder.rb +23 -18
- data/app/models/concerns/spotlight/solr_document/spotlight_images.rb +43 -39
- data/app/models/concerns/spotlight/solr_document/uploaded_resource.rb +41 -29
- data/app/models/concerns/spotlight/user.rb +25 -19
- data/app/models/sir_trevor_rails/blocks/browse_block.rb +36 -30
- data/app/models/sir_trevor_rails/blocks/featured_pages_block.rb +24 -18
- data/app/models/sir_trevor_rails/blocks/oembed_block.rb +8 -4
- data/app/models/sir_trevor_rails/blocks/search_results_block.rb +29 -23
- data/app/models/sir_trevor_rails/blocks/solr_documents_block.rb +43 -42
- data/app/models/sir_trevor_rails/blocks/solr_documents_carousel_block.rb +16 -12
- data/app/models/sir_trevor_rails/blocks/solr_documents_embed_block.rb +7 -3
- data/app/models/sir_trevor_rails/blocks/solr_documents_features_block.rb +7 -3
- data/app/models/sir_trevor_rails/blocks/solr_documents_grid_block.rb +7 -3
- data/app/models/sir_trevor_rails/blocks/textable.rb +18 -18
- data/app/models/spotlight/ability.rb +32 -33
- data/app/models/spotlight/about_page.rb +3 -1
- data/app/models/spotlight/analytics/ga.rb +46 -27
- data/app/models/spotlight/attachment.rb +3 -1
- data/app/models/spotlight/blacklight_configuration.rb +146 -68
- data/app/models/spotlight/contact.rb +35 -30
- data/app/models/spotlight/contact_email.rb +6 -3
- data/app/models/spotlight/contact_form.rb +4 -3
- data/app/models/spotlight/custom_field.rb +41 -33
- data/app/models/spotlight/exhibit.rb +104 -130
- data/app/models/spotlight/feature_page.rb +9 -7
- data/app/models/spotlight/featured_image.rb +10 -10
- data/app/models/spotlight/field_metadata.rb +46 -0
- data/app/models/spotlight/home_page.rb +8 -5
- data/app/models/spotlight/lock.rb +4 -3
- data/app/models/spotlight/main_navigation.rb +9 -3
- data/app/models/spotlight/masthead.rb +17 -16
- data/app/models/spotlight/page.rb +16 -16
- data/app/models/spotlight/resource.rb +69 -22
- data/app/models/spotlight/resources/csv_upload.rb +8 -4
- data/app/models/spotlight/resources/upload.rb +68 -57
- data/app/models/spotlight/role.rb +30 -34
- data/app/models/spotlight/search.rb +74 -63
- data/app/models/spotlight/solr_document_sidecar.rb +17 -15
- data/app/serializers/spotlight/exhibit_export_serializer.rb +65 -29
- data/app/serializers/spotlight/page_representer.rb +10 -6
- data/app/uploaders/spotlight/attachment_uploader.rb +4 -6
- data/app/uploaders/spotlight/avatar_uploader.rb +4 -3
- data/app/uploaders/spotlight/featured_image_uploader.rb +15 -14
- data/app/uploaders/spotlight/item_uploader.rb +3 -1
- data/app/uploaders/spotlight/masthead_uploader.rb +4 -2
- data/app/views/catalog/_search_form.html.erb +24 -0
- data/app/views/shared/_browse_navbar.html.erb +1 -1
- data/app/views/shared/_exhibit_navbar.html.erb +1 -1
- data/app/views/spotlight/appearances/edit.html.erb +13 -45
- data/app/views/spotlight/catalog/_edit_default.html.erb +1 -1
- data/app/views/spotlight/custom_fields/_form.html.erb +1 -1
- data/app/views/spotlight/exhibits/edit.html.erb +4 -4
- data/app/views/spotlight/home_pages/_empty.html.erb +1 -3
- data/app/views/spotlight/home_pages/_page_options.html.erb +1 -1
- data/app/views/spotlight/{blacklight_configurations → metadata_configurations}/_metadata_field.html.erb +0 -0
- data/app/views/spotlight/{blacklight_configurations/edit_metadata_fields.html.erb → metadata_configurations/edit.html.erb} +1 -1
- data/app/views/spotlight/pages/show.html.erb +2 -2
- data/app/views/spotlight/search_configurations/_default_per_page.html.erb +5 -0
- data/app/views/spotlight/search_configurations/_document_index_view_types.html.erb +7 -0
- data/app/views/spotlight/search_configurations/_facets.html.erb +38 -0
- data/app/views/spotlight/search_configurations/_search_fields.html.erb +58 -0
- data/app/views/spotlight/search_configurations/_sort.html.erb +53 -0
- data/app/views/spotlight/search_configurations/edit.html.erb +46 -0
- data/app/views/spotlight/searches/_search.html.erb +1 -1
- data/app/views/spotlight/shared/_admin_sidebar.html.erb +0 -2
- data/app/views/spotlight/shared/_curation_sidebar.html.erb +2 -3
- data/app/views/spotlight/shared/_report_a_problem.html.erb +2 -2
- data/app/views/spotlight/sir_trevor/blocks/_oembed_block.html.erb +5 -1
- data/app/views/spotlight/sir_trevor/blocks/_solr_documents_block.html.erb +7 -5
- data/app/views/spotlight/sir_trevor/blocks/_solr_documents_carousel_block.html.erb +2 -2
- data/app/views/spotlight/sir_trevor/blocks/_solr_documents_embed_block.html.erb +7 -5
- data/app/views/spotlight/sir_trevor/blocks/_solr_documents_features_block.html.erb +2 -2
- data/app/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb +14 -9
- data/config/locales/spotlight.en.yml +94 -49
- data/config/routes.rb +11 -20
- data/db/migrate/20150410180014_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb +15 -0
- data/db/migrate/20150410180015_add_missing_taggable_index.acts_as_taggable_on_engine.rb +10 -0
- data/db/migrate/20150410180016_change_collation_for_tag_names.acts_as_taggable_on_engine.rb +10 -0
- data/db/migrate/20150713160101_change_spotlight_searches_to_published.rb +5 -0
- data/db/migrate/20151016092343_remove_searchable_from_exhibit.rb +20 -0
- data/lib/blacklight/spotlight.rb +1 -1
- data/lib/generators/spotlight/install_generator.rb +27 -25
- data/lib/generators/spotlight/templates/catalog_controller.rb +7 -5
- data/lib/generators/spotlight/templates/jetty.rake +8 -2
- data/lib/generators/spotlight/templates/spotlight_helper.rb +3 -1
- data/lib/spotlight.rb +4 -2
- data/lib/spotlight/base.rb +21 -14
- data/lib/spotlight/catalog.rb +10 -9
- data/lib/spotlight/catalog/access_controls_enforcement.rb +30 -15
- data/lib/spotlight/config.rb +4 -2
- data/lib/spotlight/controller.rb +12 -11
- data/lib/spotlight/engine.rb +30 -22
- data/lib/spotlight/rails/routes.rb +7 -4
- data/lib/spotlight/version.rb +2 -1
- data/lib/tasks/spotlight_tasks.rake +56 -50
- data/spec/controllers/application_controller_spec.rb +13 -13
- data/spec/controllers/spotlight/about_pages_controller_spec.rb +63 -59
- data/spec/controllers/spotlight/appearances_controller_spec.rb +29 -24
- data/spec/controllers/spotlight/application_controller_spec.rb +3 -3
- data/spec/controllers/spotlight/attachments_controller_spec.rb +10 -10
- data/spec/controllers/spotlight/browse_controller_spec.rb +23 -25
- data/spec/controllers/spotlight/catalog_controller_spec.rb +82 -87
- data/spec/controllers/spotlight/confirmations_controller_spec.rb +13 -11
- data/spec/controllers/spotlight/contact_forms_controller_spec.rb +17 -12
- data/spec/controllers/spotlight/contacts_controller_spec.rb +36 -36
- data/spec/controllers/spotlight/custom_fields_controller_spec.rb +26 -26
- data/spec/controllers/spotlight/dashboards_controller_spec.rb +14 -14
- data/spec/controllers/spotlight/exhibits_controller_spec.rb +59 -54
- data/spec/controllers/spotlight/feature_pages_controller_spec.rb +59 -59
- data/spec/controllers/spotlight/home_pages_controller_spec.rb +28 -29
- data/spec/controllers/spotlight/metadata_configurations_controller_spec.rb +84 -0
- data/spec/controllers/spotlight/resources/upload_controller_spec.rb +42 -33
- data/spec/controllers/spotlight/resources_controller_spec.rb +25 -29
- data/spec/controllers/spotlight/roles_controller_spec.rb +37 -19
- data/spec/controllers/spotlight/search_configurations_controller_spec.rb +125 -0
- data/spec/controllers/spotlight/searches_controller_spec.rb +84 -63
- data/spec/controllers/spotlight/solr_controller_spec.rb +13 -14
- data/spec/controllers/spotlight/tags_controller_spec.rb +16 -16
- data/spec/controllers/spotlight/versions_controller_spec.rb +15 -18
- data/spec/controllers/spotlight/view_configurations_controller_spec.rb +31 -0
- data/spec/factories/contacts.rb +1 -3
- data/spec/factories/custom_fields.rb +2 -4
- data/spec/factories/exhibits.rb +4 -2
- data/spec/factories/pages.rb +8 -11
- data/spec/factories/resources.rb +4 -4
- data/spec/factories/searches.rb +10 -13
- data/spec/factories/tags.rb +0 -3
- data/spec/factories/users.rb +2 -4
- data/spec/features/about_page_spec.rb +19 -19
- data/spec/features/add_contacts_spec.rb +34 -34
- data/spec/features/add_custom_field_metadata_spec.rb +24 -26
- data/spec/features/add_item_bookmarklet_spec.rb +12 -12
- data/spec/features/browse_category_admin_spec.rb +39 -39
- data/spec/features/catalog_spec.rb +9 -10
- data/spec/features/confirm_email_spec.rb +10 -10
- data/spec/features/create_exhibit_spec.rb +18 -15
- data/spec/features/create_page_spec.rb +8 -8
- data/spec/features/curator_items.rb +3 -3
- data/spec/features/dashboard_spec.rb +15 -16
- data/spec/features/edit_contact_spec.rb +8 -10
- data/spec/features/edit_search_fields_spec.rb +79 -0
- data/spec/features/exhibits/add_tags_spec.rb +15 -16
- data/spec/features/exhibits/administration_spec.rb +25 -25
- data/spec/features/exhibits/custom_metadata_fields_spec.rb +41 -43
- data/spec/features/exhibits/edit_metadata_fields_spec.rb +19 -19
- data/spec/features/feature_page_spec.rb +49 -48
- data/spec/features/home_page_spec.rb +38 -38
- data/spec/features/import_exhibit_spec.rb +23 -20
- data/spec/features/item_admin_spec.rb +28 -29
- data/spec/features/javascript/about_page_admin_spec.rb +9 -9
- data/spec/features/javascript/block_controls_spec.rb +16 -18
- data/spec/features/javascript/blocks/featured_browse_categories_block_spec.rb +11 -12
- data/spec/features/javascript/blocks/featured_pages_block_spec.rb +12 -13
- data/spec/features/javascript/blocks/search_result_block_spec.rb +17 -17
- data/spec/features/javascript/blocks/solr_documents_block_spec.rb +67 -65
- data/spec/features/javascript/edit_in_place_spec.rb +30 -56
- data/spec/features/javascript/feature_page_admin_spec.rb +73 -59
- data/spec/features/javascript/home_page_edit_spec.rb +6 -6
- data/spec/features/javascript/metadata_admin_spec.rb +15 -15
- data/spec/features/javascript/multi_image_select_spec.rb +17 -18
- data/spec/features/javascript/preview_block_spec.rb +11 -12
- data/spec/features/javascript/rule_block_spec.rb +7 -7
- data/spec/features/javascript/search_config_admin_spec.rb +144 -0
- data/spec/features/javascript/search_context_spec.rb +41 -42
- data/spec/features/main_navigation_spec.rb +22 -22
- data/spec/features/metadata_admin_spec.rb +8 -8
- data/spec/features/multiple_exhibits_spec.rb +15 -17
- data/spec/features/report_a_problem_spec.rb +23 -17
- data/spec/features/site_masthead_spec.rb +46 -46
- data/spec/features/slideshow_spec.rb +8 -9
- data/spec/features/tags_admin_spec.rb +11 -11
- data/spec/features/upload_non_repository_item_spec.rb +32 -32
- data/spec/features/user_admin_spec.rb +7 -7
- data/spec/helpers/spotlight/application_helper_spec.rb +63 -56
- data/spec/helpers/spotlight/browse_helper_spec.rb +6 -6
- data/spec/helpers/spotlight/crud_link_helpers_spec.rb +58 -52
- data/spec/helpers/spotlight/main_app_helpers_spec.rb +44 -24
- data/spec/helpers/spotlight/navbar_helper_spec.rb +4 -4
- data/spec/helpers/spotlight/pages_helper_spec.rb +56 -37
- data/spec/helpers/spotlight/roles_helper_spec.rb +3 -3
- data/spec/helpers/spotlight/search_configurations_helper_spec.rb +24 -0
- data/spec/helpers/spotlight/title_helper_spec.rb +33 -35
- data/spec/jobs/spotlight/reindex_job_spec.rb +6 -6
- data/spec/jobs/spotlight/rename_sidecar_field_job_spec.rb +7 -7
- data/spec/lib/spotlight/catalog/access_controls_enforcement_spec.rb +41 -26
- data/spec/lib/spotlight/controller_spec.rb +10 -10
- data/spec/lib/spotlight/routes_spec.rb +4 -4
- data/spec/mailers/spotlight/indexing_complete_mailer_spec.rb +13 -13
- data/spec/models/sir_trevor_rails/blocks/solr_documents_block_spec.rb +8 -8
- data/spec/models/{spotlight/sir_trevor_blocks → sir_trevor_rails/blocks}/textable_spec.rb +7 -8
- data/spec/models/solr_document_spec.rb +49 -50
- data/spec/models/spotlight/ability_spec.rb +17 -20
- data/spec/models/spotlight/about_page_spec.rb +6 -6
- data/spec/models/spotlight/analytics/ga_spec.rb +2 -2
- data/spec/models/spotlight/blacklight_configuration_spec.rb +196 -133
- data/spec/models/spotlight/contact_email_spec.rb +28 -24
- data/spec/models/spotlight/contact_spec.rb +6 -7
- data/spec/models/spotlight/custom_field_spec.rb +51 -52
- data/spec/models/spotlight/exhibit_spec.rb +102 -60
- data/spec/models/spotlight/feature_page_spec.rb +32 -32
- data/spec/models/spotlight/featured_image_spec.rb +5 -5
- data/spec/models/spotlight/field_metadata_spec.rb +78 -0
- data/spec/models/spotlight/home_page_spec.rb +11 -20
- data/spec/models/spotlight/{spotlight_image_derivatives_spec.rb → image_derivatives_spec.rb} +2 -2
- data/spec/models/spotlight/main_navigation_spec.rb +7 -9
- data/spec/models/spotlight/masthead_spec.rb +6 -6
- data/spec/models/spotlight/page_spec.rb +26 -29
- data/spec/models/spotlight/resource_spec.rb +56 -26
- data/spec/models/spotlight/resources/open_graph_spec.rb +16 -18
- data/spec/models/spotlight/resources/upload_spec.rb +32 -35
- data/spec/models/spotlight/resources/web_spec.rb +9 -11
- data/spec/models/spotlight/role_spec.rb +20 -20
- data/spec/models/spotlight/search_spec.rb +32 -15
- data/spec/models/spotlight/solr_document/atomic_updates_spec.rb +34 -0
- data/spec/models/spotlight/{solr_document_images_spec.rb → solr_document/spotlight_images_spec.rb} +18 -10
- data/spec/models/spotlight/solr_document/uploaded_resource_spec.rb +52 -0
- data/spec/models/spotlight/solr_document_sidecar_spec.rb +3 -4
- data/spec/routing/spotlight/exhibit_catalog_spec.rb +5 -5
- data/spec/routing/spotlight/pages_routing_spec.rb +24 -25
- data/spec/serializers/spotlight/exhibit_export_serializer_spec.rb +88 -68
- data/spec/spec_helper.rb +13 -22
- data/spec/support/features/test_features_helpers.rb +50 -46
- data/spec/support/views/test_view_helpers.rb +1 -1
- data/spec/test_app_templates/Gemfile.extra +0 -1
- data/spec/test_app_templates/carrierwave.rb +2 -2
- data/spec/test_app_templates/catalog_controller.rb +42 -42
- data/spec/test_app_templates/lib/generators/test_app_generator.rb +20 -11
- data/spec/test_app_templates/spotlight_test.rake +3 -3
- data/spec/uploaders/spotlight/item_uploader_spec.rb +68 -0
- data/spec/views/_user_util_links.html.erb_spec.rb +14 -14
- data/spec/views/shared/_analytics.html.erb_spec.rb +4 -6
- data/spec/views/shared/_exhibit_masthead.html.erb_spec.rb +19 -20
- data/spec/views/shared/_exhibit_navbar.html.erb_spec.rb +129 -131
- data/spec/views/shared/_footer.html.erb_spec.rb +6 -7
- data/spec/views/shared/_header_navbar.html.erb_spec.rb +5 -5
- data/spec/views/spotlight/about_pages/_empty.html.erb_spec.rb +4 -4
- data/spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb +9 -11
- data/spec/views/spotlight/about_pages/index.html.erb_spec.rb +31 -28
- data/spec/views/spotlight/browse/_search.html.erb_spec.rb +6 -6
- data/spec/views/spotlight/browse/_sort_and_per_page.html.erb_spec.rb +10 -12
- data/spec/views/spotlight/browse/index.html.erb_spec.rb +6 -6
- data/spec/views/spotlight/browse/show.html.erb_spec.rb +19 -20
- data/spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb +7 -7
- data/spec/views/spotlight/catalog/admin.html.erb_spec.rb +7 -7
- data/spec/views/spotlight/catalog/edit.html.erb_spec.rb +3 -6
- data/spec/views/spotlight/catalog/new.html.erb_spec.rb +8 -10
- data/spec/views/spotlight/contacts/edit.html.erb_spec.rb +8 -8
- data/spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb +22 -22
- data/spec/views/spotlight/exhibits/edit.html.erb_spec.rb +7 -8
- data/spec/views/spotlight/feature_pages/_empty.html.erb_spec.rb +5 -5
- data/spec/views/spotlight/feature_pages/_sidebar.html.erb_spec.rb +24 -26
- data/spec/views/spotlight/home_pages/_empty.html.erb_spec.rb +13 -9
- data/spec/views/spotlight/home_pages/_sidebar.html.erb_spec.rb +6 -6
- data/spec/views/spotlight/metadata_configurations/_metadata_field.html.erb_spec.rb +26 -0
- data/spec/views/spotlight/metadata_configurations/edit.html.erb_spec.rb +22 -0
- data/spec/views/spotlight/pages/edit.html.erb_spec.rb +16 -16
- data/spec/views/spotlight/pages/index.html.erb_spec.rb +19 -17
- data/spec/views/spotlight/pages/new.html.erb_spec.rb +6 -6
- data/spec/views/spotlight/pages/show.html.erb_spec.rb +27 -28
- data/spec/views/spotlight/roles/index.html.erb_spec.rb +6 -6
- data/spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb +54 -0
- data/spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb +28 -0
- data/spec/views/spotlight/searches/_search.html.erb_spec.rb +20 -10
- data/spec/views/spotlight/searches/edit.html.erb_spec.rb +12 -11
- data/spec/views/spotlight/searches/index.html.erb_spec.rb +12 -7
- data/spec/views/spotlight/sir_trevor/blocks/_iframe_block.html.erb_spec.rb +7 -8
- data/spec/views/spotlight/sir_trevor/blocks/_rule_block.html.erb_spec.rb +4 -4
- data/spec/views/spotlight/sir_trevor/blocks/_solr_documents_block.html.erb_spec.rb +38 -0
- data/spec/views/spotlight/sir_trevor/blocks/_solr_documents_carousel_block.html.erb_spec.rb +7 -8
- data/spec/views/spotlight/sir_trevor/blocks/_solr_documents_embed_block.html.erb_spec.rb +18 -13
- data/spec/views/spotlight/sir_trevor/blocks/_solr_documents_features_block.html.erb_spec.rb +14 -12
- data/spec/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb_spec.rb +11 -12
- data/spec/views/spotlight/tags/index.html.erb_spec.rb +9 -9
- metadata +167 -83
- data/app/controllers/spotlight/blacklight_configurations_controller.rb +0 -101
- data/app/controllers/spotlight/resources/csv_controller.rb +0 -23
- data/app/forms/spotlight/appearance.rb +0 -86
- data/app/helpers/spotlight/attachments_helper.rb +0 -4
- data/app/helpers/spotlight/blacklight_configurations_helper.rb +0 -15
- data/app/jobs/spotlight/set_default_thumbnail_job.rb +0 -16
- data/app/models/spotlight/resources/csv.rb +0 -80
- data/app/uploaders/spotlight/csv_uploader.rb +0 -15
- data/app/views/spotlight/blacklight_configurations/edit_facet_fields.html.erb +0 -47
- data/app/views/spotlight/blacklight_configurations/edit_sort_fields.html.erb +0 -65
- data/app/views/spotlight/resources/csv/_form.html.erb +0 -17
- data/app/views/spotlight/resources/csv/new.html.erb +0 -3
- data/spec/controllers/spotlight/blacklight_configurations_controller_spec.rb +0 -167
- data/spec/features/edit_sort_fields_spec.rb +0 -42
- data/spec/features/exhibits/edit_facet_fields_spec.rb +0 -37
- data/spec/features/javascript/facet_admin_spec.rb +0 -36
- data/spec/features/search_facets_admin_spec.rb +0 -19
- data/spec/features/update_appearance_spec.rb +0 -58
- data/spec/helpers/spotlight/blacklight_configurations_helper_spec.rb +0 -12
- data/spec/models/spotlight/appearance_spec.rb +0 -33
- data/spec/models/spotlight/resources/csv_spec.rb +0 -101
- data/spec/models/spotlight/solr_document_atomic_updates_spec.rb +0 -29
- data/spec/models/spotlight/solr_document_uploaded_resource_spec.rb +0 -45
- data/spec/uploaders/item_uploader_spec.rb +0 -62
- data/spec/views/spotlight/blacklight_configuration/_metadata_field.html.erb_spec.rb +0 -27
- data/spec/views/spotlight/blacklight_configuration/edit_metadata_fields.html.erb_spec.rb +0 -23
- data/spec/views/spotlight/blacklight_configuration/edit_sort_fields.html.erb_spec.rb +0 -19
@@ -1,45 +1,44 @@
|
|
1
|
-
module Spotlight
|
2
|
-
|
1
|
+
module Spotlight
|
2
|
+
##
|
3
|
+
# Default Spotlight CanCan abilities
|
4
|
+
module Ability
|
5
|
+
include CanCan::Ability
|
3
6
|
|
4
|
-
|
5
|
-
user
|
7
|
+
# rubocop:disable Metrics/AbcSize, Metrics/MethodLength
|
8
|
+
def initialize(user)
|
9
|
+
user ||= ::User.new
|
6
10
|
|
7
|
-
|
8
|
-
alias_action :edit_metadata_fields, :edit_facet_fields, :edit_sort_fields, :metadata_fields, :available_search_views, to: :update
|
11
|
+
alias_action :process_import, to: :import
|
9
12
|
|
10
|
-
|
11
|
-
can :manage, :all
|
12
|
-
end
|
13
|
-
|
14
|
-
# exhibit admin
|
15
|
-
can [:update, :import, :export, :destroy], Spotlight::Exhibit, id: user.admin_roles.pluck(:exhibit_id)
|
16
|
-
can :manage, Spotlight::Role, exhibit_id: user.admin_roles.pluck(:exhibit_id)
|
17
|
-
can :update, Spotlight::Appearance, exhibit_id: user.admin_roles.pluck(:exhibit_id)
|
13
|
+
can :manage, :all if user.superadmin?
|
18
14
|
|
19
|
-
|
20
|
-
can :
|
21
|
-
|
15
|
+
# exhibit admin
|
16
|
+
can [:update, :import, :export, :destroy], Spotlight::Exhibit, id: user.admin_roles.pluck(:exhibit_id)
|
17
|
+
can :manage, Spotlight::Role, exhibit_id: user.admin_roles.pluck(:exhibit_id)
|
22
18
|
|
23
|
-
|
24
|
-
can :manage, [
|
25
|
-
Spotlight::Attachment,
|
26
|
-
Spotlight::Search,
|
27
|
-
Spotlight::Resource,
|
28
|
-
Spotlight::Page,
|
29
|
-
Spotlight::Contact,
|
30
|
-
Spotlight::CustomField], exhibit_id: user.roles.pluck(:exhibit_id)
|
19
|
+
can :manage, PaperTrail::Version if user.roles.any?
|
31
20
|
|
32
|
-
|
21
|
+
# exhibit curator
|
22
|
+
can :manage, [
|
23
|
+
Spotlight::Attachment,
|
24
|
+
Spotlight::Search,
|
25
|
+
Spotlight::Resource,
|
26
|
+
Spotlight::Page,
|
27
|
+
Spotlight::Contact,
|
28
|
+
Spotlight::CustomField], exhibit_id: user.roles.pluck(:exhibit_id)
|
33
29
|
|
34
|
-
|
30
|
+
can :manage, Spotlight::Lock, by: user
|
35
31
|
|
36
|
-
|
32
|
+
can [:read, :update], Spotlight::BlacklightConfiguration, exhibit_id: user.roles.pluck(:exhibit_id)
|
37
33
|
|
38
|
-
|
39
|
-
can :read, Spotlight::HomePage
|
40
|
-
can :read, Spotlight::Exhibit, published: true
|
41
|
-
can :read, Spotlight::Page, published: true
|
42
|
-
can :read, Spotlight::Search, on_landing_page: true
|
34
|
+
can [:read, :curate, :tag], Spotlight::Exhibit, id: user.roles.pluck(:exhibit_id)
|
43
35
|
|
36
|
+
# public
|
37
|
+
can :read, Spotlight::HomePage
|
38
|
+
can :read, Spotlight::Exhibit, published: true
|
39
|
+
can :read, Spotlight::Page, published: true
|
40
|
+
can :read, Spotlight::Search, published: true
|
41
|
+
end
|
42
|
+
# rubocop:enable Metrics/AbcSize, Metrics/MethodLength
|
44
43
|
end
|
45
44
|
end
|
@@ -1,6 +1,8 @@
|
|
1
1
|
module Spotlight
|
2
|
+
##
|
3
|
+
# About pages
|
2
4
|
class AboutPage < Spotlight::Page
|
3
5
|
extend FriendlyId
|
4
|
-
friendly_id :title, use: [:slugged
|
6
|
+
friendly_id :title, use: [:slugged, :scoped, :finders, :history], scope: :exhibit
|
5
7
|
end
|
6
8
|
end
|
@@ -1,5 +1,7 @@
|
|
1
1
|
module Spotlight
|
2
2
|
module Analytics
|
3
|
+
##
|
4
|
+
# Google Analytics data provider for the curation dashboard
|
3
5
|
class Ga
|
4
6
|
require 'legato'
|
5
7
|
|
@@ -13,30 +15,15 @@ module Spotlight
|
|
13
15
|
user && site
|
14
16
|
end
|
15
17
|
|
16
|
-
def self.for_exhibit
|
18
|
+
def self.for_exhibit(exhibit)
|
17
19
|
path(Spotlight::Engine.routes.url_helpers.exhibit_path(exhibit))
|
18
20
|
end
|
19
21
|
|
20
|
-
filter :path,
|
21
|
-
|
22
|
-
def self.user(scope=
|
22
|
+
filter :path, &->(path) { contains(:pagePath, "^#{path}") }
|
23
|
+
|
24
|
+
def self.user(scope = 'https://www.googleapis.com/auth/analytics.readonly')
|
23
25
|
@user ||= begin
|
24
|
-
|
25
|
-
require 'google/api_client'
|
26
|
-
|
27
|
-
client = Google::APIClient.new(
|
28
|
-
application_name: "spotlight",
|
29
|
-
application_version: Spotlight::VERSION
|
30
|
-
)
|
31
|
-
key = Google::APIClient::PKCS12.load_key(Spotlight::Engine.config.ga_pkcs12_key_path, "notasecret")
|
32
|
-
service_account = Google::APIClient::JWTAsserter.new(Spotlight::Engine.config.ga_email, scope, key)
|
33
|
-
client.authorization = service_account.authorize
|
34
|
-
oauth_client = OAuth2::Client.new("", "", {
|
35
|
-
authorize_url: 'https://accounts.google.com/o/oauth2/auth',
|
36
|
-
token_url: 'https://accounts.google.com/o/oauth2/token'
|
37
|
-
})
|
38
|
-
token = OAuth2::AccessToken.new(oauth_client, client.authorization.access_token, expires_in: 1.hour)
|
39
|
-
Legato::User.new(token)
|
26
|
+
Legato::User.new(oauth_token(scope))
|
40
27
|
rescue => e
|
41
28
|
Rails.logger.info(e)
|
42
29
|
nil
|
@@ -47,11 +34,15 @@ module Spotlight
|
|
47
34
|
@site ||= user.accounts.first.profiles.first { |x| x.web_property_id = Spotlight::Engine.config.ga_web_property_id }
|
48
35
|
end
|
49
36
|
|
50
|
-
def self.exhibit_data
|
51
|
-
context(exhibit).results(site, Spotlight::Engine.config.ga_analytics_options.merge(options)).to_a.first ||
|
37
|
+
def self.exhibit_data(exhibit, options)
|
38
|
+
context(exhibit).results(site, Spotlight::Engine.config.ga_analytics_options.merge(options)).to_a.first || exhibit_data_unavailable
|
39
|
+
end
|
40
|
+
|
41
|
+
def self.exhibit_data_unavailable
|
42
|
+
OpenStruct.new(pageviews: 'n/a', users: 'n/a', sessions: 'n/a')
|
52
43
|
end
|
53
44
|
|
54
|
-
def self.page_data
|
45
|
+
def self.page_data(exhibit, options)
|
55
46
|
options[:sort] ||= '-pageviews'
|
56
47
|
query = context(exhibit).results(site, Spotlight::Engine.config.ga_page_analytics_options.merge(options))
|
57
48
|
query.dimensions << :page_path
|
@@ -60,13 +51,41 @@ module Spotlight
|
|
60
51
|
query.to_a
|
61
52
|
end
|
62
53
|
|
63
|
-
def self.context
|
54
|
+
def self.context(exhibit)
|
64
55
|
if exhibit.is_a? Spotlight::Exhibit
|
65
|
-
|
56
|
+
for_exhibit(exhibit)
|
66
57
|
else
|
67
|
-
|
58
|
+
path(exhibit)
|
68
59
|
end
|
69
60
|
end
|
61
|
+
|
62
|
+
def self.oauth_token(scope)
|
63
|
+
require 'oauth2'
|
64
|
+
|
65
|
+
OAuth2::AccessToken.new(oauth_client, api_client(scope).authorization.access_token, expires_in: 1.hour)
|
66
|
+
end
|
67
|
+
|
68
|
+
def self.oauth_client
|
69
|
+
OAuth2::Client.new('', '', authorize_url: 'https://accounts.google.com/o/oauth2/auth',
|
70
|
+
token_url: 'https://accounts.google.com/o/oauth2/token')
|
71
|
+
end
|
72
|
+
|
73
|
+
def self.service_account(scope)
|
74
|
+
@service_account ||= begin
|
75
|
+
oauth_key = Google::APIClient::PKCS12.load_key(Spotlight::Engine.config.ga_pkcs12_key_path, 'notasecret')
|
76
|
+
Google::APIClient::JWTAsserter.new(Spotlight::Engine.config.ga_email, scope, oauth_key)
|
77
|
+
end
|
78
|
+
end
|
79
|
+
|
80
|
+
def self.api_client(scope)
|
81
|
+
require 'google/api_client'
|
82
|
+
client = Google::APIClient.new(
|
83
|
+
application_name: 'spotlight',
|
84
|
+
application_version: Spotlight::VERSION
|
85
|
+
)
|
86
|
+
client.authorization = service_account(scope).authorize
|
87
|
+
client
|
88
|
+
end
|
70
89
|
end
|
71
90
|
end
|
72
|
-
end
|
91
|
+
end
|
@@ -1,10 +1,12 @@
|
|
1
1
|
module Spotlight
|
2
|
+
##
|
3
|
+
# Sir-trevor image upload attachments
|
2
4
|
class Attachment < ActiveRecord::Base
|
3
5
|
belongs_to :exhibit
|
4
6
|
mount_uploader :file, Spotlight::AttachmentUploader
|
5
7
|
|
6
8
|
def as_json(options = nil)
|
7
|
-
file.as_json(options).merge(:
|
9
|
+
file.as_json(options).merge(name: name, uid: uid, id: id, class: self.class.to_s)
|
8
10
|
end
|
9
11
|
end
|
10
12
|
end
|
@@ -1,10 +1,14 @@
|
|
1
1
|
require 'blacklight/utils'
|
2
2
|
|
3
3
|
module Spotlight
|
4
|
+
##
|
5
|
+
# Exhibit-specific blacklight configuration model
|
6
|
+
# rubocop:disable Metrics/ClassLength
|
4
7
|
class BlacklightConfiguration < ActiveRecord::Base
|
5
8
|
belongs_to :exhibit, touch: true
|
6
9
|
serialize :facet_fields, Hash
|
7
10
|
serialize :index_fields, Hash
|
11
|
+
serialize :search_fields, Hash
|
8
12
|
serialize :sort_fields, Hash
|
9
13
|
serialize :default_solr_params, Hash
|
10
14
|
serialize :show, Hash
|
@@ -17,30 +21,35 @@ module Spotlight
|
|
17
21
|
|
18
22
|
# get rid of empty values
|
19
23
|
before_validation do |model|
|
20
|
-
|
21
|
-
|
22
|
-
v[:enabled] ||= v.any? { |k1, v1| !v1.blank? }
|
24
|
+
model.index_fields.each do |_k, v|
|
25
|
+
v[:enabled] ||= v.any? { |_k1, v1| !v1.blank? }
|
23
26
|
|
24
27
|
default_blacklight_config.view.keys.each do |view|
|
25
28
|
v[view] &&= value_to_boolean(v[view])
|
26
29
|
end
|
27
30
|
|
28
31
|
v[:show] &&= value_to_boolean(v[:show])
|
29
|
-
|
30
|
-
v.reject! { |k, v1| v1.blank? and !v1 === false }
|
32
|
+
v.reject! { |_k, v1| v1.blank? && v1 != false }
|
31
33
|
end if model.index_fields
|
32
34
|
|
33
|
-
model.facet_fields.each do |
|
35
|
+
model.facet_fields.each do |_k, v|
|
34
36
|
v[:show] &&= value_to_boolean(v[:show])
|
35
37
|
v[:show] ||= true if v[:show].nil?
|
36
|
-
v.reject! { |
|
38
|
+
v.reject! { |_k, v1| v1.blank? && v1 != false }
|
37
39
|
end if model.facet_fields
|
38
40
|
|
39
|
-
model.
|
41
|
+
model.search_fields.each do |k, v|
|
40
42
|
v[:enabled] &&= value_to_boolean(v[:enabled])
|
41
43
|
v[:enabled] ||= true if v[:enabled].nil?
|
42
|
-
v[:label] = default_blacklight_config.
|
43
|
-
v.reject! { |
|
44
|
+
v[:label] = default_blacklight_config.search_fields[k][:label] if default_blacklight_config.search_fields[k] && !v[:label].present?
|
45
|
+
v.reject! { |_k, v1| v1.blank? && v1 != false }
|
46
|
+
end if model.search_fields
|
47
|
+
|
48
|
+
model.sort_fields.each do |k, v|
|
49
|
+
v[:enabled] &&= value_to_boolean(v[:enabled])
|
50
|
+
v[:enabled] ||= true if v[:enabled].nil?
|
51
|
+
v[:label] = default_blacklight_config.sort_fields[k][:label] if default_blacklight_config.sort_fields[k] && !v[:label].present?
|
52
|
+
v.reject! { |_k, v1| v1.blank? && v1 != false }
|
44
53
|
end if model.sort_fields
|
45
54
|
|
46
55
|
model.per_page.reject!(&:blank?) if model.per_page
|
@@ -48,42 +57,38 @@ module Spotlight
|
|
48
57
|
end
|
49
58
|
|
50
59
|
##
|
51
|
-
# Serialize this configuration to a Blacklight::Configuration object
|
60
|
+
# Serialize this configuration to a Blacklight::Configuration object
|
52
61
|
# appropriate to the current view. If a value isn't set in this record,
|
53
62
|
# it will use the configuration set upstream (in default_blacklight_config)
|
54
63
|
# @param [String] view the configuration may be different depending on the index view selected
|
64
|
+
# rubocop:disable Metrics/MethodLength, Metrics/PerceivedComplexity, Metrics/CyclomaticComplexity, Metrics/AbcSize
|
55
65
|
def blacklight_config
|
56
66
|
@blacklight_config ||= begin
|
57
67
|
# Create a new config based on the defaults
|
58
68
|
config = default_blacklight_config.inheritable_copy
|
59
69
|
|
70
|
+
config.search_builder_class.send(:include, Spotlight::Catalog::AccessControlsEnforcement::SearchBuilder)
|
71
|
+
|
60
72
|
config.show.merge! show unless show.blank?
|
61
73
|
config.index.merge! index unless index.blank?
|
62
74
|
|
63
75
|
config.index.thumbnail_field ||= Spotlight::Engine.config.thumbnail_field
|
64
76
|
|
65
|
-
unless exhibit.searchable?
|
66
|
-
config.navbar.partials[:saved_searches].if = false
|
67
|
-
config.navbar.partials[:search_history].if = false
|
68
|
-
end
|
69
|
-
|
70
77
|
config.add_results_collection_tool 'save_search', if: :render_save_this_search?
|
71
78
|
|
72
79
|
config.default_solr_params = config.default_solr_params.merge(default_solr_params)
|
73
80
|
|
74
81
|
config.view.embed.partials ||= ['openseadragon']
|
75
82
|
config.view.embed.if = false
|
76
|
-
config.view.embed.locals ||= { osd_container_class:
|
77
|
-
|
83
|
+
config.view.embed.locals ||= { osd_container_class: '' }
|
78
84
|
|
79
85
|
# Add any custom fields
|
80
86
|
config.index_fields.merge! custom_index_fields
|
81
|
-
config.index_fields = Hash[config.index_fields.sort_by { |k,
|
82
|
-
config.index_fields.reject! { |
|
87
|
+
config.index_fields = Hash[config.index_fields.sort_by { |k, _v| field_weight(index_fields, k) }]
|
88
|
+
config.index_fields.reject! { |_k, v| v.if == false }
|
83
89
|
|
84
90
|
# Update with customizations
|
85
91
|
config.index_fields.each do |k, v|
|
86
|
-
|
87
92
|
if index_fields[k]
|
88
93
|
v.merge! index_fields[k].symbolize_keys
|
89
94
|
elsif custom_index_fields[k]
|
@@ -98,10 +103,9 @@ module Spotlight
|
|
98
103
|
v.validate!
|
99
104
|
end
|
100
105
|
|
101
|
-
|
102
|
-
config.show_fields.reject! { |k,v| v.if == false }
|
106
|
+
config.show_fields.reject! { |_k, v| v.if == false }
|
103
107
|
|
104
|
-
config.show_fields.reject { |k,
|
108
|
+
config.show_fields.reject { |k, _v| config.index_fields[k] }.each do |k, v|
|
105
109
|
config.index_fields[k] = v
|
106
110
|
|
107
111
|
if index_fields[k]
|
@@ -116,11 +120,25 @@ module Spotlight
|
|
116
120
|
v.normalize! config
|
117
121
|
v.validate!
|
118
122
|
end
|
119
|
-
|
123
|
+
|
120
124
|
config.show_fields = config.index_fields
|
121
125
|
|
126
|
+
unless search_fields.blank?
|
127
|
+
config.search_fields = Hash[config.search_fields.sort_by { |k, _v| field_weight(search_fields, k) }]
|
128
|
+
|
129
|
+
config.search_fields.each do |k, v|
|
130
|
+
v.upstream_if = v.if unless v.if.nil?
|
131
|
+
v.if = :field_enabled?
|
132
|
+
next if search_fields[k].blank?
|
133
|
+
|
134
|
+
v.merge! search_fields[k].symbolize_keys
|
135
|
+
v.normalize! config
|
136
|
+
v.validate!
|
137
|
+
end
|
138
|
+
end
|
139
|
+
|
122
140
|
unless sort_fields.blank?
|
123
|
-
config.sort_fields = Hash[config.sort_fields.sort_by { |k,
|
141
|
+
config.sort_fields = Hash[config.sort_fields.sort_by { |k, _v| field_weight(sort_fields, k) }]
|
124
142
|
|
125
143
|
config.sort_fields.each do |k, v|
|
126
144
|
v.upstream_if = v.if unless v.if.nil?
|
@@ -132,10 +150,10 @@ module Spotlight
|
|
132
150
|
v.validate!
|
133
151
|
end
|
134
152
|
end
|
135
|
-
|
153
|
+
|
136
154
|
config.facet_fields.merge! custom_facet_fields
|
137
155
|
unless facet_fields.blank?
|
138
|
-
config.facet_fields = Hash[config.facet_fields.sort_by { |k,
|
156
|
+
config.facet_fields = Hash[config.facet_fields.sort_by { |k, _v| field_weight(facet_fields, k) }]
|
139
157
|
|
140
158
|
config.facet_fields.each do |k, v|
|
141
159
|
next if facet_fields[k].blank?
|
@@ -150,33 +168,39 @@ module Spotlight
|
|
150
168
|
end
|
151
169
|
|
152
170
|
config.per_page = (config.per_page & per_page) unless per_page.blank?
|
153
|
-
|
171
|
+
|
154
172
|
if default_per_page
|
155
173
|
config.per_page.delete(default_per_page)
|
156
174
|
config.per_page.unshift(default_per_page)
|
157
175
|
end
|
158
176
|
|
159
|
-
config.view.each do |k,v|
|
177
|
+
config.view.each do |k, v|
|
160
178
|
v.key = k
|
161
179
|
v.upstream_if = v.if unless v.if.nil?
|
162
180
|
v.if = :enabled_in_spotlight_view_type_configuration?
|
163
181
|
end unless document_index_view_types.blank?
|
164
182
|
|
183
|
+
if config.search_fields.blank?
|
184
|
+
config.navbar.partials[:saved_searches].if = false if config.navbar.partials.key? :saved_searches
|
185
|
+
config.navbar.partials[:search_history].if = false if config.navbar.partials.key? :search_history
|
186
|
+
end
|
187
|
+
|
165
188
|
config
|
166
189
|
end
|
167
190
|
end
|
191
|
+
# rubocop:enable Metrics/MethodLength, Metrics/PerceivedComplexity, Metrics/CyclomaticComplexity
|
168
192
|
|
169
193
|
def custom_index_fields
|
170
|
-
Hash[exhibit.custom_fields.map do |x|
|
194
|
+
Hash[exhibit.custom_fields.map do |x|
|
171
195
|
field = Blacklight::Configuration::IndexField.new x.configuration.merge(field: x.field)
|
172
|
-
[x.field, field]
|
196
|
+
[x.field, field]
|
173
197
|
end]
|
174
198
|
end
|
175
199
|
|
176
200
|
def custom_facet_fields
|
177
|
-
Hash[exhibit.custom_fields.vocab.map do |x|
|
201
|
+
Hash[exhibit.custom_fields.vocab.map do |x|
|
178
202
|
field = Blacklight::Configuration::FacetField.new x.configuration.merge(field: x.field, show: false)
|
179
|
-
[x.field, field]
|
203
|
+
[x.field, field]
|
180
204
|
end]
|
181
205
|
end
|
182
206
|
|
@@ -190,70 +214,124 @@ module Spotlight
|
|
190
214
|
end
|
191
215
|
end
|
192
216
|
|
217
|
+
# Parse params checkbox arrays into simple arrays.
|
218
|
+
# A group of checkboxes on a form returns values like this:
|
219
|
+
# {"list"=>"1", "gallery"=>"1", "map"=>"0"}
|
220
|
+
# where, "list" and "gallery" are selected and "map" is not. This function
|
221
|
+
# digests that hash into a list of selected values. e.g.:
|
222
|
+
# ["list", "gallery"]
|
223
|
+
def document_index_view_types=(hash_or_array)
|
224
|
+
if hash_or_array.is_a? Hash
|
225
|
+
super(hash_or_array.select { |_, checked| checked == '1' }.keys)
|
226
|
+
else
|
227
|
+
super(hash_or_array)
|
228
|
+
end
|
229
|
+
end
|
230
|
+
|
231
|
+
# @return [OpenStructWithHashAccess] keys are view types; value is 1 if enabled
|
232
|
+
# A group of checkboxes on a form needs values like this:
|
233
|
+
# {"list"=>"1", "gallery"=>"1", "map"=>"0"}
|
234
|
+
# where, "list" and "gallery" are selected and "map" is not. This function
|
235
|
+
# takes ["list", "gallery"] and turns it into the above.
|
236
|
+
def document_index_view_types_selected_hash
|
237
|
+
selected_view_types = document_index_view_types
|
238
|
+
avail_view_types = default_blacklight_config.view.select { |_k, v| v.if != false }.keys
|
239
|
+
Blacklight::OpenStructWithHashAccess.new.tap do |s|
|
240
|
+
avail_view_types.each do |k|
|
241
|
+
s[k] = selected_view_types.include?(k.to_s)
|
242
|
+
end
|
243
|
+
end
|
244
|
+
end
|
245
|
+
|
193
246
|
protected
|
194
|
-
def add_exhibit_specific_fields config
|
195
|
-
config.add_show_field :exhibit_tags, field: Spotlight::SolrDocument.solr_field_for_tagger(exhibit), link_to_search: true unless config.show_fields.include? :exhibit_tags
|
196
|
-
config.add_facet_field :exhibit_tags, field: Spotlight::SolrDocument.solr_field_for_tagger(exhibit) unless config.facet_fields.include? :exhibit_tags
|
197
247
|
|
198
|
-
|
199
|
-
|
248
|
+
def add_exhibit_specific_fields(config)
|
249
|
+
add_exhibit_tags_fields(config)
|
250
|
+
add_uploaded_resource_fields(config)
|
251
|
+
add_autocomplete_field(config)
|
252
|
+
end
|
200
253
|
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
254
|
+
def add_exhibit_tags_fields(config)
|
255
|
+
# rubocop:disable Style/GuardClause
|
256
|
+
unless config.show_fields.include? :exhibit_tags
|
257
|
+
config.add_show_field :exhibit_tags, field: Spotlight::SolrDocument.solr_field_for_tagger(exhibit), link_to_search: true
|
258
|
+
end
|
205
259
|
|
206
|
-
|
207
|
-
|
260
|
+
unless config.facet_fields.include? :exhibit_tags
|
261
|
+
config.add_facet_field :exhibit_tags, field: Spotlight::SolrDocument.solr_field_for_tagger(exhibit)
|
208
262
|
end
|
263
|
+
# rubocop:enable Style/GuardClause
|
264
|
+
end
|
209
265
|
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
field.solr_parameters = Spotlight::Engine.config.default_autocomplete_params.deep_dup
|
214
|
-
field.solr_parameters[:fl] ||= ""
|
215
|
-
field.solr_parameters[:fl] += " #{config.document_model.unique_key} #{config.view_config(:show).title_field} #{spotlight_image_version_fields.join(' ')}"
|
216
|
-
end
|
266
|
+
def add_uploaded_resource_fields(config)
|
267
|
+
exhibit.uploaded_resource_fields.each do |f|
|
268
|
+
add_uploaded_resource_field(config, f)
|
217
269
|
end
|
218
270
|
end
|
219
271
|
|
272
|
+
def add_uploaded_resource_field(config, f)
|
273
|
+
key = Array(f.solr_field || f.field_name).first.to_s
|
274
|
+
|
275
|
+
return if config.index_fields.any? { |_k, v| v.field == key }
|
276
|
+
|
277
|
+
options = f.blacklight_options || {}
|
278
|
+
options[:label] = f.label if f.label
|
279
|
+
|
280
|
+
config.add_index_field key, options
|
281
|
+
end
|
282
|
+
|
283
|
+
def add_autocomplete_field(config)
|
284
|
+
return unless Spotlight::Engine.config.autocomplete_search_field && !config.search_fields[Spotlight::Engine.config.autocomplete_search_field]
|
285
|
+
|
286
|
+
config.add_search_field(Spotlight::Engine.config.autocomplete_search_field) do |field|
|
287
|
+
field.include_in_simple_select = false
|
288
|
+
field.solr_parameters = Spotlight::Engine.config.default_autocomplete_params.deep_dup
|
289
|
+
field.solr_parameters[:fl] ||= default_autocomplete_field_list(config)
|
290
|
+
end
|
291
|
+
end
|
292
|
+
|
293
|
+
def default_autocomplete_field_list(config)
|
294
|
+
"#{config.document_model.unique_key} #{config.view_config(:show).title_field} #{spotlight_image_version_fields.join(' ')}"
|
295
|
+
end
|
296
|
+
|
220
297
|
def spotlight_image_version_fields
|
221
298
|
spotlight_image_derivatives.map do |version|
|
222
299
|
version[:field]
|
223
300
|
end
|
224
301
|
end
|
225
302
|
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
303
|
+
# rubocop:disable Style/AccessorMethodName
|
304
|
+
def set_index_field_defaults(field)
|
305
|
+
return unless index_fields.blank?
|
306
|
+
|
307
|
+
views = default_blacklight_config.view.keys | [:show, :enabled]
|
308
|
+
field.merge! Hash[views.map { |v| [v, true] }]
|
231
309
|
end
|
232
310
|
|
233
|
-
def set_show_field_defaults
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
end
|
311
|
+
def set_show_field_defaults(field)
|
312
|
+
return unless index_fields.blank?
|
313
|
+
views = default_blacklight_config.view.keys
|
314
|
+
field.merge! Hash[views.map { |v| [v, false] }]
|
315
|
+
field.enabled = true
|
316
|
+
field.show = true
|
240
317
|
end
|
241
318
|
|
242
|
-
def set_custom_field_defaults
|
319
|
+
def set_custom_field_defaults(field)
|
243
320
|
field.show = true
|
244
321
|
field.enabled = true
|
245
322
|
end
|
323
|
+
# rubocop:enable Style/AccessorMethodName
|
246
324
|
|
247
325
|
# @return [Integer] the weight (sort order) for this field
|
248
|
-
def field_weight
|
249
|
-
if fields[index]
|
326
|
+
def field_weight(fields, index)
|
327
|
+
if fields[index] && fields[index][:weight]
|
250
328
|
fields[index][:weight].to_i
|
251
329
|
else
|
252
330
|
100 + (fields.keys.index(index) || fields.keys.length)
|
253
331
|
end
|
254
332
|
end
|
255
333
|
|
256
|
-
def value_to_boolean
|
334
|
+
def value_to_boolean(v)
|
257
335
|
if defined? ActiveRecord::Type
|
258
336
|
# Rails 4.2+
|
259
337
|
ActiveRecord::Type::Boolean.new.type_cast_from_database v
|