search_core/Classes/Connection/Elasticsearch.php

196 lines
5.6 KiB
PHP
Raw Normal View History

2016-12-09 13:19:35 +01:00
<?php
namespace Leonmrni\SearchCore\Connection;
/*
* 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 TYPO3\CMS\Core\SingletonInterface as Singleton;
/**
* Outer wrapper to elasticsearch.
*/
class Elasticsearch implements Singleton, ConnectionInterface
{
/**
* @var Elasticsearch\Connection
*/
protected $connection;
/**
* @var Elasticsearch\IndexFactory
2016-12-09 13:19:35 +01:00
*/
protected $indexFactory;
/**
* @var Elasticsearch\TypeFactory
2016-12-09 13:19:35 +01:00
*/
protected $typeFactory;
/**
* @var Elasticsearch\DocumentFactory
2016-12-09 13:19:35 +01:00
*/
protected $documentFactory;
/**
* @var \TYPO3\CMS\Core\Log\Logger
*/
protected $logger;
/**
* Inject log manager to get concrete logger from it.
*
* @param \TYPO3\CMS\Core\Log\LogManager $logManager
*/
public function injectLogger(\TYPO3\CMS\Core\Log\LogManager $logManager)
{
$this->logger = $logManager->getLogger(__CLASS__);
}
/**
* @param Elasticsearch\Connection $connection
* @param Elasticsearch\IndexFactory $indexFactory
* @param Elasticsearch\TypeFactory $typeFactory
* @param Elasticsearch\DocumentFactory $documentFactory
*/
public function __construct(
Elasticsearch\Connection $connection,
Elasticsearch\IndexFactory $indexFactory,
Elasticsearch\TypeFactory $typeFactory,
Elasticsearch\DocumentFactory $documentFactory
) {
$this->connection = $connection;
$this->indexFactory = $indexFactory;
$this->typeFactory = $typeFactory;
$this->documentFactory = $documentFactory;
}
public function addDocument($documentType, array $document)
2016-12-09 13:19:35 +01:00
{
$this->withType(
$documentType,
function ($type) use ($document) {
$type->addDocument($this->documentFactory->getDocument($type->getName(), $document));
}
);
2016-12-09 13:19:35 +01:00
}
public function deleteDocument($documentType, $identifier)
2016-12-09 13:19:35 +01:00
{
try {
$this->withType(
$documentType,
function ($type) use ($identifier) {
$type->deleteById($identifier);
}
);
} catch (\Elastica\Exception\NotFoundException $exception) {
$this->logger->debug('Tried to delete document in index, which does not exist.', [$documentType, $identifier]);
}
2016-12-09 13:19:35 +01:00
}
public function updateDocument($documentType, array $document)
2016-12-09 13:19:35 +01:00
{
$this->withType(
$documentType,
function ($type) use ($document) {
$type->updateDocument($this->documentFactory->getDocument($type->getName(), $document));
}
);
2016-12-09 13:19:35 +01:00
}
public function addDocuments($documentType, array $documents)
2016-12-09 13:19:35 +01:00
{
$this->withType(
$documentType,
function ($type) use ($documents) {
$type->addDocuments($this->documentFactory->getDocuments($type->getName(), $documents));
}
2016-12-09 13:19:35 +01:00
);
}
2016-12-09 13:19:35 +01:00
/**
* Execute given callback with Elastica Type based on provided documentType
*
* @param string $documentType
* @param callable $callback
*/
protected function withType($documentType, callable $callback)
{
$type = $this->getType($documentType);
$callback($type);
2016-12-09 13:19:35 +01:00
$type->getIndex()->refresh();
}
/**
* @param SearchRequestInterface $searchRequest
*
* @return \Elastica\ResultSet
2016-12-09 13:19:35 +01:00
*/
public function search(SearchRequestInterface $searchRequest)
{
$this->logger->debug('Search for', [$searchRequest->getSearchTerm()]);
$query = [
'bool' => [
'must' => [
[
'match' => [
'_all' => $searchRequest->getSearchTerm()
],
],
],
],
];
if ($searchRequest->hasFilter()) {
$queryFilter = [];
foreach ($searchRequest->getFilter() as $field => $value) {
$queryFilter[$field] = $value;
}
$query['bool']['filter'] = [
'term' => $queryFilter,
];
}
2016-12-09 13:19:35 +01:00
$search = new \Elastica\Search($this->connection->getClient());
$search->addIndex('typo3content');
$search->setQuery(new \Elastica\Query(['query' => $query]));
2016-12-09 13:19:35 +01:00
// TODO: Return wrapped result to implement our interface.
// Also update php doc to reflect the change.
return $search->search();
2016-12-09 13:19:35 +01:00
}
/**
* @param string $documentType
*
* @return \Elastica\Type
*/
protected function getType($documentType)
{
return $this->typeFactory->getType(
$this->indexFactory->getIndex(
$this->connection,
$documentType
),
$documentType
);
}
2016-12-09 13:19:35 +01:00
}