| Current Path : /home/rtorresani/www/vendor/magento/module-elasticsearch/SearchAdapter/ |
| Current File : //home/rtorresani/www/vendor/magento/module-elasticsearch/SearchAdapter/ConnectionManager.php |
<?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.');
}
}
}