123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\AdvancedSearch\Model\Client;
- use \Magento\Framework\ObjectManagerInterface;
- use Magento\Framework\Search\EngineResolverInterface;
- /**
- * @api
- * @since 100.1.0
- */
- class ClientResolver
- {
- /**
- * Scope configuration
- *
- * @var ScopeConfigInterface
- * @since 100.1.0
- * @deprecated 100.3.0 since it is not used anymore
- */
- protected $scopeConfig;
- /**
- * Object Manager instance
- *
- * @var ObjectManagerInterface
- * @since 100.1.0
- */
- protected $objectManager;
- /**
- * Pool of existing client factories
- *
- * @var array
- */
- private $clientFactoryPool;
- /**
- * Pool of client option classes
- *
- * @var array
- */
- private $clientOptionsPool;
- /**
- * @var EngineResolver
- */
- private $engineResolver;
- /**
- * Config path
- *
- * @var string
- * @since 100.1.0
- * @deprecated 100.3.0 since it is not used anymore
- */
- protected $path;
- /**
- * Config Scope
- * @since 100.1.0
- * @deprecated 100.3.0 since it is not used anymore
- */
- protected $scope;
- /**
- * @param ObjectManagerInterface $objectManager
- * @param array $clientFactories
- * @param array $clientOptions
- * @param EngineResolverInterface $engineResolver
- */
- public function __construct(
- ObjectManagerInterface $objectManager,
- array $clientFactories,
- array $clientOptions,
- EngineResolverInterface $engineResolver
- ) {
- $this->objectManager = $objectManager;
- $this->clientFactoryPool = $clientFactories;
- $this->clientOptionsPool = $clientOptions;
- $this->engineResolver = $engineResolver;
- }
- /**
- * Returns configured search engine
- *
- * @return string
- * @since 100.1.0
- */
- public function getCurrentEngine()
- {
- return $this->engineResolver->getCurrentSearchEngine();
- }
- /**
- * Create client instance
- *
- * @param string $engine
- * @param array $data
- * @return ClientInterface
- * @since 100.1.0
- */
- public function create($engine = '', array $data = [])
- {
- $engine = $engine ?: $this->getCurrentEngine();
- if (!isset($this->clientFactoryPool[$engine])) {
- throw new \LogicException(
- 'There is no such client factory: ' . $engine
- );
- }
- $factoryClass = $this->clientFactoryPool[$engine];
- $factory = $this->objectManager->create($factoryClass);
- if (!($factory instanceof ClientFactoryInterface)) {
- throw new \InvalidArgumentException(
- 'Client factory must implement \Magento\AdvancedSearch\Model\Client\ClientFactoryInterface'
- );
- }
- $optionsClass = $this->clientOptionsPool[$engine];
- $clientOptions = $this->objectManager->create($optionsClass);
- if (!($clientOptions instanceof ClientOptionsInterface)) {
- throw new \InvalidArgumentException(
- 'Client options must implement \Magento\AdvancedSearch\Model\Client\ClientInterface'
- );
- }
- $client = $factory->create($clientOptions->prepareClientOptions($data));
- return $client;
- }
- }
|