2021-04-17 00:26:33 +02:00
|
|
|
<?php
|
|
|
|
namespace WapplerSystems\Meilisearch\Domain\Search\Query\ParameterBuilder;
|
|
|
|
|
|
|
|
/***************************************************************
|
|
|
|
* Copyright notice
|
|
|
|
*
|
2021-04-17 21:20:54 +02:00
|
|
|
* (c) 2010-2017 dkd Internet Service GmbH <meilisearch-support@dkd.de>
|
2021-04-17 00:26:33 +02:00
|
|
|
* All rights reserved
|
|
|
|
*
|
|
|
|
* This script is part of the TYPO3 project. The TYPO3 project 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 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* The GNU General Public License can be found at
|
|
|
|
* http://www.gnu.org/copyleft/gpl.html.
|
|
|
|
*
|
|
|
|
* This script 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.
|
|
|
|
*
|
|
|
|
* This copyright notice MUST APPEAR in all copies of the script!
|
|
|
|
***************************************************************/
|
|
|
|
|
|
|
|
use TYPO3\CMS\Core\Utility\GeneralUtility;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The AbstractFieldList class
|
|
|
|
*/
|
|
|
|
abstract class AbstractFieldList extends AbstractDeactivatable
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $fieldList = [];
|
|
|
|
|
|
|
|
/**
|
2021-04-17 21:20:54 +02:00
|
|
|
* Parameter key which should be used for Meilisearch URL query
|
2021-04-17 00:26:33 +02:00
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $parameterKey = '';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* FieldList parameter builder constructor.
|
|
|
|
*
|
|
|
|
* @param array $fieldList
|
|
|
|
*/
|
|
|
|
public function __construct($isEnabled, array $fieldList = [])
|
|
|
|
{
|
|
|
|
$this->isEnabled = $isEnabled;
|
|
|
|
$this->fieldList = $fieldList;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $fieldListString
|
|
|
|
* @param string $delimiter
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
protected static function buildFieldList(string $fieldListString, string $delimiter):array
|
|
|
|
{
|
|
|
|
$fields = GeneralUtility::trimExplode($delimiter, $fieldListString, true);
|
|
|
|
$fieldList = [];
|
|
|
|
|
|
|
|
foreach ($fields as $field) {
|
|
|
|
$fieldNameAndBoost = explode('^', $field);
|
|
|
|
|
|
|
|
$boost = 1.0;
|
|
|
|
if (isset($fieldNameAndBoost[1])) {
|
|
|
|
$boost = floatval($fieldNameAndBoost[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
$fieldName = $fieldNameAndBoost[0];
|
|
|
|
$fieldList[$fieldName] = $boost;
|
|
|
|
}
|
|
|
|
return $fieldList;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $fieldName
|
|
|
|
* @param float $boost
|
|
|
|
*
|
|
|
|
* @return AbstractFieldList
|
|
|
|
*/
|
|
|
|
public function add(string $fieldName, float $boost = 1.0): AbstractFieldList
|
|
|
|
{
|
|
|
|
$this->fieldList[$fieldName] = (float)$boost;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates the string representation
|
|
|
|
*
|
|
|
|
* @param string $delimiter
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function toString(string $delimiter = ' ')
|
|
|
|
{
|
|
|
|
$fieldListString = '';
|
|
|
|
|
|
|
|
foreach ($this->fieldList as $fieldName => $fieldBoost) {
|
|
|
|
$fieldListString .= $fieldName;
|
|
|
|
|
|
|
|
if ($fieldBoost != 1.0) {
|
|
|
|
$fieldListString .= '^' . number_format($fieldBoost, 1, '.', '');
|
|
|
|
}
|
|
|
|
|
|
|
|
$fieldListString .= $delimiter;
|
|
|
|
}
|
|
|
|
|
|
|
|
return rtrim($fieldListString, $delimiter);
|
|
|
|
}
|
|
|
|
}
|