You are here

class AutocompleteController in Linkit 8.4

Same name and namespace in other branches
  1. 8.5 src/Controller/AutocompleteController.php \Drupal\linkit\Controller\AutocompleteController

Hierarchy

Expanded class hierarchy of AutocompleteController

File

src/Controller/AutocompleteController.php, line 18
Contains \Drupal\linkit\Controller\AutocompleteController.

Namespace

Drupal\linkit\Controller
View source
class AutocompleteController implements ContainerInjectionInterface {

  /**
   * The linkit profile storage service.
   *
   * @var \Drupal\Core\Entity\EntityStorageInterface
   */
  protected $linkitProfileStorage;

  /**
   * The result manager.
   *
   * @var \Drupal\linkit\ResultManager
   */
  protected $resultManager;

  /**
   * The linkit profile.
   *
   * @var \Drupal\linkit\ProfileInterface
   */
  protected $linkitProfile;

  /**
   * Constructs a EntityAutocompleteController object.
   *
   * @param ResultManager $resultManager
   *   The result service.
   * @param \Drupal\Core\Entity\EntityStorageInterface $linkit_profile_storage
   *   The linkit profile storage service.
   */
  public function __construct(EntityStorageInterface $linkit_profile_storage, ResultManager $resultManager) {
    $this->linkitProfileStorage = $linkit_profile_storage;
    $this->resultManager = $resultManager;
  }

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container) {
    return new static($container
      ->get('entity.manager')
      ->getStorage('linkit_profile'), $container
      ->get('linkit.result_manager'));
  }

  /**
   * Menu callback for linkit search autocompletion.
   *
   * Like other autocomplete functions, this function inspects the 'q' query
   * parameter for the string to use to search for suggestions.
   *
   * @param Request $request
   *   The request.
   * @param $linkit_profile_id
   *   The linkit profile id.
   * @return JsonResponse
   *   A JSON response containing the autocomplete suggestions.
   */
  public function autocomplete(Request $request, $linkit_profile_id) {
    $this->linkitProfile = $this->linkitProfileStorage
      ->load($linkit_profile_id);
    $string = Unicode::strtolower($request->query
      ->get('q'));
    $matches = $this->resultManager
      ->getResults($this->linkitProfile, $string);
    $json_object = new \stdClass();
    $json_object->matches = $matches;
    return new JsonResponse($json_object);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
AutocompleteController::$linkitProfile protected property The linkit profile.
AutocompleteController::$linkitProfileStorage protected property The linkit profile storage service.
AutocompleteController::$resultManager protected property The result manager.
AutocompleteController::autocomplete public function Menu callback for linkit search autocompletion.
AutocompleteController::create public static function Instantiates a new instance of this class. Overrides ContainerInjectionInterface::create
AutocompleteController::__construct public function Constructs a EntityAutocompleteController object.