class AutocompleteController in Search API Autocomplete 8
Provides a controller for autocompletion.
Hierarchy
- class \Drupal\Core\Controller\ControllerBase implements ContainerInjectionInterface uses LoggerChannelTrait, MessengerTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTrait
- class \Drupal\search_api_autocomplete\Controller\AutocompleteController implements ContainerInjectionInterface
Expanded class hierarchy of AutocompleteController
File
- src/
Controller/ AutocompleteController.php, line 19
Namespace
Drupal\search_api_autocomplete\ControllerView source
class AutocompleteController extends ControllerBase implements ContainerInjectionInterface {
/**
* The autocomplete helper service.
*
* @var \Drupal\search_api_autocomplete\Utility\AutocompleteHelperInterface
*/
protected $autocompleteHelper;
/**
* The renderer.
*
* @var \Drupal\Core\Render\RendererInterface
*/
protected $renderer;
/**
* The transliterator.
*
* @var \Drupal\Component\Transliteration\TransliterationInterface
*/
protected $transliterator;
/**
* Creates a new AutocompleteController instance.
*
* @param \Drupal\search_api_autocomplete\Utility\AutocompleteHelperInterface $autocomplete_helper
* The autocomplete helper service.
* @param \Drupal\Core\Render\RendererInterface $renderer
* The renderer.
* @param \Drupal\Component\Transliteration\TransliterationInterface $transliterator
* The transliterator.
*/
public function __construct(AutocompleteHelperInterface $autocomplete_helper, RendererInterface $renderer, TransliterationInterface $transliterator) {
$this->autocompleteHelper = $autocomplete_helper;
$this->renderer = $renderer;
$this->transliterator = $transliterator;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
return new static($container
->get('search_api_autocomplete.helper'), $container
->get('renderer'), $container
->get('transliteration'));
}
/**
* Page callback: Retrieves autocomplete suggestions.
*
* @param \Drupal\search_api_autocomplete\SearchInterface $search_api_autocomplete_search
* The search for which to retrieve autocomplete suggestions.
* @param \Symfony\Component\HttpFoundation\Request $request
* The request.
*
* @return \Symfony\Component\HttpFoundation\JsonResponse
* The autocompletion response.
*/
public function autocomplete(SearchInterface $search_api_autocomplete_search, Request $request) {
$matches = [];
$search = $search_api_autocomplete_search;
if (!$search
->status() || !$search
->hasValidIndex()) {
return new JsonResponse($matches);
}
try {
$keys = $request->query
->get('q');
$split_keys = $this->autocompleteHelper
->splitKeys($keys);
list($complete, $incomplete) = $split_keys;
$data = $request->query
->all();
unset($data['q']);
$query = $search
->createQuery($complete, $data);
if (!$query) {
return new JsonResponse($matches);
}
// Prepare the query.
$query
->setSearchId('search_api_autocomplete:' . $search
->id());
$query
->addTag('search_api_autocomplete');
// Get total limit and per-suggester limits.
$limit = $search
->getOption('limit');
$suggester_limits = $search
->getSuggesterLimits();
// Get all enabled suggesters, ordered by weight.
$suggesters = $search
->getSuggesters();
$suggester_weights = $search
->getSuggesterWeights();
$suggester_weights = array_intersect_key($suggester_weights, $suggesters);
$suggester_weights += array_fill_keys(array_keys($suggesters), 0);
asort($suggester_weights);
/** @var \Drupal\search_api_autocomplete\Suggestion\SuggestionInterface[] $suggestions */
$suggestions = [];
// Go through all enabled suggesters in order of increasing weight and
// add their suggestions (until the limit is reached).
foreach (array_keys($suggester_weights) as $suggester_id) {
// Clone the query in case the suggester makes any modifications.
$tmp_query = clone $query;
// Compute the applicable limit based on (remaining) total limit and
// the suggester-specific limit (if set).
if (isset($suggester_limits[$suggester_id])) {
$suggester_limit = min($limit, $suggester_limits[$suggester_id]);
}
else {
$suggester_limit = $limit;
}
$tmp_query
->range(0, $suggester_limit);
// Add suggestions in a loop so we're sure they're numerically
// indexed.
$new_suggestions = $suggesters[$suggester_id]
->getAutocompleteSuggestions($tmp_query, $incomplete, $keys);
foreach ($new_suggestions as $suggestion) {
$suggestions[] = $suggestion;
if (--$limit == 0) {
// If we've reached the limit, stop adding suggestions.
break 2;
}
}
}
// Allow other modules to alter the created suggestions.
$alter_params = [
'query' => $query,
'search' => $search,
'incomplete_key' => $incomplete,
'user_input' => $keys,
];
$this
->moduleHandler()
->alter('search_api_autocomplete_suggestions', $suggestions, $alter_params);
// Then, add the suggestions to the $matches return array in the form
// expected by Drupal's autocomplete Javascript.
$show_count = $search
->getOption('show_count');
foreach ($suggestions as $suggestion) {
// If "Display result count estimates" was disabled, remove the
// count from the suggestion.
if (!$show_count) {
$suggestion
->setResultsCount(NULL);
}
$build = $suggestion
->toRenderable();
if ($build) {
// Render the label.
try {
$label = $this->renderer
->render($build);
} catch (\Exception $e) {
watchdog_exception('search_api_autocomplete', $e, '%type while rendering an autocomplete suggestion: @message in %function (line %line of %file).');
continue;
}
// Decide what the action of the suggestion is – entering specific
// search terms or redirecting to a URL.
if ($suggestion
->getUrl()) {
// Generate an HTML-free version of the label to use as the value.
// Setting the label as the value here is necessary for proper
// accessibility via screen readers (which will otherwise read the
// URL).
$url = $suggestion
->getUrl()
->toString();
$trimmed_label = trim(strip_tags((string) $label)) ?: $url;
$matches[] = [
'value' => $trimmed_label,
'url' => $url,
'label' => $label,
];
}
else {
$matches[] = [
'value' => trim($suggestion
->getSuggestedKeys()),
'label' => $label,
];
}
}
}
} catch (SearchApiAutocompleteException $e) {
watchdog_exception('search_api_autocomplete', $e, '%type while retrieving autocomplete suggestions: @message in %function (line %line of %file).');
}
return new JsonResponse($matches);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
AutocompleteController:: |
protected | property | The autocomplete helper service. | |
AutocompleteController:: |
protected | property | The renderer. | |
AutocompleteController:: |
protected | property | The transliterator. | |
AutocompleteController:: |
public | function | Page callback: Retrieves autocomplete suggestions. | |
AutocompleteController:: |
public static | function |
Instantiates a new instance of this class. Overrides ControllerBase:: |
|
AutocompleteController:: |
public | function | Creates a new AutocompleteController instance. | |
ControllerBase:: |
protected | property | The configuration factory. | |
ControllerBase:: |
protected | property | The current user service. | 1 |
ControllerBase:: |
protected | property | The entity form builder. | |
ControllerBase:: |
protected | property | The entity manager. | |
ControllerBase:: |
protected | property | The entity type manager. | |
ControllerBase:: |
protected | property | The form builder. | 2 |
ControllerBase:: |
protected | property | The key-value storage. | 1 |
ControllerBase:: |
protected | property | The language manager. | 1 |
ControllerBase:: |
protected | property | The module handler. | 2 |
ControllerBase:: |
protected | property | The state service. | |
ControllerBase:: |
protected | function | Returns the requested cache bin. | |
ControllerBase:: |
protected | function | Retrieves a configuration object. | |
ControllerBase:: |
private | function | Returns the service container. | |
ControllerBase:: |
protected | function | Returns the current user. | 1 |
ControllerBase:: |
protected | function | Retrieves the entity form builder. | |
ControllerBase:: |
protected | function | Retrieves the entity manager service. | |
ControllerBase:: |
protected | function | Retrieves the entity type manager. | |
ControllerBase:: |
protected | function | Returns the form builder service. | 2 |
ControllerBase:: |
protected | function | Returns a key/value storage collection. | 1 |
ControllerBase:: |
protected | function | Returns the language manager service. | 1 |
ControllerBase:: |
protected | function | Returns the module handler. | 2 |
ControllerBase:: |
protected | function |
Returns a redirect response object for the specified route. Overrides UrlGeneratorTrait:: |
|
ControllerBase:: |
protected | function | Returns the state storage service. | |
LinkGeneratorTrait:: |
protected | property | The link generator. | 1 |
LinkGeneratorTrait:: |
protected | function | Returns the link generator. | |
LinkGeneratorTrait:: |
protected | function | Renders a link to a route given a route name and its parameters. | |
LinkGeneratorTrait:: |
public | function | Sets the link generator service. | |
LoggerChannelTrait:: |
protected | property | The logger channel factory service. | |
LoggerChannelTrait:: |
protected | function | Gets the logger for a specific channel. | |
LoggerChannelTrait:: |
public | function | Injects the logger channel factory. | |
MessengerTrait:: |
protected | property | The messenger. | 29 |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
RedirectDestinationTrait:: |
protected | property | The redirect destination service. | 1 |
RedirectDestinationTrait:: |
protected | function | Prepares a 'destination' URL query parameter for use with \Drupal\Core\Url. | |
RedirectDestinationTrait:: |
protected | function | Returns the redirect destination service. | |
RedirectDestinationTrait:: |
public | function | Sets the redirect destination service. | |
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. | |
UrlGeneratorTrait:: |
protected | property | The url generator. | |
UrlGeneratorTrait:: |
protected | function | Returns the URL generator service. | |
UrlGeneratorTrait:: |
public | function | Sets the URL generator service. | |
UrlGeneratorTrait:: |
protected | function | Generates a URL or path for a specific route based on the given parameters. |