Files
Phraseanet/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/TextNode.php
jygaulier 63bee24775 PHRAS-3389_use-only-conceptpaths-from-selected-dbs_MASTER
fix : search only concept-paths from the relevant thesaurus
fix : search only fields from the relevant databoxes (collections)
2021-04-08 18:15:27 +02:00

93 lines
3.1 KiB
PHP

<?php
namespace Alchemy\Phrasea\SearchEngine\Elastic\AST;
use Alchemy\Phrasea\SearchEngine\Elastic\Search\QueryContext;
use Alchemy\Phrasea\SearchEngine\Elastic\Search\QueryHelper;
use Alchemy\Phrasea\SearchEngine\Elastic\Structure\Field;
use Alchemy\Phrasea\SearchEngine\Elastic\Thesaurus\Term;
class TextNode extends AbstractTermNode implements ContextAbleInterface
{
/**
* Merge two text nodes by concatenating their content.
*
* /!\ Text contexts are lost in the process
*
* @param TextNode $a First node
* @param TextNode $b The other one
* @return TextNode Merged text node
*/
public static function merge(TextNode $a, TextNode $b)
{
return new self(sprintf('%s%s', $a->getValue(), $b->getValue()));
}
/**
* Creates a new text node with the same content and the provided context.
*
* /!\ The original node context will not be preserved (ie. not merged).
*
* @param Context $context Context to add on the new node
* @return TextNode A text node with a context
*/
public function withContext(Context $context)
{
return new self($this->getValue(), $context);
}
public function buildQuery(QueryContext $context)
{
$query_builder = function (array $fields) use ($context) {
/** @var Field[] $fields */
// Full text
$index_fields = [];
$th_fields = [];
foreach ($fields as $field) {
foreach ($context->localizeField($field) as $f) {
$index_fields[] = $f;
}
foreach ($context->truncationField($field) as $f) {
$index_fields[] = $f;
}
if($field->hasConceptInference()) {
$th_fields[] = $field;
}
}
if (!$index_fields) {
return null;
}
$query = [
'multi_match' => [
'fields' => $index_fields,
'query' => $this->text,
'type' => 'cross_fields',
'operator' => 'and',
'lenient' => true,
]
];
// Thesaurus
$concept_queries = $this->buildConceptQueries($th_fields);
foreach ($concept_queries as $concept_query) {
$query = QueryHelper::applyBooleanClause($query, 'should', $concept_query);
}
return $query;
};
$unrestricted_fields = $context->getUnrestrictedFields();
$private_fields = $context->getPrivateFields();
$query = $query_builder($unrestricted_fields);
foreach (QueryHelper::wrapPrivateFieldQueries($private_fields, $unrestricted_fields, $query_builder) as $private_field_query) {
$query = QueryHelper::applyBooleanClause($query, 'should', $private_field_query);
}
return $query;
}
public function __toString()
{
return sprintf('<text:%s>', Term::dump($this));
}
}