Class CatalogTrackableSolrQueryContributor
- java.lang.Object
-
- com.broadleafcommerce.search.provider.solr.AbstractSolrQueryContributor
-
- com.broadleafcommerce.search.provider.solr.CatalogTrackableSolrQueryContributor
-
- All Implemented Interfaces:
SolrQueryContributor,org.springframework.core.Ordered
public class CatalogTrackableSolrQueryContributor extends AbstractSolrQueryContributor
Add query filters to narrow query results down to the most specific Catalog context provided.
-
-
Constructor Summary
Constructors Constructor Description CatalogTrackableSolrQueryContributor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidcontributeInternal(org.apache.solr.client.solrj.SolrQuery solrQuery, com.broadleafcommerce.search.api.domain.SearchRequest searchRequest, List<com.broadleafcommerce.search.api.domain.FieldDefinition> fieldDefinitions, org.springframework.data.domain.Pageable page, com.broadleafcommerce.search.core.service.SearchRequestProperties properties, String locale, com.broadleafcommerce.data.tracking.core.context.ContextInfo context)Customize the providedsolrQuerywith some additional behavior.booleancontributeOnTypeAhead()protected StringfilterOnNoCatalog()Create a filter for documents with no specified catalog.protected StringfilterOverriddenCatalogs(Set<String> catalogIds)Create a filter to exclude documents for which more specific versions exist for this catalog context.protected Set<String>getApplicationCatalogs(com.broadleafcommerce.data.tracking.core.context.ContextInfo context)Retrieve all catalogs visible from the current application.protected Set<String>getCatalogsForApplication(com.broadleafcommerce.data.tracking.core.tenant.domain.Application application, boolean isIncludePending)Retrieve all catalogs visible for the current application.protected Set<String>getForcedCatalogs(com.broadleafcommerce.data.tracking.core.context.ContextInfo context)Retrieve currently specified visible catalogs.protected booleanshouldContribute(org.apache.solr.client.solrj.SolrQuery solrQuery, com.broadleafcommerce.search.api.domain.SearchRequest searchRequest, org.springframework.data.domain.Pageable page, com.broadleafcommerce.search.core.service.SearchRequestProperties properties, com.broadleafcommerce.data.tracking.core.context.ContextInfo context)Determines if this contributor should run.-
Methods inherited from class com.broadleafcommerce.search.provider.solr.AbstractSolrQueryContributor
contribute
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.broadleafcommerce.search.provider.solr.SolrQueryContributor
getOrder, isTypeAheadRequest
-
-
-
-
Method Detail
-
contributeInternal
protected void contributeInternal(org.apache.solr.client.solrj.SolrQuery solrQuery, com.broadleafcommerce.search.api.domain.SearchRequest searchRequest, List<com.broadleafcommerce.search.api.domain.FieldDefinition> fieldDefinitions, org.springframework.data.domain.Pageable page, com.broadleafcommerce.search.core.service.SearchRequestProperties properties, @Nullable String locale, @Nullable com.broadleafcommerce.data.tracking.core.context.ContextInfo context)Description copied from class:AbstractSolrQueryContributorCustomize the providedsolrQuerywith some additional behavior.- Specified by:
contributeInternalin classAbstractSolrQueryContributor- Parameters:
solrQuery- The query to customizesearchRequest- The search query requestfieldDefinitions- The fields to perform the search onpage- Page information for page to retrieve for queryproperties- Additional properties for this querylocale- The locale of this searchcontext- The context information surrounding sandboxing/multitenant state
-
getForcedCatalogs
protected Set<String> getForcedCatalogs(com.broadleafcommerce.data.tracking.core.context.ContextInfo context)
Retrieve currently specified visible catalogs.- Parameters:
context- The context information surrounding sandboxing/multitenant state- Returns:
- Catalogs narrowed to only specified visible catalogs
-
getApplicationCatalogs
protected Set<String> getApplicationCatalogs(com.broadleafcommerce.data.tracking.core.context.ContextInfo context)
Retrieve all catalogs visible from the current application.- Parameters:
context- The context information surrounding sandboxing/multitenant state- Returns:
- Catalogs narrowed to all catalogs visible from the current application.
-
getCatalogsForApplication
protected Set<String> getCatalogsForApplication(com.broadleafcommerce.data.tracking.core.tenant.domain.Application application, boolean isIncludePending)
Retrieve all catalogs visible for the current application. Includes catalogs from inheritance lines, and optionally pending catalogs.- Parameters:
application- The application to retrieve visible catalogs fromisIncludePending- Should pending catalogs be retrieved- Returns:
- All catalogs visible for the application context
-
filterOnNoCatalog
protected String filterOnNoCatalog()
Create a filter for documents with no specified catalog.Note that the nested negative filter must contain a "*:* AND" as well. See https://stackoverflow.com/questions/7363819
- Returns:
- A filter for documents with no specified catalog.
-
filterOverriddenCatalogs
protected String filterOverriddenCatalogs(Set<String> catalogIds)
Create a filter to exclude documents for which more specific versions exist for this catalog context.- Parameters:
catalogIds- The IDs of the catalogs which are used for this context- Returns:
- Filter query to exclude less specific catalog documents
-
shouldContribute
protected boolean shouldContribute(org.apache.solr.client.solrj.SolrQuery solrQuery, com.broadleafcommerce.search.api.domain.SearchRequest searchRequest, org.springframework.data.domain.Pageable page, com.broadleafcommerce.search.core.service.SearchRequestProperties properties, @Nullable com.broadleafcommerce.data.tracking.core.context.ContextInfo context)Description copied from class:AbstractSolrQueryContributorDetermines if this contributor should run.- Specified by:
shouldContributein classAbstractSolrQueryContributor- Parameters:
solrQuery- The query to customizesearchRequest- The search query requestpage- Page information for page to retrieve for queryproperties- Additional properties for this query.context- The context information surrounding sandboxing/multitenant state- Returns:
- whether this contributor should run
-
contributeOnTypeAhead
public boolean contributeOnTypeAhead()
- Returns:
- Should this contributor be executed on TypeAhead requests?
-
-