select2-8.x-1.11/src/Controller/EntityAutocompleteController.php
src/Controller/EntityAutocompleteController.php
<?php
namespace Drupal\select2\Controller;
use Drupal\Component\Utility\Crypt;
use Drupal\Core\Controller\ControllerBase;
use Drupal\Core\Site\Settings;
use Drupal\select2\EntityAutocompleteMatcher;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\HttpFoundation\JsonResponse;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException;
/**
* Defines a route controller for entity autocomplete form elements.
*/
class EntityAutocompleteController extends ControllerBase {
/**
* The autocomplete matcher for entity references.
*
* @var \Drupal\select2\EntityAutocompleteMatcher
*/
protected EntityAutocompleteMatcher $matcher;
/**
* {@inheritdoc}
*
* @phpstan-ignore-next-line
*/
public static function create(ContainerInterface $container) {
$controller = parent::create($container);
$controller->setMatcher($container->get('select2.autocomplete_matcher'));
return $controller;
}
/**
* Set the entity autocomplete matcher.
*
* @param \Drupal\select2\EntityAutocompleteMatcher $matcher
* The autocomplete matcher for entity references.
*/
protected function setMatcher(EntityAutocompleteMatcher $matcher): void {
$this->matcher = $matcher;
}
/**
* Autocomplete the label of an entity.
*
* @param \Symfony\Component\HttpFoundation\Request $request
* The request object that contains the typed tags.
* @param string $target_type
* The ID of the target entity type.
* @param string $selection_handler
* The plugin ID of the entity reference selection handler.
* @param string $selection_settings_key
* The hashed key of the key/value entry that holds the selection handler
* settings.
*
* @return \Symfony\Component\HttpFoundation\JsonResponse
* The matched entity labels as a JSON response.
*
* @throws \Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException
* Thrown if the selection settings key is not found in the key/value store
* or if it does not match the stored data.
*/
public function handleAutocomplete(Request $request, string $target_type, string $selection_handler, string $selection_settings_key): JsonResponse {
$matches = [];
$matches['results'] = [];
// Get the typed string from the URL, if it exists.
$input = $request->query->get('q');
if ($input !== NULL) {
// Selection settings are passed in as a hashed key of a serialized array
// stored in the key/value store.
$selection_settings = $this->keyValue('entity_autocomplete')->get($selection_settings_key, FALSE);
if ($selection_settings !== FALSE) {
$selection_settings_hash = Crypt::hmacBase64(serialize($selection_settings) . $target_type . $selection_handler, Settings::getHashSalt());
if (!hash_equals($selection_settings_hash, $selection_settings_key)) {
// Disallow access when the selection settings hash does not match the
// passed-in key.
throw new AccessDeniedHttpException('Invalid selection settings key.');
}
}
else {
// Disallow access when the selection settings key is not found in the
// key/value store.
throw new AccessDeniedHttpException();
}
$matches['results'] = $this->matcher->getMatches($target_type, $selection_handler, $selection_settings, mb_strtolower($input), $request->query->has('selected') ? $request->query->all('selected') : []);
}
return new JsonResponse($matches);
}
}
