salesforce-8.x-4.x-dev/modules/salesforce_mapping_ui/src/Controller/AutocompleteController.php
modules/salesforce_mapping_ui/src/Controller/AutocompleteController.php
<?php
namespace Drupal\salesforce_mapping_ui\Controller;
use Drupal\Component\Utility\Html;
use Drupal\Core\Controller\ControllerBase;
use Drupal\Core\Entity\EntityFieldManagerInterface;
use Drupal\typed_data\DataFetcherInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\HttpFoundation\JsonResponse;
use Symfony\Component\HttpFoundation\Request;
/**
* Controller for autocomplete.
*/
class AutocompleteController extends ControllerBase {
/**
* Entity Field manager service.
*
* @var \Drupal\Core\Entity\EntityFieldManagerInterface
*/
protected $fieldManager;
/**
* Typed data fetcher.
*
* @var \Drupal\typed_data\DataFetcherInterface
*/
protected $dataFetcher;
/**
* Constructs a new AutocompleteController object.
*
* @param \Drupal\Core\Entity\EntityFieldManagerInterface $field_manager
* Entity field manager.
* @param \Drupal\typed_data\DataFetcherInterface $dataFetcher
* Data fetcher.
*/
public function __construct(EntityFieldManagerInterface $field_manager, DataFetcherInterface $dataFetcher) {
$this->fieldManager = $field_manager;
$this->dataFetcher = $dataFetcher;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
return new static(
$container->get('entity_field.manager'),
$container->get('typed_data.data_fetcher')
);
}
/**
* Autocomplete.
*
* @param \Symfony\Component\HttpFoundation\Request $request
* The request object providing the autocomplete query parameter.
* @param string $entity_type_id
* The entity type filter options by.
* @param string $bundle
* The bundle of the entity to filter options by.
*
* @return \Symfony\Component\HttpFoundation\JsonResponse
* The JSON results.
*/
public function autocomplete(Request $request, $entity_type_id, $bundle) {
$string = Html::escape(mb_strtolower($request->query->get('q')));
$field_definitions = $this->fieldManager->getFieldDefinitions($entity_type_id, $bundle);
// Filter out EntityReference Items.
foreach ($field_definitions as $index => $field_definition) {
if ($field_definition->getType() === 'entity_reference') {
unset($field_definitions[$index]);
}
}
$results = $this
->dataFetcher
->autocompletePropertyPath($field_definitions, $string);
return new JsonResponse($results);
}
}
