![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-elasticsearch/SearchAdapter/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Elasticsearch\SearchAdapter; use Magento\AdvancedSearch\Model\Client\ClientOptionsInterface; use Magento\AdvancedSearch\Model\Client\ClientFactoryInterface; use Magento\AdvancedSearch\Model\Client\ClientInterface as Elasticsearch; use Psr\Log\LoggerInterface; /** * Class provides interface for Search Engine connection * * @api * @since 100.1.0 */ class ConnectionManager { /** * @var Elasticsearch * @since 100.1.0 */ protected $client; /** * @var LoggerInterface * @since 100.1.0 */ protected $logger; /** * @var ClientFactoryInterface * @since 100.1.0 */ protected $clientFactory; /** * @var ClientOptionsInterface * @since 100.1.0 */ protected $clientConfig; /** * @param ClientFactoryInterface $clientFactory * @param ClientOptionsInterface $clientConfig * @param LoggerInterface $logger */ public function __construct( ClientFactoryInterface $clientFactory, ClientOptionsInterface $clientConfig, LoggerInterface $logger ) { $this->logger = $logger; $this->clientFactory = $clientFactory; $this->clientConfig = $clientConfig; } /** * Get shared connection * * @param array $options * @throws \RuntimeException * @return Elasticsearch * @since 100.1.0 */ public function getConnection($options = []) { if (!$this->client) { $this->connect($options); } return $this->client; } /** * Connect to Search client with default options * * @param array $options * @throws \RuntimeException * @return void */ private function connect($options) { try { $this->client = $this->clientFactory->create($this->clientConfig->prepareClientOptions($options)); } catch (\Exception $e) { $this->logger->critical($e); throw new \RuntimeException('Search client is not set.'); } } }