-
Notifications
You must be signed in to change notification settings - Fork 95
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[FEATURE] Allow null coalesce operator in evaluation (#522) #572
Open
CDRO
wants to merge
4
commits into
TYPO3:main
Choose a base branch
from
CDRO:feature/nullcoalescing
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
85 changes: 85 additions & 0 deletions
85
src/Core/Parser/SyntaxTree/Expression/NullcoalescingExpressionNode.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
<?php | ||
namespace TYPO3Fluid\Fluid\Core\Parser\SyntaxTree\Expression; | ||
|
||
/* | ||
* This file belongs to the package "TYPO3 Fluid". | ||
* See LICENSE.txt that was shipped with this package. | ||
*/ | ||
|
||
use TYPO3Fluid\Fluid\Core\Compiler\TemplateCompiler; | ||
use TYPO3Fluid\Fluid\Core\Parser\BooleanParser; | ||
use TYPO3Fluid\Fluid\Core\Parser\SyntaxTree\BooleanNode; | ||
use TYPO3Fluid\Fluid\Core\Rendering\RenderingContextInterface; | ||
use TYPO3Fluid\Fluid\Core\Variables\VariableExtractor; | ||
|
||
/** | ||
* Null Coalescing Condition Node - allows the shorthand of a null check | ||
* for a default value as `{nullableVar ?? valueIfNull}` | ||
*/ | ||
class NullcoalescingExpressionNode extends AbstractExpressionNode | ||
{ | ||
|
||
/** | ||
* Pattern which detects null coalescing conditions written in shorthand | ||
* syntax, e.g. {nullableVar ?? valueIfNull}. | ||
*/ | ||
public static $detectionExpression = '/ | ||
( | ||
{ # Start of shorthand syntax | ||
(?: # Math expression is composed of... | ||
[\\!_a-zA-Z0-9.\(\)\!\|\&\\\'\'\"\=\<\>\%\s\{\}\:\,]+ # Check variable side | ||
[\s]?\?\?[\s]? | ||
[_a-zA-Z0-9.\s\'\"\\.]+ # Fallback value side | ||
) | ||
} # End of shorthand syntax | ||
)/x'; | ||
|
||
/** | ||
* Filter out variable names form expression | ||
*/ | ||
protected static $variableDetection = '/[^\'_a-zA-Z0-9\.\\\\]{0,1}([_a-zA-Z0-9\.\\\\]*)[^\']{0,1}/'; | ||
|
||
/** | ||
* @param RenderingContextInterface $renderingContext | ||
* @param string $expression | ||
* @param array $matches | ||
* @return mixed | ||
*/ | ||
public static function evaluateExpression(RenderingContextInterface $renderingContext, $expression, array $matches) | ||
{ | ||
$parts = preg_split('/([\?\?])/s', $expression); | ||
$parts = array_map([__CLASS__, 'trimPart'], $parts); | ||
|
||
foreach($parts as $part) { | ||
$value = static::getTemplateVariableOrValueItself($part, $renderingContext); | ||
if(!is_null($value)) { | ||
return $value; | ||
} | ||
} | ||
|
||
return null; | ||
} | ||
|
||
|
||
/** | ||
* @param mixed $candidate | ||
* @param RenderingContextInterface $renderingContext | ||
* @return mixed | ||
*/ | ||
protected static function getTemplateVariableOrValueItself($candidate, RenderingContextInterface $renderingContext) | ||
{ | ||
$variables = $renderingContext->getVariableProvider()->getAll(); | ||
$extractor = new VariableExtractor(); | ||
$suspect = $extractor->getByPath($variables, $candidate); | ||
|
||
if (is_numeric($candidate)) { | ||
$suspect = $candidate; | ||
} elseif (mb_strpos($candidate, '\'') === 0) { | ||
$suspect = trim($candidate, '\''); | ||
} elseif (mb_strpos($candidate, '"') === 0) { | ||
$suspect = trim($candidate, '"'); | ||
} | ||
|
||
return $suspect; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
59 changes: 59 additions & 0 deletions
59
tests/Unit/Core/Parser/SyntaxTree/Expression/NullcoalescingExpressionNodeTest.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
<?php | ||
namespace TYPO3Fluid\Fluid\Tests\Unit\Core\Parser\SyntaxTree; | ||
|
||
/* | ||
* This file belongs to the package "TYPO3 Fluid". | ||
* See LICENSE.txt that was shipped with this package. | ||
*/ | ||
|
||
use TYPO3Fluid\Fluid\Core\Parser\SyntaxTree\Expression\NullcoalescingExpressionNode; | ||
use TYPO3Fluid\Fluid\Core\Rendering\RenderingContext; | ||
use TYPO3Fluid\Fluid\Core\Variables\StandardVariableProvider; | ||
use TYPO3Fluid\Fluid\Tests\UnitTestCase; | ||
|
||
/** | ||
* Class TernaryExpressionNodeTest | ||
*/ | ||
class NullcoalescingExpressionNodeTest extends UnitTestCase | ||
{ | ||
|
||
|
||
/** | ||
* @dataProvider getEvaluateExpressionTestValues | ||
* @param string $expression | ||
* @param array $variables | ||
* @param mixed $expected | ||
*/ | ||
public function testEvaluateExpression($expression, array $variables, $expected) | ||
{ | ||
$renderingContext = new RenderingContext(); | ||
$renderingContext->setVariableProvider(new StandardVariableProvider($variables)); | ||
$result = NullcoalescingExpressionNode::evaluateExpression($renderingContext, $expression, []); | ||
$this->assertEquals($expected, $result); | ||
} | ||
|
||
/** | ||
* @return array | ||
*/ | ||
public function getEvaluateExpressionTestValues() | ||
{ | ||
return [ | ||
['{a ?? 1}', ['a' => 'a'], 'a'], | ||
['{a ?? 1}', ['a' => null], 1], | ||
['{a ?? b}', ['a' => 'a', 'b' => 'b'], 'a'], | ||
['{a ?? b}', ['a' => null, 'b' => 'b'], 'b'], | ||
['{a ?? b ?? c}', ['a' => 1, 'b' => 2, 'c' => 3], 1], | ||
['{a ?? b ?? c}', ['a' => 1, 'b' => null, 'c' => 3], 1], | ||
['{a ?? b ?? c}', ['a' => null, 'b' => 2, 'c' => 3], 2], | ||
['{a ?? b ?? c}', ['a' => null, 'b' => null, 'c' => 3], 3], | ||
['{a ?? b ?? c}', ['a' => 'd', 'b' => 'e', 'c' => 'f'], 'd'], | ||
['{a ?? b ?? c}', ['a' => 'd', 'b' => null, 'c' => 'f'], 'd'], | ||
['{a ?? b ?? c}', ['a' => null, 'b' => 'e', 'c' => 'f'], 'e'], | ||
['{a ?? b ?? c}', ['a' => null, 'b' => null, 'c' => 'f'], 'f'], | ||
['{a ?? b ?? c}', ['a' => null, 'b' => null, 'c' => null], null], | ||
['{a ?? b ?? \'test\'}', ['a' => null, 'b' => null], 'test'], | ||
['{a ?? b ?? "test"}', ['a' => null, 'b' => null], 'test'], | ||
|
||
]; | ||
} | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These 4 cases can be dropped since they are basically the same as the 4 before them, only a bit more confusing. ;-)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, absolutely, but I guess I'll leave them, because in the beginning,
$a
was always equals toa
which ended in some false positives that I tried to avoid with this test, but yeah, makes sense to remove them, although assuming that'1'
is interpreted as string instead of an integer might be a bit of a strech. I'll have to test it :-)