mirror of
https://github.com/Codappix/search_core.git
synced 2024-11-25 09:56:11 +01:00
WIP|TASK: Remove sort and add filter
As we filter for distance and do not sort.
This commit is contained in:
parent
e1764dca13
commit
636ef78a14
2 changed files with 35 additions and 78 deletions
|
@ -93,21 +93,6 @@ class SearchRequest implements SearchRequestInterface
|
||||||
public function setFilter(array $filter)
|
public function setFilter(array $filter)
|
||||||
{
|
{
|
||||||
$this->filter = array_filter($filter);
|
$this->filter = array_filter($filter);
|
||||||
|
|
||||||
$this->mapGeoDistanceFilter();
|
|
||||||
}
|
|
||||||
|
|
||||||
public function mapGeoDistanceFilter()
|
|
||||||
{
|
|
||||||
if (isset($this->filter['geo_distance'])) {
|
|
||||||
foreach (array_keys($this->filter['geo_distance']) as $config) {
|
|
||||||
if (strpos($config, '_') !== false) {
|
|
||||||
$newKey = str_replace('_', '.', $config);
|
|
||||||
$this->filter['geo_distance'][$newKey] = $this->filter['geo_distance'][$config];
|
|
||||||
unset($this->filter['geo_distance'][$config]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -39,10 +39,6 @@ class QueryFactory
|
||||||
*/
|
*/
|
||||||
protected $configuration;
|
protected $configuration;
|
||||||
|
|
||||||
/**
|
|
||||||
* @param \TYPO3\CMS\Core\Log\LogManager $logManager
|
|
||||||
* @param ConfigurationContainerInterface $configuration
|
|
||||||
*/
|
|
||||||
public function __construct(
|
public function __construct(
|
||||||
\TYPO3\CMS\Core\Log\LogManager $logManager,
|
\TYPO3\CMS\Core\Log\LogManager $logManager,
|
||||||
ConfigurationContainerInterface $configuration
|
ConfigurationContainerInterface $configuration
|
||||||
|
@ -55,22 +51,13 @@ class QueryFactory
|
||||||
* TODO: This is not in scope Elasticsearch, therefore it should not return
|
* TODO: This is not in scope Elasticsearch, therefore it should not return
|
||||||
* \Elastica\Query, but decide to use a more specific QueryFactory like
|
* \Elastica\Query, but decide to use a more specific QueryFactory like
|
||||||
* ElasticaQueryFactory, once the second query is added?
|
* ElasticaQueryFactory, once the second query is added?
|
||||||
*
|
|
||||||
* @param SearchRequestInterface $searchRequest
|
|
||||||
*
|
|
||||||
* @return \Elastica\Query
|
|
||||||
*/
|
*/
|
||||||
public function create(SearchRequestInterface $searchRequest)
|
public function create(SearchRequestInterface $searchRequest) : \Elastica\Query
|
||||||
{
|
{
|
||||||
return $this->createElasticaQuery($searchRequest);
|
return $this->createElasticaQuery($searchRequest);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
protected function createElasticaQuery(SearchRequestInterface $searchRequest) : \Elastica\Query
|
||||||
* @param SearchRequestInterface $searchRequest
|
|
||||||
*
|
|
||||||
* @return \Elastica\Query
|
|
||||||
*/
|
|
||||||
protected function createElasticaQuery(SearchRequestInterface $searchRequest)
|
|
||||||
{
|
{
|
||||||
$query = [];
|
$query = [];
|
||||||
$this->addSize($searchRequest, $query);
|
$this->addSize($searchRequest, $query);
|
||||||
|
@ -83,14 +70,12 @@ class QueryFactory
|
||||||
// Better approach would be something like DQL to generate query and build result in the end.
|
// Better approach would be something like DQL to generate query and build result in the end.
|
||||||
$this->addFactorBoost($query);
|
$this->addFactorBoost($query);
|
||||||
|
|
||||||
|
\TYPO3\CMS\Extbase\Utility\DebuggerUtility::var_dump($query, '$query', 8, false);die;
|
||||||
|
|
||||||
$this->logger->debug('Generated elasticsearch query.', [$query]);
|
$this->logger->debug('Generated elasticsearch query.', [$query]);
|
||||||
return new \Elastica\Query($query);
|
return new \Elastica\Query($query);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @param SearchRequestInterface $searchRequest
|
|
||||||
* @param array $query
|
|
||||||
*/
|
|
||||||
protected function addSize(SearchRequestInterface $searchRequest, array &$query)
|
protected function addSize(SearchRequestInterface $searchRequest, array &$query)
|
||||||
{
|
{
|
||||||
$query = ArrayUtility::arrayMergeRecursiveOverrule($query, [
|
$query = ArrayUtility::arrayMergeRecursiveOverrule($query, [
|
||||||
|
@ -99,10 +84,6 @@ class QueryFactory
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @param SearchRequestInterface $searchRequest
|
|
||||||
* @param array $query
|
|
||||||
*/
|
|
||||||
protected function addSearch(SearchRequestInterface $searchRequest, array &$query)
|
protected function addSearch(SearchRequestInterface $searchRequest, array &$query)
|
||||||
{
|
{
|
||||||
if (trim($searchRequest->getSearchTerm()) === '') {
|
if (trim($searchRequest->getSearchTerm()) === '') {
|
||||||
|
@ -125,10 +106,6 @@ class QueryFactory
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @param SearchRequestInterface $searchRequest
|
|
||||||
* @param array $query
|
|
||||||
*/
|
|
||||||
protected function addBoosts(SearchRequestInterface $searchRequest, array &$query)
|
protected function addBoosts(SearchRequestInterface $searchRequest, array &$query)
|
||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
|
@ -159,22 +136,8 @@ class QueryFactory
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @param array $query
|
|
||||||
*/
|
|
||||||
protected function addFactorBoost(array &$query)
|
protected function addFactorBoost(array &$query)
|
||||||
{
|
{
|
||||||
$query['sort'] = [
|
|
||||||
'_geo_distance' => [
|
|
||||||
'location' => [
|
|
||||||
'lat' => 51.2014392,
|
|
||||||
'lon' => 6.4302962,
|
|
||||||
],
|
|
||||||
'order' => 'asc',
|
|
||||||
'unit' => 'km',
|
|
||||||
'distance_type' => 'plane',
|
|
||||||
]
|
|
||||||
];
|
|
||||||
try {
|
try {
|
||||||
$query['query'] = [
|
$query['query'] = [
|
||||||
'function_score' => [
|
'function_score' => [
|
||||||
|
@ -187,10 +150,6 @@ class QueryFactory
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @param SearchRequestInterface $searchRequest
|
|
||||||
* @param array $query
|
|
||||||
*/
|
|
||||||
protected function addFilter(SearchRequestInterface $searchRequest, array &$query)
|
protected function addFilter(SearchRequestInterface $searchRequest, array &$query)
|
||||||
{
|
{
|
||||||
if (! $searchRequest->hasFilter()) {
|
if (! $searchRequest->hasFilter()) {
|
||||||
|
@ -199,7 +158,11 @@ class QueryFactory
|
||||||
|
|
||||||
$filter = [];
|
$filter = [];
|
||||||
foreach ($searchRequest->getFilter() as $name => $value) {
|
foreach ($searchRequest->getFilter() as $name => $value) {
|
||||||
$filter[] = $this->buildFilter($name, $value);
|
$filter[] = $this->buildFilter(
|
||||||
|
$name,
|
||||||
|
$value,
|
||||||
|
$this->configuration->getIfExists('searching.filter.' . $name) ?: []
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
$query = ArrayUtility::arrayMergeRecursiveOverrule($query, [
|
$query = ArrayUtility::arrayMergeRecursiveOverrule($query, [
|
||||||
|
@ -211,23 +174,6 @@ class QueryFactory
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function buildFilter(string $name, $value) : array
|
|
||||||
{
|
|
||||||
if ($name === 'geo_distance') {
|
|
||||||
return [$name => $value];
|
|
||||||
}
|
|
||||||
|
|
||||||
return [
|
|
||||||
'term' => [
|
|
||||||
$name => $value,
|
|
||||||
],
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param SearchRequestInterface $searchRequest
|
|
||||||
* @param array $query
|
|
||||||
*/
|
|
||||||
protected function addFacets(SearchRequestInterface $searchRequest, array &$query)
|
protected function addFacets(SearchRequestInterface $searchRequest, array &$query)
|
||||||
{
|
{
|
||||||
foreach ($searchRequest->getFacets() as $facet) {
|
foreach ($searchRequest->getFacets() as $facet) {
|
||||||
|
@ -242,4 +188,30 @@ class QueryFactory
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected function buildFilter(string $name, $value, array $config) : array
|
||||||
|
{
|
||||||
|
if ($config === []) {
|
||||||
|
return [
|
||||||
|
'term' => [
|
||||||
|
$name => $value,
|
||||||
|
],
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
$filter = [];
|
||||||
|
|
||||||
|
\TYPO3\CMS\Extbase\Utility\DebuggerUtility::var_dump($name, '$name', 8, false);
|
||||||
|
\TYPO3\CMS\Extbase\Utility\DebuggerUtility::var_dump($value, '$value', 8, false);
|
||||||
|
\TYPO3\CMS\Extbase\Utility\DebuggerUtility::var_dump($config, '$config', 8, false);die;
|
||||||
|
|
||||||
|
if (isset($config['fields'])) {
|
||||||
|
foreach ($config['fields'] as $elasticField => $inputField) {
|
||||||
|
\TYPO3\CMS\Extbase\Utility\DebuggerUtility::var_dump($value, '$value', 8, false);die;
|
||||||
|
$filter[$elasticField] = $value[$inputField];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return [$config['field'] => $filter];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue