-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #38 from rosiel/QueryEventHandler
Query alter done via an event handler for Search API Solr 4.3 deprecations.
- Loading branch information
Showing
3 changed files
with
47 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
services: | ||
Drupal\advanced_search\EventSubscriber\PostConvertedQueryEventSubscriber: | ||
tags: | ||
- { name: 'event_subscriber' } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<?php | ||
|
||
namespace Drupal\advanced_search\EventSubscriber; | ||
|
||
use Drupal\advanced_search\AdvancedSearchQuery; | ||
use Drupal\search_api_solr\Event\PostConvertedQueryEvent; | ||
use Drupal\search_api_solr\Event\SearchApiSolrEvents; | ||
use Symfony\Component\EventDispatcher\EventSubscriberInterface; | ||
|
||
/** | ||
* Subscribes to PostConvertedQueryEvents. | ||
* | ||
* @package Drupal\advanced_search\EventSubscriber | ||
*/ | ||
class PostConvertedQueryEventSubscriber implements EventSubscriberInterface { | ||
|
||
/** | ||
* {@inheritdoc} | ||
*/ | ||
public static function getSubscribedEvents() { | ||
$events[SearchAPISolrEvents::POST_CONVERT_QUERY][] = ['alter']; | ||
|
||
return $events; | ||
|
||
} | ||
|
||
/** | ||
* Alter the query. | ||
*/ | ||
public function alter(PostConvertedQueryEvent $event) { | ||
$search_api_query = $event->getSearchApiQuery(); | ||
$solarium_query = $event->getSolariumQuery(); | ||
|
||
// We must modify the query itself rather than the representation the | ||
// search_api presents as it is not possible to use the 'OR' operator | ||
// with it as it converts conditions into separate filter queries. | ||
// Additionally filter queries do not affect the score so are not | ||
// suitable for use in the advanced search queries. | ||
$advanced_search_query = new AdvancedSearchQuery(); | ||
$advanced_search_query->alterQuery(\Drupal::request(), $solarium_query, $search_api_query); | ||
} | ||
|
||
} |