![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mautic.corals.io/vendor/beberlei/doctrineextensions/src/Query/Mysql/ |
<?php namespace DoctrineExtensions\Query\Mysql; use Doctrine\ORM\Query\AST\Functions\FunctionNode; use Doctrine\ORM\Query\Lexer; class MatchAgainst extends FunctionNode { /** @var array list of \Doctrine\ORM\Query\AST\PathExpression */ protected $pathExp = null; /** @var string */ protected $against = null; /** @var bool */ protected $booleanMode = false; /** @var bool */ protected $queryExpansion = false; public function parse(\Doctrine\ORM\Query\Parser $parser) { // match $parser->match(Lexer::T_IDENTIFIER); $parser->match(Lexer::T_OPEN_PARENTHESIS); // first Path Expression is mandatory $this->pathExp = []; $this->pathExp[] = $parser->StateFieldPathExpression(); // Subsequent Path Expressions are optional $lexer = $parser->getLexer(); while ($lexer->isNextToken(Lexer::T_COMMA)) { $parser->match(Lexer::T_COMMA); $this->pathExp[] = $parser->StateFieldPathExpression(); } $parser->match(Lexer::T_CLOSE_PARENTHESIS); // against if (strtolower($lexer->lookahead['value']) !== 'against') { $parser->syntaxError('against'); } $parser->match(Lexer::T_IDENTIFIER); $parser->match(Lexer::T_OPEN_PARENTHESIS); $this->against = $parser->StringPrimary(); if (strtolower($lexer->lookahead['value']) === 'boolean') { $parser->match(Lexer::T_IDENTIFIER); $this->booleanMode = true; } elseif (strtolower($lexer->lookahead['value']) === 'in') { $parser->match(Lexer::T_IDENTIFIER); if (strtolower($lexer->lookahead['value']) !== 'boolean') { $parser->syntaxError('boolean'); } $parser->match(Lexer::T_IDENTIFIER); if (strtolower($lexer->lookahead['value']) !== 'mode') { $parser->syntaxError('mode'); } $parser->match(Lexer::T_IDENTIFIER); $this->booleanMode = true; } if (strtolower($lexer->lookahead['value']) === 'expand') { $parser->match(Lexer::T_IDENTIFIER); $this->queryExpansion = true; } elseif (strtolower($lexer->lookahead['value']) === 'with') { $parser->match(Lexer::T_IDENTIFIER); if (strtolower($lexer->lookahead['value']) !== 'query') { $parser->syntaxError('query'); } $parser->match(Lexer::T_IDENTIFIER); if (strtolower($lexer->lookahead['value']) !== 'expansion') { $parser->syntaxError('expansion'); } $parser->match(Lexer::T_IDENTIFIER); $this->queryExpansion = true; } $parser->match(Lexer::T_CLOSE_PARENTHESIS); } public function getSql(\Doctrine\ORM\Query\SqlWalker $walker) { $fields = []; foreach ($this->pathExp as $pathExp) { $fields[] = $pathExp->dispatch($walker); } $against = $walker->walkStringPrimary($this->against) . ($this->booleanMode ? ' IN BOOLEAN MODE' : '') . ($this->queryExpansion ? ' WITH QUERY EXPANSION' : ''); return sprintf('MATCH (%s) AGAINST (%s)', implode(', ', $fields), $against); } }