EntityAutocompleteController.php in Open Social 8.6
Same filename and directory in other branches
- 8.9 modules/social_features/social_core/src/Controller/EntityAutocompleteController.php
- 8 modules/social_features/social_core/src/Controller/EntityAutocompleteController.php
- 8.2 modules/social_features/social_core/src/Controller/EntityAutocompleteController.php
- 8.3 modules/social_features/social_core/src/Controller/EntityAutocompleteController.php
- 8.4 modules/social_features/social_core/src/Controller/EntityAutocompleteController.php
- 8.5 modules/social_features/social_core/src/Controller/EntityAutocompleteController.php
- 8.7 modules/social_features/social_core/src/Controller/EntityAutocompleteController.php
- 8.8 modules/social_features/social_core/src/Controller/EntityAutocompleteController.php
- 10.3.x modules/social_features/social_core/src/Controller/EntityAutocompleteController.php
- 10.0.x modules/social_features/social_core/src/Controller/EntityAutocompleteController.php
- 10.1.x modules/social_features/social_core/src/Controller/EntityAutocompleteController.php
- 10.2.x modules/social_features/social_core/src/Controller/EntityAutocompleteController.php
Namespace
Drupal\social_core\ControllerFile
modules/social_features/social_core/src/Controller/EntityAutocompleteController.phpView source
<?php
namespace Drupal\social_core\Controller;
use Drupal\system\Controller\EntityAutocompleteController as EntityAutocompleteControllerBase;
use Symfony\Component\HttpFoundation\Request;
use Drupal\Component\Utility\Tags;
use Drupal\Component\Utility\Unicode;
use Drupal\Component\Utility\Crypt;
use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException;
use Drupal\Core\Site\Settings;
use Symfony\Component\HttpFoundation\JsonResponse;
/**
* Class EntityAutocompleteController.
*
* @package Drupal\social_core\Controller
*/
class EntityAutocompleteController extends EntityAutocompleteControllerBase {
/**
* {@inheritdoc}
*/
public function handleAutocomplete(Request $request, $target_type, $selection_handler, $selection_settings_key) {
$matches = [];
// Get the typed string from the URL, if it exists.
if ($input = $request->query
->get('q')) {
$typed_string = Tags::explode($input);
$typed_string = Unicode::strtolower(array_pop($typed_string));
// Selection settings are passed in as a hashed key of a serialized array
// stored in the key/value store.
$selection_settings = $this->keyValue
->get($selection_settings_key, FALSE);
if ($selection_settings !== FALSE) {
$selection_settings_hash = Crypt::hmacBase64(serialize($selection_settings) . $target_type . $selection_handler, Settings::getHashSalt());
if ($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 = $this->matcher
->getMatches($target_type, $selection_handler, $selection_settings, $typed_string);
}
return new JsonResponse($matches);
}
}
Classes
Name | Description |
---|---|
EntityAutocompleteController | Class EntityAutocompleteController. |