blacklight 6.25.0 → 7.0.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/.npmignore +23 -0
- data/.rubocop.yml +15 -3
- data/.rubocop_todo.yml +242 -379
- data/.solr_wrapper.yml +1 -1
- data/.travis.yml +40 -0
- data/Gemfile +1 -4
- data/README.md +21 -4
- data/Rakefile +1 -2
- data/VERSION +1 -1
- data/app/assets/images/blacklight/list.svg +1 -0
- data/app/assets/images/blacklight/search.svg +1 -0
- data/app/assets/javascripts/blacklight/blacklight.js +496 -56
- data/app/assets/stylesheets/blacklight/_balanced_list.scss +7 -12
- data/app/assets/stylesheets/blacklight/_blacklight_base.scss +3 -1
- data/app/assets/stylesheets/blacklight/_bookmark.scss +1 -13
- data/app/assets/stylesheets/blacklight/_bootstrap_overrides.scss +27 -0
- data/app/assets/stylesheets/blacklight/_constraints.scss +17 -25
- data/app/assets/stylesheets/blacklight/_controls.scss +8 -16
- data/app/assets/stylesheets/blacklight/_facets.scss +74 -92
- data/app/assets/stylesheets/blacklight/_header.scss +35 -48
- data/app/assets/stylesheets/blacklight/_icons.scss +29 -0
- data/app/assets/stylesheets/blacklight/_layout.scss +0 -10
- data/app/assets/stylesheets/blacklight/_mixins.scss +15 -0
- data/app/assets/stylesheets/blacklight/_modal.scss +9 -17
- data/app/assets/stylesheets/blacklight/_pagination.scss +2 -17
- data/app/assets/stylesheets/blacklight/_search_history.scss +5 -13
- data/app/assets/stylesheets/blacklight/_search_results.scss +9 -8
- data/app/assets/stylesheets/blacklight/_twitter_typeahead.scss +1 -2
- data/app/builders/blacklight/action_builder.rb +56 -0
- data/app/controllers/bookmarks_controller.rb +2 -2
- data/app/controllers/catalog_controller.rb +2 -2
- data/app/controllers/concerns/blacklight/base.rb +0 -33
- data/app/controllers/concerns/blacklight/bookmarks.rb +20 -37
- data/app/controllers/concerns/blacklight/catalog.rb +254 -213
- data/app/controllers/concerns/blacklight/controller.rb +117 -133
- data/app/controllers/concerns/blacklight/default_component_configuration.rb +12 -43
- data/app/controllers/concerns/blacklight/search_context.rb +10 -14
- data/app/controllers/concerns/blacklight/search_fields.rb +4 -14
- data/app/controllers/concerns/blacklight/token_based_user.rb +6 -10
- data/app/helpers/blacklight/blacklight_helper_behavior.rb +32 -118
- data/app/helpers/blacklight/catalog_helper_behavior.rb +94 -88
- data/app/helpers/blacklight/component_helper_behavior.rb +19 -19
- data/app/helpers/blacklight/configuration_helper_behavior.rb +25 -54
- data/app/helpers/blacklight/facets_helper_behavior.rb +40 -39
- data/app/helpers/blacklight/hash_as_hidden_fields_helper_behavior.rb +9 -11
- data/app/helpers/blacklight/icon_helper_behavior.rb +16 -0
- data/app/helpers/blacklight/layout_helper_behavior.rb +3 -10
- data/app/helpers/blacklight/render_constraints_helper_behavior.rb +6 -6
- data/app/helpers/blacklight/render_partials_helper_behavior.rb +195 -0
- data/app/helpers/blacklight/search_history_constraints_helper_behavior.rb +18 -11
- data/app/helpers/blacklight/suggest_helper_behavior.rb +1 -0
- data/app/helpers/blacklight/url_helper_behavior.rb +21 -27
- data/app/{assets/javascripts → javascript}/blacklight/autocomplete.js +3 -2
- data/app/javascript/blacklight/autofocus.js +20 -0
- data/app/javascript/blacklight/bookmark_toggle.js +25 -0
- data/app/javascript/blacklight/checkbox_submit.js +133 -0
- data/app/{assets/javascripts → javascript}/blacklight/collapsable.js +1 -1
- data/app/javascript/blacklight/core.js +39 -0
- data/app/{assets/javascripts → javascript}/blacklight/facet_load.js +6 -6
- data/app/{assets/javascripts/blacklight/ajax_modal.js → javascript/blacklight/modal.js} +63 -63
- data/app/{assets/javascripts → javascript}/blacklight/search_context.js +10 -2
- data/app/models/blacklight/facet_paginator.rb +3 -3
- data/app/models/blacklight/icon.rb +53 -0
- data/app/models/blacklight/solr/facet_paginator.rb +3 -3
- data/app/models/blacklight/suggest_search.rb +15 -4
- data/app/models/bookmark.rb +4 -9
- data/app/models/concerns/blacklight/configurable.rb +13 -13
- data/app/models/concerns/blacklight/document/active_model_shim.rb +8 -11
- data/app/models/concerns/blacklight/document/cache_key.rb +1 -1
- data/app/models/concerns/blacklight/document/dublin_core.rb +2 -2
- data/app/models/concerns/blacklight/document/email.rb +1 -1
- data/app/models/concerns/blacklight/document/extensions.rb +5 -5
- data/app/models/concerns/blacklight/document/semantic_fields.rb +9 -9
- data/app/models/concerns/blacklight/document/sms.rb +1 -1
- data/app/models/concerns/blacklight/document.rb +8 -42
- data/app/models/concerns/blacklight/solr/document.rb +7 -8
- data/app/models/concerns/blacklight/suggest/response.rb +3 -5
- data/app/models/concerns/blacklight/user.rb +6 -6
- data/app/models/record_mailer.rb +5 -6
- data/app/models/search.rb +5 -9
- data/app/presenters/blacklight/field_presenter.rb +5 -5
- data/app/presenters/blacklight/index_presenter.rb +34 -71
- data/app/presenters/blacklight/json_presenter.rb +7 -4
- data/app/presenters/blacklight/link_alternate_presenter.rb +1 -1
- data/app/presenters/blacklight/rendering/abstract_step.rb +5 -5
- data/app/presenters/blacklight/rendering/helper_method.rb +8 -8
- data/app/presenters/blacklight/rendering/join.rb +3 -3
- data/app/presenters/blacklight/rendering/link_to_facet.rb +19 -19
- data/app/presenters/blacklight/rendering/microdata.rb +3 -3
- data/app/presenters/blacklight/rendering/pipeline.rb +5 -5
- data/app/presenters/blacklight/search_bar_presenter.rb +37 -0
- data/app/presenters/blacklight/show_presenter.rb +20 -69
- data/app/presenters/blacklight/thumbnail_presenter.rb +72 -0
- data/app/services/blacklight/document_factory.rb +11 -0
- data/app/services/blacklight/field_retriever.rb +24 -24
- data/app/services/blacklight/search_service.rb +154 -0
- data/app/views/blacklight/nav/_bookmark.html.erb +2 -2
- data/app/views/blacklight/nav/_search_history.html.erb +1 -1
- data/app/views/bookmarks/_tools.html.erb +2 -2
- data/app/views/bookmarks/index.html.erb +2 -2
- data/app/views/catalog/_bookmark_control.html.erb +26 -10
- data/app/views/catalog/_citation.html.erb +18 -23
- data/app/views/catalog/_constraints.html.erb +5 -8
- data/app/views/catalog/_constraints_element.html.erb +6 -6
- data/app/views/catalog/{_document_default.atom.builder → _document.atom.builder} +2 -2
- data/app/views/catalog/_document.html.erb +5 -3
- data/app/views/catalog/{_document_default.rss.builder → _document.rss.builder} +0 -0
- data/app/views/catalog/_document_action.html.erb +2 -1
- data/app/views/catalog/_email_form.html.erb +8 -4
- data/app/views/catalog/_facet_index_navigation.html.erb +3 -3
- data/app/views/catalog/_facet_layout.html.erb +5 -7
- data/app/views/catalog/_facet_limit.html.erb +3 -2
- data/app/views/catalog/_facet_pagination.html.erb +10 -10
- data/app/views/catalog/_facet_pivot.html.erb +2 -2
- data/app/views/catalog/_facets.html.erb +8 -12
- data/app/views/catalog/{_group_default.html.erb → _group.html.erb} +0 -0
- data/app/views/catalog/_home_text.html.erb +32 -36
- data/app/views/catalog/_index.html.erb +12 -0
- data/app/views/catalog/{_index_header_default.html.erb → _index_header.html.erb} +2 -2
- data/app/views/catalog/_per_page_widget.html.erb +6 -7
- data/app/views/catalog/_previous_next_doc.html.erb +6 -14
- data/app/views/catalog/_search_form.html.erb +12 -8
- data/app/views/catalog/_search_header.html.erb +0 -3
- data/app/views/catalog/_search_results.html.erb +4 -0
- data/app/views/catalog/_show.html.erb +10 -0
- data/app/views/catalog/{_show_header_default.html.erb → _show_header.html.erb} +0 -0
- data/app/views/catalog/_show_main_content.html.erb +4 -4
- data/app/views/catalog/_show_sidebar.html.erb +3 -3
- data/app/views/catalog/_show_tools.html.erb +9 -11
- data/app/views/catalog/_sms_form.html.erb +8 -4
- data/app/views/catalog/_sort_and_per_page.html.erb +3 -3
- data/app/views/catalog/_sort_widget.html.erb +7 -7
- data/app/views/catalog/_thumbnail.html.erb +5 -0
- data/app/views/catalog/_view_type_group.html.erb +2 -2
- data/app/views/catalog/citation.html.erb +1 -1
- data/app/views/catalog/citation.js.erb +9 -1
- data/app/views/catalog/email.html.erb +5 -5
- data/app/views/catalog/email_success.html.erb +11 -9
- data/app/views/catalog/facet.html.erb +5 -6
- data/app/views/catalog/index.atom.builder +10 -15
- data/app/views/catalog/index.html.erb +9 -11
- data/app/views/catalog/index.json.jbuilder +65 -3
- data/app/views/catalog/index.rss.builder +5 -5
- data/app/views/catalog/opensearch.xml.builder +10 -10
- data/app/views/catalog/show.html.erb +11 -6
- data/app/views/catalog/sms.html.erb +2 -3
- data/app/views/catalog/sms_success.html.erb +11 -10
- data/app/views/kaminari/blacklight/_first_page.html.erb +2 -2
- data/app/views/kaminari/blacklight/_gap.html.erb +2 -2
- data/app/views/kaminari/blacklight/_last_page.html.erb +2 -2
- data/app/views/kaminari/blacklight/_next_page.html.erb +4 -4
- data/app/views/kaminari/blacklight/_page.html.erb +3 -3
- data/app/views/kaminari/blacklight/_prev_page.html.erb +4 -4
- data/app/views/kaminari/blacklight_compact/_paginator.html.erb +4 -4
- data/app/views/layouts/blacklight/base.html.erb +43 -0
- data/app/views/layouts/blacklight.html.erb +14 -41
- data/app/views/layouts/catalog_result.html.erb +11 -0
- data/app/views/search_history/index.html.erb +16 -21
- data/app/views/{_flash_msg.html.erb → shared/_flash_msg.html.erb} +0 -0
- data/app/views/shared/_header_navbar.html.erb +8 -13
- data/app/views/shared/_modal.html.erb +6 -0
- data/app/views/shared/_user_util_links.html.erb +22 -0
- data/blacklight.gemspec +10 -11
- data/config/locales/blacklight.de.yml +56 -86
- data/config/locales/blacklight.en.yml +1 -27
- data/config/locales/blacklight.es.yml +0 -30
- data/config/locales/blacklight.fr.yml +0 -30
- data/config/locales/blacklight.hu.yml +210 -0
- data/config/locales/blacklight.it.yml +0 -30
- data/config/locales/blacklight.nl.yml +210 -0
- data/config/locales/blacklight.pt-BR.yml +6 -32
- data/config/locales/blacklight.sq.yml +1 -28
- data/config/locales/blacklight.zh.yml +0 -25
- data/config/routes.rb +3 -10
- data/db/migrate/20140202020202_create_bookmarks.rb +0 -1
- data/db/migrate/20140320000000_add_polymorphic_type_to_bookmarks.rb +1 -1
- data/lib/blacklight/abstract_repository.rb +9 -21
- data/lib/blacklight/configuration/context.rb +1 -1
- data/lib/blacklight/configuration/facet_field.rb +16 -9
- data/lib/blacklight/configuration/field.rb +32 -3
- data/lib/blacklight/configuration/fields.rb +41 -48
- data/lib/blacklight/configuration/search_field.rb +2 -2
- data/lib/blacklight/configuration/sort_field.rb +2 -2
- data/lib/blacklight/configuration/view_config.rb +4 -0
- data/lib/blacklight/configuration.rb +82 -89
- data/lib/blacklight/engine.rb +5 -11
- data/lib/blacklight/exceptions.rb +4 -7
- data/lib/blacklight/nested_open_struct_with_hash_access.rb +107 -0
- data/lib/blacklight/open_struct_with_hash_access.rb +49 -0
- data/lib/blacklight/parameters.rb +1 -1
- data/lib/blacklight/routes/searchable.rb +1 -0
- data/lib/blacklight/search_builder.rb +26 -35
- data/lib/blacklight/search_state.rb +8 -8
- data/lib/blacklight/solr/repository.rb +3 -36
- data/lib/blacklight/solr/request.rb +1 -1
- data/lib/blacklight/solr/response/facets.rb +29 -31
- data/lib/blacklight/solr/response/group.rb +3 -3
- data/lib/blacklight/solr/response/group_response.rb +1 -1
- data/lib/blacklight/solr/response/more_like_this.rb +2 -2
- data/lib/blacklight/solr/response/response.rb +2 -2
- data/lib/blacklight/solr/response/spelling.rb +3 -3
- data/lib/blacklight/solr/response.rb +29 -30
- data/lib/blacklight/solr/search_builder_behavior.rb +25 -29
- data/lib/blacklight/version.rb +1 -1
- data/lib/blacklight.rb +4 -5
- data/lib/generators/blacklight/assets_generator.rb +8 -8
- data/lib/generators/blacklight/controller_generator.rb +4 -5
- data/lib/generators/blacklight/document_generator.rb +1 -1
- data/lib/generators/blacklight/install_generator.rb +18 -21
- data/lib/generators/blacklight/search_builder_generator.rb +1 -1
- data/lib/generators/blacklight/{solr5_generator.rb → solr_generator.rb} +4 -6
- data/lib/generators/blacklight/templates/.solr_wrapper.yml +5 -0
- data/lib/generators/blacklight/templates/blacklight.scss +0 -2
- data/lib/generators/blacklight/templates/catalog_controller.rb +52 -51
- data/{solr → lib/generators/blacklight/templates/solr}/conf/_rest_managed.json +0 -0
- data/{solr → lib/generators/blacklight/templates/solr}/conf/admin-extra.html +0 -0
- data/{solr → lib/generators/blacklight/templates/solr}/conf/elevate.xml +0 -0
- data/{solr → lib/generators/blacklight/templates/solr}/conf/mapping-ISOLatin1Accent.txt +0 -0
- data/{solr → lib/generators/blacklight/templates/solr}/conf/protwords.txt +0 -0
- data/lib/generators/blacklight/templates/solr/conf/schema.xml +390 -0
- data/{solr → lib/generators/blacklight/templates/solr}/conf/scripts.conf +0 -0
- data/lib/generators/blacklight/templates/solr/conf/solrconfig.xml +195 -0
- data/{solr → lib/generators/blacklight/templates/solr}/conf/spellings.txt +0 -0
- data/{solr → lib/generators/blacklight/templates/solr}/conf/stopwords.txt +0 -0
- data/{solr → lib/generators/blacklight/templates/solr}/conf/stopwords_en.txt +0 -0
- data/{solr → lib/generators/blacklight/templates/solr}/conf/synonyms.txt +0 -0
- data/{solr → lib/generators/blacklight/templates/solr}/conf/xslt/example.xsl +0 -0
- data/{solr → lib/generators/blacklight/templates/solr}/conf/xslt/example_atom.xsl +0 -0
- data/{solr → lib/generators/blacklight/templates/solr}/conf/xslt/example_rss.xsl +0 -0
- data/{solr → lib/generators/blacklight/templates/solr}/conf/xslt/luke.xsl +0 -0
- data/lib/generators/blacklight/test_support_generator.rb +10 -10
- data/lib/generators/blacklight/user_generator.rb +3 -6
- data/lib/railties/blacklight.rake +19 -14
- data/package-lock.json +2057 -0
- data/package.json +28 -0
- data/spec/controllers/alternate_controller_spec.rb +1 -1
- data/spec/controllers/application_controller_spec.rb +1 -1
- data/spec/controllers/blacklight/base_spec.rb +1 -1
- data/spec/controllers/blacklight/catalog/component_configuration_spec.rb +11 -7
- data/spec/controllers/blacklight/facet_spec.rb +1 -1
- data/spec/controllers/blacklight/search_fields_spec.rb +1 -13
- data/spec/controllers/bookmarks_controller_spec.rb +1 -36
- data/spec/controllers/catalog_controller_spec.rb +153 -53
- data/spec/controllers/search_history_controller_spec.rb +2 -2
- data/spec/features/alternate_controller_spec.rb +1 -1
- data/spec/features/autocomplete_spec.rb +2 -2
- data/spec/features/bookmarks_spec.rb +10 -10
- data/spec/features/did_you_mean_spec.rb +3 -9
- data/spec/features/facets_spec.rb +11 -11
- data/spec/features/record_view_spec.rb +1 -6
- data/spec/features/search_context_spec.rb +2 -2
- data/spec/features/search_filters_spec.rb +41 -41
- data/spec/features/search_formats_spec.rb +1 -1
- data/spec/features/search_history_spec.rb +1 -26
- data/spec/features/search_pagination_spec.rb +1 -1
- data/spec/features/search_results_spec.rb +3 -4
- data/spec/features/search_sort_spec.rb +2 -2
- data/spec/features/search_spec.rb +5 -10
- data/{solr → spec/fixtures}/sample_solr_documents.yml +688 -688
- data/spec/helpers/{configuration_helper_spec.rb → blacklight/configuration_helper_behavior_spec.rb} +70 -65
- data/spec/helpers/{facets_helper_spec.rb → blacklight/facets_helper_behavior_spec.rb} +7 -8
- data/spec/helpers/{hash_as_hidden_fields_spec.rb → blacklight/hash_as_hidden_fields_behavior_spec.rb} +1 -1
- data/spec/helpers/blacklight/icon_helper_behavior_spec.rb +8 -0
- data/spec/helpers/{layout_helper_spec.rb → blacklight/layout_helper_behavior_spec.rb} +5 -15
- data/spec/helpers/{render_constraints_helper_spec.rb → blacklight/render_constraints_helper_behavior_spec.rb} +2 -3
- data/spec/helpers/blacklight/render_partials_helper_behavior_spec.rb +80 -0
- data/spec/helpers/{search_history_constraints_helper_spec.rb → blacklight/search_history_constraints_helper_behavior_spec.rb} +9 -9
- data/spec/helpers/{suggest_helper_spec.rb → blacklight/suggest_helper_behavior_spec.rb} +4 -2
- data/spec/helpers/{url_helper_spec.rb → blacklight/url_helper_behavior_spec.rb} +11 -15
- data/spec/helpers/blacklight_helper_spec.rb +36 -141
- data/spec/helpers/catalog_helper_spec.rb +37 -56
- data/spec/integration/generators/blacklight/{solr5_generator_spec.rb → solr_generator_spec.rb} +3 -3
- data/spec/lib/blacklight/configuration/facet_field_spec.rb +11 -0
- data/spec/lib/blacklight/configuration/field_spec.rb +12 -0
- data/spec/lib/blacklight/nested_open_struct_with_hash_access_spec.rb +17 -0
- data/spec/lib/blacklight/open_struct_with_hash_access_spec.rb +153 -0
- data/spec/lib/blacklight/parameters_spec.rb +1 -1
- data/spec/lib/blacklight/search_state_spec.rb +2 -2
- data/spec/lib/blacklight_spec.rb +1 -1
- data/spec/lib/tasks/blacklight_task_spec.rb +1 -1
- data/spec/models/blacklight/configurable_spec.rb +15 -16
- data/spec/models/blacklight/configuration/context_spec.rb +1 -1
- data/spec/models/blacklight/configuration_spec.rb +146 -135
- data/spec/models/blacklight/document/active_model_shim_spec.rb +11 -1
- data/spec/models/blacklight/document/cache_key_spec.rb +1 -1
- data/spec/models/blacklight/document/dublin_core_spec.rb +5 -5
- data/spec/models/blacklight/document/email_spec.rb +3 -3
- data/spec/models/blacklight/document/sms_spec.rb +3 -3
- data/spec/models/blacklight/document_spec.rb +3 -16
- data/spec/models/blacklight/facet_paginator_spec.rb +1 -1
- data/spec/models/blacklight/icon_spec.rb +34 -0
- data/spec/models/blacklight/search_builder_spec.rb +33 -27
- data/spec/models/blacklight/solr/document_spec.rb +18 -7
- data/spec/models/blacklight/solr/facet_paginator_spec.rb +1 -1
- data/spec/models/blacklight/solr/repository_spec.rb +32 -27
- data/spec/models/blacklight/solr/request_spec.rb +1 -1
- data/spec/models/blacklight/solr/response/facets_spec.rb +1 -1
- data/spec/models/blacklight/solr/response/group_response_spec.rb +1 -1
- data/spec/models/blacklight/solr/response/group_spec.rb +1 -1
- data/spec/models/blacklight/solr/response_spec.rb +9 -6
- data/spec/models/blacklight/solr/search_builder_spec.rb +35 -48
- data/spec/models/blacklight/suggest/response_spec.rb +4 -5
- data/spec/models/blacklight/suggest_search_spec.rb +14 -7
- data/spec/models/blacklight/user_spec.rb +1 -1
- data/spec/models/bookmark_spec.rb +1 -1
- data/spec/models/record_mailer_spec.rb +2 -2
- data/spec/models/search_spec.rb +15 -36
- data/spec/models/solr_document_spec.rb +3 -3
- data/spec/presenters/blacklight/search_bar_presenter_spec.rb +72 -0
- data/spec/presenters/index_presenter_spec.rb +70 -143
- data/spec/presenters/pipeline_spec.rb +4 -4
- data/spec/presenters/show_presenter_spec.rb +83 -145
- data/spec/presenters/thumbnail_presenter_spec.rb +171 -0
- data/spec/routing/catalog_routing_spec.rb +1 -32
- data/spec/services/blacklight/search_service_spec.rb +446 -0
- data/spec/spec_helper.rb +22 -9
- data/spec/test_app_templates/Gemfile.extra +2 -5
- data/spec/test_app_templates/lib/generators/test_app_generator.rb +1 -1
- data/spec/views/catalog/_constraints.html.erb_spec.rb +1 -3
- data/spec/views/catalog/_constraints_element.html.erb_spec.rb +8 -8
- data/spec/views/catalog/_document.html.erb_spec.rb +7 -7
- data/spec/views/catalog/_document_list.html.erb_spec.rb +1 -1
- data/spec/views/catalog/_facet_index_navigation.html.erb_spec.rb +1 -1
- data/spec/views/catalog/_facet_layout.html.erb_spec.rb +6 -6
- data/spec/views/catalog/_facets.html.erb_spec.rb +2 -2
- data/spec/views/catalog/{_index_default.erb_spec.rb → _index.html.erb_spec.rb} +1 -1
- data/spec/views/catalog/{_index_header_default.html.erb_spec.rb → _index_header.html.erb_spec.rb} +4 -4
- data/spec/views/catalog/_paginate_compact.html.erb_spec.rb +4 -27
- data/spec/views/catalog/_search_header.erb_spec.rb +1 -3
- data/spec/views/catalog/{_show_default.erb_spec.rb → _show.html.erb_spec.rb} +1 -1
- data/spec/views/catalog/_show_sidebar.erb_spec.rb +3 -3
- data/spec/views/catalog/_show_tools.html.erb_spec.rb +3 -3
- data/spec/views/catalog/_sort_and_per_page.html.erb_spec.rb +1 -1
- data/spec/views/catalog/{_thumbnail_default.erb_spec.rb → _thumbnail.html.erb_spec.rb} +3 -3
- data/spec/views/catalog/_view_type_group.html.erb_spec.rb +5 -1
- data/spec/views/catalog/email_success.html.erb_spec.rb +9 -0
- data/spec/views/catalog/facet.html.erb_spec.rb +1 -1
- data/spec/views/catalog/facet.json.jbuilder_spec.rb +1 -1
- data/spec/views/catalog/index.atom.builder_spec.rb +2 -2
- data/spec/views/catalog/index.html.erb_spec.rb +4 -7
- data/spec/views/catalog/index.json.jbuilder_spec.rb +66 -21
- data/spec/views/catalog/opensearch.xml.builder_spec.rb +1 -1
- data/spec/views/catalog/show.html.erb_spec.rb +2 -2
- data/spec/views/catalog/sms_success.html.erb_spec.rb +9 -0
- data/spec/views/{_user_util_links.html.erb_spec.rb → shared/_user_util_links.html.erb_spec.rb} +4 -4
- data/tasks/blacklight.rake +28 -47
- data/template.demo.rb +1 -11
- metadata +172 -196
- data/.docker/app/Dockerfile +0 -28
- data/.docker/app/entrypoint.sh +0 -6
- data/.dockerignore +0 -3
- data/.env +0 -5
- data/.github/workflows/ruby.yml +0 -61
- data/app/assets/javascripts/blacklight/autofocus.js +0 -16
- data/app/assets/javascripts/blacklight/bookmark_toggle.js +0 -23
- data/app/assets/javascripts/blacklight/checkbox_submit.js +0 -139
- data/app/assets/javascripts/blacklight/core.js +0 -30
- data/app/controllers/concerns/blacklight/request_builders.rb +0 -77
- data/app/controllers/concerns/blacklight/saved_searches.rb +0 -70
- data/app/controllers/concerns/blacklight/search_helper.rb +0 -161
- data/app/controllers/concerns/blacklight/suggest.rb +0 -25
- data/app/controllers/saved_searches_controller.rb +0 -4
- data/app/controllers/suggest_controller.rb +0 -4
- data/app/helpers/blacklight/deprecated_url_helper_behavior.rb +0 -57
- data/app/helpers/blacklight/render_partials_helper.rb +0 -205
- data/app/helpers/blacklight_configuration_helper.rb +0 -4
- data/app/helpers/blacklight_url_helper.rb +0 -4
- data/app/helpers/component_helper.rb +0 -4
- data/app/helpers/facets_helper.rb +0 -4
- data/app/helpers/hash_as_hidden_fields_helper.rb +0 -4
- data/app/helpers/layout_helper.rb +0 -4
- data/app/helpers/render_constraints_helper.rb +0 -4
- data/app/helpers/search_history_constraints_helper.rb +0 -4
- data/app/helpers/suggest_helper.rb +0 -4
- data/app/models/concerns/blacklight/solr/document/more_like_this.rb +0 -6
- data/app/presenters/blacklight/document_presenter.rb +0 -153
- data/app/services/blacklight/search_params_yaml_coder.rb +0 -48
- data/app/views/_user_util_links.html.erb +0 -26
- data/app/views/blacklight/nav/_saved_searches.html.erb +0 -1
- data/app/views/catalog/_index_default.html.erb +0 -12
- data/app/views/catalog/_show_default.html.erb +0 -10
- data/app/views/catalog/_thumbnail_default.html.erb +0 -5
- data/app/views/saved_searches/index.html.erb +0 -32
- data/app/views/shared/_ajax_modal.html.erb +0 -6
- data/docker-compose.yml +0 -38
- data/lib/blacklight/utils.rb +0 -183
- data/lib/generators/blacklight/solr4_generator.rb +0 -31
- data/solr/conf/schema.xml +0 -627
- data/solr/conf/solrconfig.xml +0 -411
- data/spec/controllers/blacklight/search_helper_spec.rb +0 -489
- data/spec/controllers/saved_searches_controller_spec.rb +0 -32
- data/spec/controllers/suggest_controller_spec.rb +0 -17
- data/spec/features/saved_searches_spec.rb +0 -47
- data/spec/helpers/deprecated_url_helper_behavior_spec.rb +0 -101
- data/spec/lib/blacklight/utils_spec.rb +0 -167
- data/spec/models/blacklight/solr/document/more_like_this_spec.rb +0 -18
- data/spec/presenters/document_presenter_spec.rb +0 -438
- data/spec/support/backport_test.rb +0 -14
@@ -4,31 +4,28 @@ module Blacklight
|
|
4
4
|
# Blacklight::Configuration holds the configuration for a Blacklight::Controller, including
|
5
5
|
# fields to display, facets to show, sort options, and search fields.
|
6
6
|
class Configuration < OpenStructWithHashAccess
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
require_dependency 'blacklight/configuration/sort_field'
|
7
|
+
extend ActiveSupport::Autoload
|
8
|
+
eager_autoload do
|
9
|
+
autoload :Context
|
10
|
+
autoload :ViewConfig
|
11
|
+
autoload :ToolConfig
|
12
|
+
autoload :Fields
|
13
|
+
autoload :Field
|
14
|
+
autoload :NullField
|
15
|
+
autoload :SearchField
|
16
|
+
autoload :FacetField
|
17
|
+
autoload :SortField
|
18
|
+
end
|
19
|
+
|
21
20
|
include Fields
|
22
21
|
|
23
|
-
# Set up Blacklight::Configuration.default_values to contain
|
24
|
-
# the basic, required Blacklight fields
|
22
|
+
# Set up Blacklight::Configuration.default_values to contain the basic, required Blacklight fields
|
25
23
|
class << self
|
24
|
+
# rubocop:disable Metrics/MethodLength
|
26
25
|
def default_values
|
27
26
|
@default_values ||= begin
|
28
27
|
{
|
29
|
-
##
|
30
28
|
# === Search request configuration
|
31
|
-
##
|
32
29
|
# HTTP method to use when making requests to solr; valid
|
33
30
|
# values are :get and :post.
|
34
31
|
http_method: :get,
|
@@ -38,26 +35,14 @@ module Blacklight
|
|
38
35
|
default_solr_params: {},
|
39
36
|
##
|
40
37
|
# === Single document request configuration
|
41
|
-
##
|
42
38
|
# The solr request handler to use when requesting only a single document
|
43
|
-
document_solr_request_handler:
|
44
|
-
#
|
45
|
-
document_solr_path:
|
46
|
-
document_unique_id_param: :
|
39
|
+
document_solr_request_handler: nil,
|
40
|
+
# The path to send single document requests to solr
|
41
|
+
document_solr_path: 'get',
|
42
|
+
document_unique_id_param: :ids,
|
47
43
|
# Default values of parameters to send when requesting a single document
|
48
|
-
default_document_solr_params: {
|
49
|
-
## Blacklight provides these settings in the /document request handler
|
50
|
-
## by default, we just ask for all fields.
|
51
|
-
#fl: '*',
|
52
|
-
## this is a fancy way to say "find the document by id using
|
53
|
-
## the value in the id query parameter"
|
54
|
-
#q: "{!term f=#{unique_key} v=$id}",
|
55
|
-
## disable features we don't need
|
56
|
-
#facet: false,
|
57
|
-
#rows: 1
|
58
|
-
},
|
44
|
+
default_document_solr_params: {},
|
59
45
|
document_pagination_params: {},
|
60
|
-
fetch_many_document_params: nil,
|
61
46
|
##
|
62
47
|
# == Response models
|
63
48
|
## Class for sending and receiving requests from a search index
|
@@ -68,16 +53,13 @@ module Blacklight
|
|
68
53
|
response_model: nil,
|
69
54
|
# the model to use for each response document
|
70
55
|
document_model: nil,
|
71
|
-
# document presenter class used by helpers and views
|
72
|
-
document_presenter_class: nil, # deprecated
|
73
56
|
# Class for paginating long lists of facet fields
|
74
57
|
facet_paginator_class: nil,
|
75
58
|
# repository connection configuration
|
76
59
|
connection_config: nil,
|
77
60
|
##
|
78
61
|
# == Blacklight view configuration
|
79
|
-
|
80
|
-
navbar: OpenStructWithHashAccess.new(partials: { }),
|
62
|
+
navbar: OpenStructWithHashAccess.new(partials: {}),
|
81
63
|
# General configuration for all views
|
82
64
|
index: ViewConfig::Index.new(
|
83
65
|
# document presenter class used by helpers and views
|
@@ -99,10 +81,9 @@ module Blacklight
|
|
99
81
|
show: ViewConfig::Show.new(
|
100
82
|
# document presenter class used by helpers and views
|
101
83
|
document_presenter_class: nil,
|
102
|
-
#
|
103
|
-
#
|
104
|
-
#
|
105
|
-
# current controller.
|
84
|
+
# Default route parameters for 'show' requests.
|
85
|
+
# Set this to a hash with additional arguments to merge into the route,
|
86
|
+
# or set `controller: :current` to route to the current controller.
|
106
87
|
route: nil,
|
107
88
|
# partials to render for each document(see #render_document_partials)
|
108
89
|
partials: [:show_header, :show],
|
@@ -110,17 +91,17 @@ module Blacklight
|
|
110
91
|
),
|
111
92
|
# Configurations for specific types of index views
|
112
93
|
view: NestedOpenStructWithHashAccess.new(ViewConfig,
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
94
|
+
list: {},
|
95
|
+
atom: {
|
96
|
+
if: false, # by default, atom should not show up as an alternative view
|
97
|
+
partials: [:document]
|
98
|
+
},
|
99
|
+
rss: {
|
100
|
+
if: false, # by default, rss should not show up as an alternative view
|
101
|
+
partials: [:document]
|
102
|
+
}),
|
122
103
|
#
|
123
|
-
# These fields are created and managed below by `
|
104
|
+
# These fields are created and managed below by `define_field_access`
|
124
105
|
# facet_fields
|
125
106
|
# index_fields
|
126
107
|
# show_fields
|
@@ -128,7 +109,6 @@ module Blacklight
|
|
128
109
|
# search_fields
|
129
110
|
##
|
130
111
|
# === Blacklight behavior configuration
|
131
|
-
##
|
132
112
|
# Maxiumum number of spelling suggestions to offer
|
133
113
|
spell_max: 5,
|
134
114
|
# Maximum number of results to show per page
|
@@ -142,10 +122,10 @@ module Blacklight
|
|
142
122
|
default_more_limit: 20,
|
143
123
|
# proc for determining whether the session is a crawler/bot
|
144
124
|
# ex.: crawler_detector: lambda { |req| req.env['HTTP_USER_AGENT'] =~ /bot/ }
|
145
|
-
crawler_detector: nil
|
146
|
-
autocomplete_suggester: 'mySuggester'
|
125
|
+
crawler_detector: nil
|
147
126
|
}
|
148
127
|
end
|
128
|
+
# rubocop:enable Metrics/MethodLength
|
149
129
|
end
|
150
130
|
end
|
151
131
|
|
@@ -179,6 +159,11 @@ module Blacklight
|
|
179
159
|
super || ::SolrDocument
|
180
160
|
end
|
181
161
|
|
162
|
+
# A class that builds documents
|
163
|
+
def document_factory
|
164
|
+
super || Blacklight::DocumentFactory
|
165
|
+
end
|
166
|
+
|
182
167
|
# only here to support alias_method
|
183
168
|
def document_model=(*args)
|
184
169
|
super
|
@@ -188,17 +173,6 @@ module Blacklight
|
|
188
173
|
super || Blacklight::Solr::Response
|
189
174
|
end
|
190
175
|
|
191
|
-
# @deprecated
|
192
|
-
def document_presenter_class
|
193
|
-
super || Blacklight::DocumentPresenter
|
194
|
-
end
|
195
|
-
|
196
|
-
# @deprecated
|
197
|
-
def document_presenter_class=(klass)
|
198
|
-
super
|
199
|
-
end
|
200
|
-
deprecation_deprecate :document_presenter_class= => "replaced by show.presenter_class and index.presenter_class"
|
201
|
-
|
202
176
|
def response_model=(*args)
|
203
177
|
super
|
204
178
|
end
|
@@ -207,6 +181,10 @@ module Blacklight
|
|
207
181
|
super || Blacklight::Solr::Repository
|
208
182
|
end
|
209
183
|
|
184
|
+
def repository
|
185
|
+
repository_class.new(self)
|
186
|
+
end
|
187
|
+
|
210
188
|
def connection_config
|
211
189
|
super || Blacklight.connection_config
|
212
190
|
end
|
@@ -236,16 +214,14 @@ module Blacklight
|
|
236
214
|
# Returns default search field, used for simpler display in history, etc.
|
237
215
|
# if not set, defaults to first defined search field
|
238
216
|
def default_search_field
|
239
|
-
field = super
|
240
|
-
field ||= search_fields.values.find { |f| f.default == true }
|
217
|
+
field = super || search_fields.values.find { |f| f.default == true }
|
241
218
|
field || search_fields.values.first
|
242
219
|
end
|
243
220
|
|
244
221
|
# Returns default sort field, used for simpler display in history, etc.
|
245
222
|
# if not set, defaults to first defined sort field
|
246
223
|
def default_sort_field
|
247
|
-
field = super
|
248
|
-
field ||= sort_fields.values.find { |f| f.default == true }
|
224
|
+
field = super || sort_fields.values.find { |f| f.default == true }
|
249
225
|
field || sort_fields.values.first
|
250
226
|
end
|
251
227
|
|
@@ -273,11 +249,10 @@ module Blacklight
|
|
273
249
|
if fields.empty?
|
274
250
|
self.add_facet_fields_to_solr_request = true
|
275
251
|
else
|
276
|
-
facet_fields.slice(*fields).
|
252
|
+
facet_fields.slice(*fields).each_value { |v| v.include_in_request = true }
|
277
253
|
end
|
278
254
|
end
|
279
255
|
|
280
|
-
##
|
281
256
|
# Add any configured facet fields to the default solr parameters hash
|
282
257
|
# @overload add_field_configuration_to_solr_request!
|
283
258
|
# add all index, show, and facet fields to the solr request
|
@@ -287,9 +262,9 @@ module Blacklight
|
|
287
262
|
if fields.empty?
|
288
263
|
self.add_field_configuration_to_solr_request = true
|
289
264
|
else
|
290
|
-
index_fields.slice(*fields).
|
291
|
-
show_fields.slice(*fields).
|
292
|
-
facet_fields.slice(*fields).
|
265
|
+
index_fields.slice(*fields).each_value { |v| v.include_in_request = true }
|
266
|
+
show_fields.slice(*fields).each_value { |v| v.include_in_request = true }
|
267
|
+
facet_fields.slice(*fields).each_value { |v| v.include_in_request = true }
|
293
268
|
end
|
294
269
|
end
|
295
270
|
|
@@ -306,17 +281,22 @@ module Blacklight
|
|
306
281
|
end
|
307
282
|
end
|
308
283
|
end
|
309
|
-
alias_method :inheritable_copy, :deep_copy
|
310
284
|
|
311
|
-
|
285
|
+
# builds a copy for the provided controller class
|
286
|
+
def build(klass)
|
287
|
+
deep_copy.tap do |conf|
|
288
|
+
conf.klass = klass
|
289
|
+
end
|
290
|
+
end
|
291
|
+
alias_method :inheritable_copy, :build
|
292
|
+
|
312
293
|
# Get a view configuration for the given view type
|
313
294
|
# including default values from the index configuration
|
295
|
+
# @param [Symbol,#to_sym] view_type
|
296
|
+
# @return [Blacklight::Configuration::ViewConfig]
|
314
297
|
def view_config(view_type)
|
315
|
-
|
316
|
-
|
317
|
-
else
|
318
|
-
self.index.merge view.fetch(view_type, {})
|
319
|
-
end
|
298
|
+
view_type = view_type.to_sym unless view_type.is_a? Symbol
|
299
|
+
index.merge(view_type == :show ? show : view.fetch(view_type, {}))
|
320
300
|
end
|
321
301
|
|
322
302
|
# YARD will include inline disabling as docs, cannot do multiline inside @!macro. AND this must be separate from doc block.
|
@@ -331,6 +311,7 @@ module Blacklight
|
|
331
311
|
def add_show_tools_partial(name, opts = {})
|
332
312
|
opts[:partial] ||= 'document_action'
|
333
313
|
add_action(show.document_actions, name, opts)
|
314
|
+
klass && ActionBuilder.new(klass, name, opts).build
|
334
315
|
end
|
335
316
|
# rubocop:enable Metrics/LineLength
|
336
317
|
|
@@ -352,13 +333,25 @@ module Blacklight
|
|
352
333
|
add_action(navbar.partials, name, opts)
|
353
334
|
end
|
354
335
|
|
336
|
+
##
|
337
|
+
# Add a section of config that only applies to documents with a matching display type
|
338
|
+
def for_display_type display_type, &block
|
339
|
+
self.fields_for_type ||= {}
|
340
|
+
fields_for_type[display_type] ||= self.class.new(&block)
|
341
|
+
end
|
342
|
+
|
343
|
+
def index_fields_for(document)
|
344
|
+
display_type = document.first(index.display_type_field)
|
345
|
+
for_display_type(display_type).index_fields.merge(index_fields)
|
346
|
+
end
|
347
|
+
|
355
348
|
private
|
356
349
|
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
350
|
+
def add_action(config_hash, name, opts)
|
351
|
+
config = Blacklight::Configuration::ToolConfig.new opts
|
352
|
+
config.name = name
|
353
|
+
yield(config) if block_given?
|
354
|
+
config_hash[name] = config
|
355
|
+
end
|
363
356
|
end
|
364
357
|
end
|
data/lib/blacklight/engine.rb
CHANGED
@@ -3,12 +3,9 @@ module Blacklight
|
|
3
3
|
class Engine < Rails::Engine
|
4
4
|
engine_name "blacklight"
|
5
5
|
|
6
|
-
require 'bootstrap-sass'
|
7
|
-
require 'twitter-typeahead-rails'
|
8
|
-
|
9
6
|
# BlacklightHelper is needed by all helpers, so we inject it
|
10
7
|
# into action view base here.
|
11
|
-
initializer 'blacklight.helpers' do
|
8
|
+
initializer 'blacklight.helpers' do
|
12
9
|
ActionView::Base.send :include, BlacklightHelper
|
13
10
|
end
|
14
11
|
|
@@ -28,8 +25,7 @@ module Blacklight
|
|
28
25
|
end
|
29
26
|
|
30
27
|
initializer "blacklight.assets.precompile" do |app|
|
31
|
-
|
32
|
-
app.config.assets.precompile += %w(favicon.ico) if defined? Sprockets
|
28
|
+
app.config.assets.precompile += %w(favicon.ico)
|
33
29
|
end
|
34
30
|
|
35
31
|
Blacklight::Engine.config.sms_mappings = {
|
@@ -43,14 +39,12 @@ module Blacklight
|
|
43
39
|
'Cricket' => 'mms.mycricket.com'
|
44
40
|
}
|
45
41
|
|
46
|
-
config.routes = OpenStruct.new
|
47
|
-
# Set identifier_constraint to enforce a format for the document identifiers
|
48
|
-
config.routes.identifier_constraint = /.+/
|
49
|
-
|
50
42
|
config.bookmarks_http_method = :post
|
51
43
|
|
52
44
|
config.email_regexp = defined?(Devise) ? Devise.email_regexp : /\A[^@\s]+@[^@\s]+\z/
|
53
45
|
|
54
|
-
|
46
|
+
config.action_dispatch.rescue_responses.merge!(
|
47
|
+
"Blacklight::Exceptions::RecordNotFound" => :not_found
|
48
|
+
)
|
55
49
|
end
|
56
50
|
end
|
@@ -4,13 +4,7 @@ module Blacklight
|
|
4
4
|
class AccessDenied < StandardError
|
5
5
|
end
|
6
6
|
|
7
|
-
|
8
|
-
# is not successful, we can raise this exception.
|
9
|
-
# Deprecated; this will be removed in Blacklight 6.0:
|
10
|
-
class InvalidSolrID < RuntimeError
|
11
|
-
end
|
12
|
-
# In Blacklight 6.0, this exception can subclass RuntimeError directly
|
13
|
-
class RecordNotFound < InvalidSolrID
|
7
|
+
class RecordNotFound < RuntimeError
|
14
8
|
end
|
15
9
|
|
16
10
|
class InvalidRequest < StandardError
|
@@ -20,5 +14,8 @@ module Blacklight
|
|
20
14
|
end
|
21
15
|
|
22
16
|
class ECONNREFUSED < ::Errno::ECONNREFUSED; end
|
17
|
+
|
18
|
+
class IconNotFound < StandardError
|
19
|
+
end
|
23
20
|
end
|
24
21
|
end
|
@@ -0,0 +1,107 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require 'ostruct'
|
3
|
+
module Blacklight
|
4
|
+
##
|
5
|
+
# An OpenStruct refinement that converts any hash-keys into
|
6
|
+
# additional instances of NestedOpenStructWithHashAccess
|
7
|
+
class NestedOpenStructWithHashAccess < OpenStructWithHashAccess
|
8
|
+
attr_reader :nested_class
|
9
|
+
delegate :default_proc=, to: :to_h
|
10
|
+
|
11
|
+
def initialize(klass, hash = {})
|
12
|
+
@nested_class = klass
|
13
|
+
value = hash.transform_values do |v|
|
14
|
+
if v.is_a? Hash
|
15
|
+
nested_class.new(v)
|
16
|
+
else
|
17
|
+
v
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
super value
|
22
|
+
set_default_proc!
|
23
|
+
end
|
24
|
+
|
25
|
+
##
|
26
|
+
# Add an new key to the object, with a default default
|
27
|
+
def << key
|
28
|
+
@table[key]
|
29
|
+
end
|
30
|
+
|
31
|
+
##
|
32
|
+
# Add a new key/value to the object; if it's a Hash, turn it
|
33
|
+
# into another NestedOpenStructWithHashAccess
|
34
|
+
def []=(key, value)
|
35
|
+
if value.is_a? Hash
|
36
|
+
send "#{key}=", nested_class.new(value)
|
37
|
+
else
|
38
|
+
super
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
##
|
43
|
+
# Before serializing, we need to reset the default proc
|
44
|
+
# so it can be serialized appropriately
|
45
|
+
def marshal_dump
|
46
|
+
h = to_h.dup
|
47
|
+
h.default = nil
|
48
|
+
|
49
|
+
[nested_class, h]
|
50
|
+
end
|
51
|
+
|
52
|
+
##
|
53
|
+
# After deserializing, we need to re-add the default proc
|
54
|
+
# to the internal hash
|
55
|
+
def marshal_load x
|
56
|
+
@nested_class = x.first
|
57
|
+
super x.last
|
58
|
+
set_default_proc!
|
59
|
+
end
|
60
|
+
|
61
|
+
def deep_dup
|
62
|
+
self.class.new nested_class, @table.deep_dup
|
63
|
+
end
|
64
|
+
|
65
|
+
def select *args, &block
|
66
|
+
self.class.new nested_class, to_h.select(*args, &block)
|
67
|
+
end
|
68
|
+
|
69
|
+
##
|
70
|
+
# Merge the values of this OpenStruct with another OpenStruct or Hash
|
71
|
+
# @param [Hash,#to_h] other_hash
|
72
|
+
# @return [OpenStructWithHashAccess] a new instance of an OpenStructWithHashAccess
|
73
|
+
def merge other_hash
|
74
|
+
self.class.new nested_class, to_h.merge((other_hash if other_hash.is_a? Hash) || other_hash.to_h)
|
75
|
+
end
|
76
|
+
|
77
|
+
##
|
78
|
+
# Merge the values of another OpenStruct or Hash into this object
|
79
|
+
# @param [Hash,#to_h] other_hash
|
80
|
+
# @return [OpenStructWithHashAccess] a new instance of an OpenStructWithHashAccess
|
81
|
+
def merge! other_hash
|
82
|
+
@table.merge!(nested_class, (other_hash if other_hash.is_a? Hash) || other_hash.to_h)
|
83
|
+
end
|
84
|
+
|
85
|
+
##
|
86
|
+
# Override #method_missing from OpenStruct to ensure the default_proc logic
|
87
|
+
# gets triggered.
|
88
|
+
def method_missing(mid, *args)
|
89
|
+
len = args.length
|
90
|
+
|
91
|
+
if len.zero?
|
92
|
+
new_ostruct_member(mid)
|
93
|
+
@table[mid]
|
94
|
+
else
|
95
|
+
super
|
96
|
+
end
|
97
|
+
end
|
98
|
+
|
99
|
+
private
|
100
|
+
|
101
|
+
def set_default_proc!
|
102
|
+
self.default_proc = lambda do |hash, key|
|
103
|
+
hash[key] = nested_class.new
|
104
|
+
end
|
105
|
+
end
|
106
|
+
end
|
107
|
+
end
|
@@ -0,0 +1,49 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require 'ostruct'
|
3
|
+
module Blacklight
|
4
|
+
##
|
5
|
+
# An OpenStruct that responds to common Hash methods
|
6
|
+
class OpenStructWithHashAccess < OpenStruct
|
7
|
+
delegate :keys, :each, :map, :has_key?, :key?, :include?, :empty?, :length, :delete, :delete_if, :keep_if, :clear, :reject!, :select!, :replace, :fetch, :to_json, :as_json, :any?, to: :to_h
|
8
|
+
|
9
|
+
##
|
10
|
+
# Expose the internal hash
|
11
|
+
# @return [Hash]
|
12
|
+
def to_h
|
13
|
+
@table
|
14
|
+
end
|
15
|
+
|
16
|
+
def select *args, &block
|
17
|
+
self.class.new to_h.select(*args, &block)
|
18
|
+
end
|
19
|
+
|
20
|
+
def sort_by *args, &block
|
21
|
+
self.class.new Hash[to_h.sort_by(*args, &block)]
|
22
|
+
end
|
23
|
+
|
24
|
+
def sort_by! *args, &block
|
25
|
+
replace Hash[to_h.sort_by(*args, &block)]
|
26
|
+
self
|
27
|
+
end
|
28
|
+
|
29
|
+
##
|
30
|
+
# Merge the values of this OpenStruct with another OpenStruct or Hash
|
31
|
+
# @param [Hash,#to_h] other_hash
|
32
|
+
# @return [OpenStructWithHashAccess] a new instance of an OpenStructWithHashAccess
|
33
|
+
def merge other_hash
|
34
|
+
self.class.new to_h.merge((other_hash if other_hash.is_a? Hash) || other_hash.to_h)
|
35
|
+
end
|
36
|
+
|
37
|
+
##
|
38
|
+
# Merge the values of another OpenStruct or Hash into this object
|
39
|
+
# @param [Hash,#to_h] other_hash
|
40
|
+
# @return [OpenStructWithHashAccess] a new instance of an OpenStructWithHashAccess
|
41
|
+
def merge! other_hash
|
42
|
+
@table.merge!((other_hash if other_hash.is_a? Hash) || other_hash.to_h)
|
43
|
+
end
|
44
|
+
|
45
|
+
def deep_dup
|
46
|
+
self.class.new @table.deep_dup
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
@@ -5,34 +5,27 @@ module Blacklight
|
|
5
5
|
# query parameters appropriate for search index. It does so by evaluating a
|
6
6
|
# chain of processing methods to populate a result hash (see {#to_hash}).
|
7
7
|
class SearchBuilder
|
8
|
-
extend Deprecation
|
9
8
|
class_attribute :default_processor_chain
|
10
9
|
self.default_processor_chain = []
|
11
10
|
|
12
11
|
attr_reader :processor_chain, :blacklight_params
|
13
12
|
|
14
|
-
|
15
13
|
# @overload initialize(scope)
|
16
|
-
# @param [Object] scope scope the scope where the filter methods reside in.
|
14
|
+
# @param [Object] scope scope the scope where the filter methods reside in.
|
17
15
|
# @overload initialize(processor_chain, scope)
|
18
16
|
# @param [List<Symbol>,TrueClass] processor_chain options a list of filter methods to run or true, to use the default methods
|
19
|
-
# @param [Object] scope
|
17
|
+
# @param [Object] scope the scope where the filter methods reside in.
|
20
18
|
def initialize(*options)
|
21
|
-
|
19
|
+
case options.size
|
22
20
|
when 1
|
23
|
-
|
21
|
+
@processor_chain = default_processor_chain.dup
|
22
|
+
@scope = options.first
|
24
23
|
when 2
|
25
|
-
|
26
|
-
Deprecation.warn Blacklight::SearchBuilder, "SearchBuilder#initialize now takes only one parameter, the scope. Passing `true' will be removed in Blacklight 7"
|
27
|
-
else
|
28
|
-
@processor_chain = options.first
|
29
|
-
end
|
30
|
-
options.last
|
24
|
+
@processor_chain, @scope = options
|
31
25
|
else
|
32
26
|
raise ArgumentError, "wrong number of arguments. (#{options.size} for 1..2)"
|
33
27
|
end
|
34
28
|
|
35
|
-
@processor_chain ||= default_processor_chain.dup
|
36
29
|
@blacklight_params = {}
|
37
30
|
@merged_params = {}
|
38
31
|
@reverse_merged_params = {}
|
@@ -116,10 +109,10 @@ module Blacklight
|
|
116
109
|
# @return [Blacklight::Solr::Response] the solr response object
|
117
110
|
def to_hash
|
118
111
|
return @params unless params_need_update?
|
119
|
-
@params = processed_parameters
|
120
|
-
reverse_merge(@reverse_merged_params)
|
121
|
-
merge(@merged_params)
|
122
|
-
tap {
|
112
|
+
@params = processed_parameters
|
113
|
+
.reverse_merge(@reverse_merged_params)
|
114
|
+
.merge(@merged_params)
|
115
|
+
.tap { clear_changes }
|
123
116
|
end
|
124
117
|
|
125
118
|
alias_method :query, :to_hash
|
@@ -197,7 +190,7 @@ module Blacklight
|
|
197
190
|
end
|
198
191
|
@rows ||= begin
|
199
192
|
# user-provided parameters should override any default row
|
200
|
-
r = [:rows, :per_page].map {|k| blacklight_params[k] }.reject(&:blank?).first
|
193
|
+
r = [:rows, :per_page].map { |k| blacklight_params[k] }.reject(&:blank?).first
|
201
194
|
r ||= blacklight_config.default_per_page
|
202
195
|
# ensure we don't excede the max page size
|
203
196
|
r.nil? ? nil : [r, blacklight_config.max_per_page].map(&:to_i).min
|
@@ -221,36 +214,34 @@ module Blacklight
|
|
221
214
|
@facet
|
222
215
|
end
|
223
216
|
|
217
|
+
# Decode the user provided 'sort' parameter into a sort string that can be
|
218
|
+
# passed to the search. This sanitizes the input by ensuring only
|
219
|
+
# configured search values are passed through to the search.
|
220
|
+
# @return [String] the field/fields to sort by
|
224
221
|
def sort
|
225
222
|
sort_field = if blacklight_params[:sort].blank?
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
field
|
234
|
-
|
235
|
-
else
|
236
|
-
# just pass the key through
|
237
|
-
blacklight_params[:sort]
|
238
|
-
end
|
239
|
-
|
240
|
-
field unless field.blank?
|
223
|
+
# no sort param provided, use default
|
224
|
+
blacklight_config.default_sort_field
|
225
|
+
else
|
226
|
+
# check for sort field key
|
227
|
+
blacklight_config.sort_fields[blacklight_params[:sort]]
|
228
|
+
end
|
229
|
+
return sort_field.sort if sort_field.present?
|
230
|
+
Blacklight.logger.warn "Invalid sort field: '#{blacklight_params[:sort]}' was provided."
|
231
|
+
nil
|
241
232
|
end
|
242
233
|
|
243
234
|
def search_field
|
244
235
|
blacklight_config.search_fields[blacklight_params[:search_field]]
|
245
236
|
end
|
246
237
|
|
247
|
-
|
238
|
+
private
|
248
239
|
|
249
240
|
def request
|
250
241
|
Blacklight::Solr::Request.new
|
251
242
|
end
|
252
243
|
|
253
|
-
def should_add_field_to_request?
|
244
|
+
def should_add_field_to_request? _field_name, field
|
254
245
|
field.include_in_request || (field.include_in_request.nil? && blacklight_config.add_field_configuration_to_solr_request)
|
255
246
|
end
|
256
247
|
|