You are here

class AutocompleteController in Open Social 10.2.x

Same name and namespace in other branches
  1. 8.9 modules/social_features/social_mentions/src/Controller/AutocompleteController.php \Drupal\social_mentions\Controller\AutocompleteController
  2. 8 modules/social_features/social_mentions/src/Controller/AutocompleteController.php \Drupal\social_mentions\Controller\AutocompleteController
  3. 8.2 modules/social_features/social_mentions/src/Controller/AutocompleteController.php \Drupal\social_mentions\Controller\AutocompleteController
  4. 8.3 modules/social_features/social_mentions/src/Controller/AutocompleteController.php \Drupal\social_mentions\Controller\AutocompleteController
  5. 8.4 modules/social_features/social_mentions/src/Controller/AutocompleteController.php \Drupal\social_mentions\Controller\AutocompleteController
  6. 8.5 modules/social_features/social_mentions/src/Controller/AutocompleteController.php \Drupal\social_mentions\Controller\AutocompleteController
  7. 8.6 modules/social_features/social_mentions/src/Controller/AutocompleteController.php \Drupal\social_mentions\Controller\AutocompleteController
  8. 8.7 modules/social_features/social_mentions/src/Controller/AutocompleteController.php \Drupal\social_mentions\Controller\AutocompleteController
  9. 8.8 modules/social_features/social_mentions/src/Controller/AutocompleteController.php \Drupal\social_mentions\Controller\AutocompleteController
  10. 10.3.x modules/social_features/social_mentions/src/Controller/AutocompleteController.php \Drupal\social_mentions\Controller\AutocompleteController
  11. 10.0.x modules/social_features/social_mentions/src/Controller/AutocompleteController.php \Drupal\social_mentions\Controller\AutocompleteController
  12. 10.1.x modules/social_features/social_mentions/src/Controller/AutocompleteController.php \Drupal\social_mentions\Controller\AutocompleteController

Class AutocompleteController.

@todo Add parameters here to prevent referencing users without access to node.

@package Drupal\social_mentions\Controller

Hierarchy

Expanded class hierarchy of AutocompleteController

File

modules/social_features/social_mentions/src/Controller/AutocompleteController.php, line 22

Namespace

Drupal\social_mentions\Controller
View source
class AutocompleteController extends ControllerBase {
  use SocialProfileTrait;

  /**
   * The config factory.
   *
   * @var \Drupal\Core\Config\ConfigFactoryInterface
   */
  protected $configFactory;

  /**
   * The database connection.
   *
   * @var \Drupal\Core\Database\Connection
   */
  protected $database;

  /**
   * The entity type manager.
   *
   * @var \Drupal\Core\Entity\EntityTypeManagerInterface
   */
  protected $entityTypeManager;

