You are here

class BynderTagSearchService in Bynder 4.0.x

Same name and namespace in other branches
  1. 8.3 src/Controller/BynderTagSearchService.php \Drupal\bynder\Controller\BynderTagSearchService
  2. 8 src/Controller/BynderTagSearchService.php \Drupal\bynder\Controller\BynderTagSearchService
  3. 8.2 src/Controller/BynderTagSearchService.php \Drupal\bynder\Controller\BynderTagSearchService

Class BynderTagSearchService.

Hierarchy

Expanded class hierarchy of BynderTagSearchService

File

src/Controller/BynderTagSearchService.php, line 16

Namespace

Drupal\bynder\Controller
View source
class BynderTagSearchService extends ControllerBase {

  /**
   * Limits the amount of tags returned in the Media browser filter.
   */
  const TAG_LIST_LIMIT = 25;

  /**
   * The Bynder API service.
   *
   * @var \Drupal\bynder\BynderApiInterface
   */
  protected $bynder;

  /**
   * The logger factory service.
   *
   * @var \Drupal\Core\Logger\LoggerChannelFactoryInterface
   */
  protected $logger;

  /**
   * Constructs a BynderTagSearchService class instance.
   *
   * @param \Drupal\bynder\BynderApiInterface $bynder
   *   The Bynder API service.
   * @param \Drupal\Core\Logger\LoggerChannelFactoryInterface $logger
   *   The logger factory service.
   */
  public function __construct(BynderApiInterface $bynder, LoggerChannelFactoryInterface $logger) {
    $this->bynder = $bynder;
    $this->logger = $logger;
  }

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

  /**
   * Route callback for tags search.
   */
  public function searchTags(Request $request) {
    $results = [];
    $keyword = $request
      ->get('term');
    try {
      $results = array_map(function ($tag) {
        return [
          'id' => $tag['tag'],
          'text' => $tag['tag'],
        ];
      }, $this->bynder
        ->getTags([
        'limit' => self::TAG_LIST_LIMIT,
        'keyword' => $keyword,
        'minCount' => 1,
      ]));
    } catch (\Exception $e) {
      (new TagSearchException($e
        ->getMessage()))
        ->logException()
        ->displayMessage();
      return FALSE;
    }
    usort($results, function ($first, $second) {
      return $first['text'] < $second['text'] ? -1 : 1;
    });
    $response['results'] = $results;
    return new JsonResponse($response);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
BynderTagSearchService::$bynder protected property The Bynder API service.
BynderTagSearchService::$logger protected property The logger factory service.
BynderTagSearchService::create public static function Instantiates a new instance of this class. Overrides ControllerBase::create
BynderTagSearchService::searchTags public function Route callback for tags search.
BynderTagSearchService::TAG_LIST_LIMIT constant Limits the amount of tags returned in the Media browser filter.
BynderTagSearchService::__construct public function Constructs a BynderTagSearchService class instance.
ControllerBase::$configFactory protected property The configuration factory.
ControllerBase::$currentUser protected property The current user service. 1
ControllerBase::$entityFormBuilder protected property The entity form builder.
ControllerBase::$entityTypeManager protected property The entity type manager.
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.
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.