search_core/Classes/Connection/Elasticsearch/Connection.php

75 lines
2.2 KiB
PHP
Raw Normal View History

2016-12-09 13:19:35 +01:00
<?php
namespace Leonmrni\SearchCore\Connection\Elasticsearch;
/*
* Copyright (C) 2016 Daniel Siepmann <coding@daniel-siepmann.de>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*/
use Leonmrni\SearchCore\Configuration\ConfigurationContainerInterface;
2016-12-09 13:19:35 +01:00
use TYPO3\CMS\Core\SingletonInterface as Singleton;
/**
* The current connection to elasticsearch.
*
* Wrapper for Elastica\Client.
*/
class Connection implements Singleton
{
/**
* @var \Elastica\Client
*/
protected $elasticaClient;
/**
* @var ConfigurationContainerInterface
2016-12-09 13:19:35 +01:00
*/
protected $configuration;
2016-12-09 13:19:35 +01:00
/**
* @param \Elastica\Client $elasticaClient
*/
public function __construct(
\Elastica\Client $elasticaClient = null,
ConfigurationContainerInterface $configuration
) {
$this->configuration = $configuration;
2016-12-09 13:19:35 +01:00
$this->elasticaClient = $elasticaClient;
2016-12-09 13:19:35 +01:00
if ($this->elasticaClient === null) {
$this->elasticaClient = new \Elastica\Client([
'host' => $this->configuration->get('connection', 'host'),
'port' => $this->configuration->get('connection', 'port'),
2016-12-09 13:19:35 +01:00
// TODO: Make configurable
// 'log' => 'file',
]);
// TODO: Make configurable.
// new \Elastica\Log($this->elasticaClient);
}
}
/**
* Get the concrete client for internal usage!
*
* @return \Elastica\Client
*/
public function getClient()
{
return $this->elasticaClient;
}
}