  /**
   * AutocompleteController constructor.
   *
   * @param \Drupal\Core\Config\ConfigFactoryInterface $configFactory
   *   The config factory.
   * @param \Drupal\Core\Database\Connection $database
   *   The database connection.
   * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entityTypeManager
   *   The entity type manager.
   */
  public function __construct(ConfigFactoryInterface $configFactory, Connection $database, EntityTypeManagerInterface $entityTypeManager) {
    $this->configFactory = $configFactory;
    $this->database = $database;
    $this->entityTypeManager = $entityTypeManager;
  }

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container) {
    return new static($container
      ->get('config.factory'), $container
      ->get('database'), $container
      ->get('entity_type.manager'));
  }

  /**
   * Function for suggestions.
   *
   * @param \Symfony\Component\HttpFoundation\Request $request
   *   The request.
   *
   * @return \Symfony\Component\HttpFoundation\JsonResponse
   *   Returns a JsonResponse.
   */
  public function suggestions(Request $request) {
    $name = $request
      ->get('term');
    $config = $this->configFactory
      ->get('mentions.settings');
    $suggestion_format = $config
      ->get('suggestions_format');
    $suggestion_amount = $config
      ->get('suggestions_amount');
    $result = $this
      ->getUserIdsFromName($name, $suggestion_amount, $suggestion_format);
    $response = [];
    $accounts = User::loadMultiple($result);
    $storage = $this->entityTypeManager
      ->getStorage('profile');
    $view_builder = $this->entityTypeManager
      ->getViewBuilder('profile');

    /** @var \Drupal\Core\Session\AccountInterface $account */
    foreach ($accounts as $account) {
      $item = [
        'uid' => $account
          ->id(),
        'username' => $account
          ->getAccountName(),
        'value' => $account
          ->getAccountName(),
        'html_item' => '<div>' . $account
          ->getAccountName() . '</div>',
        'profile_id' => '',
      ];
      if ($storage && ($profile = $storage
        ->loadByUser($account, 'profile', TRUE)) && $suggestion_format != SOCIAL_PROFILE_SUGGESTIONS_USERNAME) {
        $build = $view_builder
          ->view($profile, 'autocomplete_item');
        $item['html_item'] = render($build);
        $item['profile_id'] = $profile
          ->id();
        $item['value'] = strip_tags($account
          ->getDisplayName());
      }
      $response[] = $item;
    }
    return new JsonResponse($response);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
AutocompleteController::$configFactory protected property The config factory. Overrides ControllerBase::$configFactory
AutocompleteController::$database protected property The database connection.
AutocompleteController::$entityTypeManager protected property The entity type manager. Overrides ControllerBase::$entityTypeManager
AutocompleteController::create public static function Instantiates a new instance of this class. Overrides ControllerBase::create
AutocompleteController::suggestions public function Function for suggestions.
AutocompleteController::__construct public function AutocompleteController constructor.
ControllerBase::$currentUser protected property The current user service. 1
ControllerBase::$entityFormBuilder protected property The entity form builder.
ControllerBase::$formBuilder protected property The form builder. 2
ControllerBase::$keyValue protected property The key-value storage. 1
ControllerBase::$languageManager protected property The language manager. 1
ControllerBase::$moduleHandler protected property The module handler. 2
ControllerBase::$stateService protected property The state service.
ControllerBase::cache protected function Returns the requested cache bin.
ControllerBase::config protected function Retrieves a configuration object.
ControllerBase::container private function Returns the service container.
ControllerBase::currentUser protected function Returns the current user. 1
ControllerBase::entityFormBuilder protected function Retrieves the entity form builder.
ControllerBase::entityTypeManager protected function Retrieves the entity type manager.
ControllerBase::formBuilder protected function Returns the form builder service. 2
ControllerBase::keyValue protected function Returns a key/value storage collection. 1
ControllerBase::languageManager protected function Returns the language manager service. 1
ControllerBase::moduleHandler protected function Returns the module handler. 2
ControllerBase::redirect protected function Returns a redirect response object for the specified route.
ControllerBase::state protected function Returns the state storage service.
LoggerChannelTrait::$loggerFactory protected property The logger channel factory service.
LoggerChannelTrait::getLogger protected function Gets the logger for a specific channel.
LoggerChannelTrait::setLoggerFactory public function Injects the logger channel factory.
MessengerTrait::$messenger protected property The messenger. 27
MessengerTrait::messenger public function Gets the messenger. 27
MessengerTrait::setMessenger public function Sets the messenger.
RedirectDestinationTrait::$redirectDestination protected property The redirect destination service. 1
RedirectDestinationTrait::getDestinationArray protected function Prepares a 'destination' URL query parameter for use with \Drupal\Core\Url.
RedirectDestinationTrait::getRedirectDestination protected function Returns the redirect destination service.
RedirectDestinationTrait::setRedirectDestination public function Sets the redirect destination service.
SocialProfileTrait::addNickname private function Add Nickname.
SocialProfileTrait::endQuery private function End a Social Profile Mention Query.
SocialProfileTrait::getUserIdsFromName public function Get a list of account IDs whose account names begin with the given string.
SocialProfileTrait::sortQuery private function Sorts the query.
SocialProfileTrait::startQuery private function Start a Social Profile Mention Query.
SocialProfileTrait::useFullName private function Check if can use the full name for the search.
StringTranslationTrait::$stringTranslation protected property The string translation service. 4
StringTranslationTrait::formatPlural protected function Formats a string containing a count of items.
StringTranslationTrait::getNumberOfPlurals protected function Returns the number of plurals supported by a given language.
StringTranslationTrait::getStringTranslation protected function Gets the string translation service.
StringTranslationTrait::setStringTranslation public function Sets the string translation service to use. 2
StringTranslationTrait::t protected function Translates a string to the current language or to a given language.