12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <?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\Elasticsearch\Model\Client\Elasticsearch;
- use Psr\Log\LoggerInterface;
- /**
- * @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 Elasticsearch 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('Elasticsearch client is not set.');
- }
- }
- }
|