Renaming of classes, making true recursive structure

This commit is contained in:
Sobuno 2025-01-02 23:19:21 +01:00
parent 2ae3929dd6
commit af7a4b5d3d
7 changed files with 66 additions and 52 deletions

View File

@ -41,9 +41,10 @@ use FireflyIII\Repositories\Tag\TagRepositoryInterface;
use FireflyIII\Repositories\UserGroups\Currency\CurrencyRepositoryInterface; use FireflyIII\Repositories\UserGroups\Currency\CurrencyRepositoryInterface;
use FireflyIII\Support\Search\QueryParser\QueryParserInterface; use FireflyIII\Support\Search\QueryParser\QueryParserInterface;
use FireflyIII\Support\Search\QueryParser\Node; use FireflyIII\Support\Search\QueryParser\Node;
use FireflyIII\Support\Search\QueryParser\Field; use FireflyIII\Support\Search\QueryParser\FieldNode;
use FireflyIII\Support\Search\QueryParser\Word; use FireflyIII\Support\Search\QueryParser\StringNode;
use FireflyIII\Support\Search\QueryParser\Subquery; use FireflyIII\Support\Search\QueryParser\NodeGroup;
use FireflyIII\Support\ParseDateString; use FireflyIII\Support\ParseDateString;
use FireflyIII\User; use FireflyIII\User;
use Illuminate\Pagination\LengthAwarePaginator; use Illuminate\Pagination\LengthAwarePaginator;
@ -140,7 +141,7 @@ class OperatorQuerySearch implements SearchInterface
app('log')->debug(sprintf('Using %s as implementation for QueryParserInterface', get_class($parser))); app('log')->debug(sprintf('Using %s as implementation for QueryParserInterface', get_class($parser)));
try { try {
$nodes = $parser->parse($query); $parsedQuery = $parser->parse($query);
} catch (\LogicException|\TypeError $e) { } catch (\LogicException|\TypeError $e) {
app('log')->error($e->getMessage()); app('log')->error($e->getMessage());
app('log')->error(sprintf('Could not parse search: "%s".', $query)); app('log')->error(sprintf('Could not parse search: "%s".', $query));
@ -148,10 +149,8 @@ class OperatorQuerySearch implements SearchInterface
throw new FireflyException(sprintf('Invalid search value "%s". See the logs.', e($query)), 0, $e); throw new FireflyException(sprintf('Invalid search value "%s". See the logs.', e($query)), 0, $e);
} }
app('log')->debug(sprintf('Found %d node(s)', count($nodes))); app('log')->debug(sprintf('Found %d node(s) at top-level', count($parsedQuery->getNodes())));
foreach ($nodes as $node) { $this->handleSearchNode($parsedQuery);
$this->handleSearchNode($node);
}
// add missing information // add missing information
$this->collector->withBillInformation(); $this->collector->withBillInformation();
@ -170,27 +169,16 @@ class OperatorQuerySearch implements SearchInterface
app('log')->debug(sprintf('Now in handleSearchNode(%s)', get_class($node))); app('log')->debug(sprintf('Now in handleSearchNode(%s)', get_class($node)));
switch (true) { switch (true) {
case $node instanceof Word: case $node instanceof StringNode:
$word = (string) $node->getValue(); $this->handleStringNode($node);
if($node->isProhibited()) {
app('log')->debug(sprintf('Exclude word "%s" from search string', $word));
$this->prohibitedWords[] = $word;
} else {
app('log')->debug(sprintf('Add word "%s" to search string', $word));
$this->words[] = $word;
}
break; break;
case $node instanceof Field: case $node instanceof FieldNode:
$this->handleFieldNode($node); $this->handleFieldNode($node);
break; break;
case $node instanceof Subquery: case $node instanceof NodeGroup:
//TODO: Handle Subquery prohibition, i.e. flip all prohibition flags inside the subquery $this->handleNodeGroup($node);
foreach ($node->getNodes() as $subNode) {
$this->handleSearchNode($subNode);
}
break; break;
default: default:
@ -199,10 +187,32 @@ class OperatorQuerySearch implements SearchInterface
} }
} }
private function handleNodeGroup(NodeGroup $node): void
{
//TODO: Handle Subquery prohibition, i.e. flip all prohibition flags inside the subquery
foreach ($node->getNodes() as $subNode) {
$this->handleSearchNode($subNode);
}
}
private function handleStringNode(StringNode $node): void
{
$string = (string) $node->getValue();
if($node->isProhibited()) {
app('log')->debug(sprintf('Exclude string "%s" from search string', $string));
$this->prohibitedWords[] = $string;
} else {
app('log')->debug(sprintf('Add string "%s" to search string', $string));
$this->words[] = $string;
}
}
/** /**
* @throws FireflyException * @throws FireflyException
*/ */
private function handleFieldNode(Field $node): void private function handleFieldNode(FieldNode $node): void
{ {
$operator = strtolower($node->getOperator()); $operator = strtolower($node->getOperator());
$value = $node->getValue(); $value = $node->getValue();

View File

@ -7,7 +7,7 @@ namespace FireflyIII\Support\Search\QueryParser;
/** /**
* Represents a field operator with value (e.g. amount:100) * Represents a field operator with value (e.g. amount:100)
*/ */
class Field extends Node class FieldNode extends Node
{ {
private string $operator; private string $operator;
private string $value; private string $value;

View File

@ -19,17 +19,18 @@ class GdbotsQueryParser implements QueryParserInterface
} }
/** /**
* @return Node[] * @return NodeGroup
* @throws FireflyException * @throws FireflyException
*/ */
public function parse(string $query): array public function parse(string $query): NodeGroup
{ {
try { try {
$result = $this->parser->parse($query); $result = $this->parser->parse($query);
return array_map( $nodes = array_map(
fn(GdbotsNode\Node $node) => $this->convertNode($node), fn(GdbotsNode\Node $node) => $this->convertNode($node),
$result->getNodes() $result->getNodes()
); );
return new NodeGroup($nodes);
} catch (\LogicException|\TypeError $e) { } catch (\LogicException|\TypeError $e) {
fwrite(STDERR, "Setting up GdbotsQueryParserTest\n"); fwrite(STDERR, "Setting up GdbotsQueryParserTest\n");
dd('Creating GdbotsQueryParser'); dd('Creating GdbotsQueryParser');
@ -44,17 +45,17 @@ class GdbotsQueryParser implements QueryParserInterface
{ {
switch (true) { switch (true) {
case $node instanceof GdbotsNode\Word: case $node instanceof GdbotsNode\Word:
return new Word($node->getValue()); return new StringNode($node->getValue());
case $node instanceof GdbotsNode\Field: case $node instanceof GdbotsNode\Field:
return new Field( return new FieldNode(
$node->getValue(), $node->getValue(),
(string) $node->getNode()->getValue(), (string) $node->getNode()->getValue(),
BoolOperator::PROHIBITED === $node->getBoolOperator() BoolOperator::PROHIBITED === $node->getBoolOperator()
); );
case $node instanceof GdbotsNode\Subquery: case $node instanceof GdbotsNode\Subquery:
return new Subquery( return new NodeGroup(
array_map( array_map(
fn(GdbotsNode\Node $subNode) => $this->convertNode($subNode), fn(GdbotsNode\Node $subNode) => $this->convertNode($subNode),
$node->getNodes() $node->getNodes()
@ -69,7 +70,7 @@ class GdbotsQueryParser implements QueryParserInterface
case $node instanceof GdbotsNode\Mention: case $node instanceof GdbotsNode\Mention:
case $node instanceof GdbotsNode\Emoticon: case $node instanceof GdbotsNode\Emoticon:
case $node instanceof GdbotsNode\Emoji: case $node instanceof GdbotsNode\Emoji:
return new Word((string) $node->getValue()); return new StringNode((string) $node->getValue());
default: default:
throw new FireflyException( throw new FireflyException(

View File

@ -5,9 +5,11 @@ declare(strict_types=1);
namespace FireflyIII\Support\Search\QueryParser; namespace FireflyIII\Support\Search\QueryParser;
/** /**
* Represents a subquery (group of nodes) * Represents a group of nodes.
*
* NodeGroups can be nested inside other NodeGroups, making them subqueries
*/ */
class Subquery extends Node class NodeGroup extends Node
{ {
/** @var Node[] */ /** @var Node[] */
private array $nodes; private array $nodes;

View File

@ -30,16 +30,16 @@ class QueryParser implements QueryParserInterface
private string $query; private string $query;
private int $position = 0; private int $position = 0;
/** @return Node[] */ /** @return NodeGroup */
public function parse(string $query): array public function parse(string $query): NodeGroup
{ {
$this->query = $query; $this->query = $query;
$this->position = 0; $this->position = 0;
return $this->parseQuery(false); return $this->buildNodeGroup(false);
} }
/** @return Node[] */ /** @return NodeGroup */
private function parseQuery(bool $isSubquery): array private function buildNodeGroup(bool $isSubquery, bool $prohibited = false): NodeGroup
{ {
$nodes = []; $nodes = [];
$nodeResult = $this->buildNextNode($isSubquery); $nodeResult = $this->buildNextNode($isSubquery);
@ -52,7 +52,7 @@ class QueryParser implements QueryParserInterface
$nodeResult = $this->buildNextNode($isSubquery); $nodeResult = $this->buildNextNode($isSubquery);
} }
return $nodes; return new NodeGroup($nodes, $prohibited);
} }
private function buildNextNode(bool $isSubquery): NodeResult private function buildNextNode(bool $isSubquery): NodeResult
@ -105,8 +105,7 @@ class QueryParser implements QueryParserInterface
if ($tokenUnderConstruction === '') { if ($tokenUnderConstruction === '') {
// A left parentheses at the beginning of a token indicates the start of a subquery // A left parentheses at the beginning of a token indicates the start of a subquery
$this->position++; $this->position++;
return new NodeResult( return new NodeResult($this->buildNodeGroup(true, $prohibited),
new Subquery($this->parseQuery(true), $prohibited),
false false
); );
} else { } else {
@ -161,16 +160,18 @@ class QueryParser implements QueryParserInterface
$this->position++; $this->position++;
} }
return new NodeResult($tokenUnderConstruction !== '' || $fieldName !== '' $finalNode = $tokenUnderConstruction !== '' || $fieldName !== ''
? $this->createNode($tokenUnderConstruction, $fieldName, $prohibited) ? $this->createNode($tokenUnderConstruction, $fieldName, $prohibited)
: null, true); : null;
return new NodeResult($finalNode, true);
} }
private function createNode(string $token, string $fieldName, bool $prohibited): Node private function createNode(string $token, string $fieldName, bool $prohibited): Node
{ {
if (strlen($fieldName) > 0) { if (strlen($fieldName) > 0) {
return new Field(trim($fieldName), trim($token), $prohibited); return new FieldNode(trim($fieldName), trim($token), $prohibited);
} }
return new Word(trim($token), $prohibited); return new StringNode(trim($token), $prohibited);
} }
} }

View File

@ -7,7 +7,7 @@ namespace FireflyIII\Support\Search\QueryParser;
interface QueryParserInterface interface QueryParserInterface
{ {
/** /**
* @return Node[] * @return NodeGroup
*/ */
public function parse(string $query): array; public function parse(string $query): NodeGroup;
} }

View File

@ -5,9 +5,9 @@ declare(strict_types=1);
namespace FireflyIII\Support\Search\QueryParser; namespace FireflyIII\Support\Search\QueryParser;
/** /**
* Represents a word in the search query, meaning either a single-word without spaces or a quote-delimited string * Represents a string in the search query, meaning either a single-word without spaces or a quote-delimited string
*/ */
class Word extends Node class StringNode extends Node
{ {
private string $value; private string $value;