Files
cms-install/Classes/ExtensionScanner/Php/Matcher/ConstantMatcher.php
T

63 lines
1.8 KiB
PHP

<?php
declare(strict_types=1);
/*
* This file is part of the TYPO3 CMS project.
*
* It is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, either version 2
* of the License, or any later version.
*
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*
* The TYPO3 project - inspiring people to share!
*/
namespace TYPO3\CMS\Install\ExtensionScanner\Php\Matcher;
use PhpParser\Node;
use PhpParser\Node\Expr\ConstFetch;
/**
* Find usages of class constants.
*
* Test for "THE_CONSTANT", matches are considered "strong"
* @internal This class is only meant to be used within EXT:install and is not part of the TYPO3 Core API.
*/
class ConstantMatcher extends AbstractCoreMatcher
{
/**
* Validate config
*
* @param array $matcherDefinitions Incoming main configuration
*/
public function __construct(array $matcherDefinitions)
{
$this->matcherDefinitions = $matcherDefinitions;
$this->validateMatcherDefinitions();
}
/**
* Called by PhpParser.
*/
public function enterNode(Node $node): null
{
if (!$this->isFileIgnored($node)
&& !$this->isLineIgnored($node)
&& $node instanceof ConstFetch
&& array_key_exists($node->name->toString(), $this->matcherDefinitions)
) {
// Access to constants is detected as strong match
$this->matches[] = [
'restFiles' => $this->matcherDefinitions[$node->name->toString()]['restFiles'],
'line' => $node->getAttribute('startLine'),
'message' => 'Call to global constant "' . $node->name->toString() . '"',
'indicator' => 'strong',
];
}
return null;
}
}