rector/src/Rector/Dynamic/ClassConstantReplacerRector.php

110 lines
2.8 KiB
PHP
Raw Normal View History

2017-10-20 18:29:23 +00:00
<?php declare(strict_types=1);
namespace Rector\Rector\Dynamic;
use PhpParser\Node;
use PhpParser\Node\Expr\ClassConstFetch;
use PhpParser\Node\Identifier;
use Rector\Builder\IdentifierRenamer;
2017-10-20 18:29:23 +00:00
use Rector\NodeAnalyzer\ClassConstAnalyzer;
use Rector\Rector\AbstractRector;
2018-04-08 11:51:26 +00:00
use Rector\RectorDefinition\CodeSample;
use Rector\RectorDefinition\RectorDefinition;
2017-10-20 18:29:23 +00:00
final class ClassConstantReplacerRector extends AbstractRector
{
/**
* class => [
* OLD_CONSTANT => NEW_CONSTANT
* ]
*
* @var string[]
*/
private $oldToNewConstantsByClass = [];
/**
* @var ClassConstAnalyzer
*/
private $classConstAnalyzer;
/**
* @var IdentifierRenamer
*/
private $identifierRenamer;
2017-10-20 18:29:23 +00:00
/**
2017-11-06 12:58:51 +00:00
* @var string|null
2017-10-20 18:29:23 +00:00
*/
private $activeType;
/**
* @param string[] $oldToNewConstantsByClass
*/
public function __construct(
array $oldToNewConstantsByClass,
ClassConstAnalyzer $classConstAnalyzer,
IdentifierRenamer $identifierRenamer
) {
2017-10-20 18:29:23 +00:00
$this->oldToNewConstantsByClass = $oldToNewConstantsByClass;
$this->classConstAnalyzer = $classConstAnalyzer;
$this->identifierRenamer = $identifierRenamer;
2017-10-20 18:29:23 +00:00
}
2018-04-08 11:51:26 +00:00
/**
* @todo complete list with all possibilities
*/
public function getDefinition(): RectorDefinition
{
return new RectorDefinition('[Dynamic] Replaces defined class constants in their calls.', [
2018-04-08 14:05:11 +00:00
new CodeSample('$value = SomeClass::OLD_CONSTANT;', '$value = SomeClass::NEW_CONSTANT;'),
2018-04-08 11:51:26 +00:00
]);
}
2017-10-20 18:29:23 +00:00
public function isCandidate(Node $node): bool
{
$this->activeType = null;
foreach ($this->oldToNewConstantsByClass as $type => $oldToNewConstants) {
$matchedType = $this->classConstAnalyzer->matchTypes($node, $this->getTypes());
if ($matchedType) {
$this->activeType = $matchedType;
2017-10-20 18:35:04 +00:00
2017-10-20 18:29:23 +00:00
return true;
}
}
return false;
}
/**
* @param ClassConstFetch $classConstFetchNode
*/
public function refactor(Node $classConstFetchNode): ?Node
{
$configuration = $this->oldToNewConstantsByClass[$this->activeType];
2017-12-10 00:28:51 +00:00
/** @var Identifier $identifierNode */
$identifierNode = $classConstFetchNode->name;
$constantName = $identifierNode->toString();
2017-10-20 18:29:23 +00:00
$newConstantName = $configuration[$constantName];
2018-07-25 11:06:07 +00:00
if ($newConstantName === '') {
return $classConstFetchNode;
}
2017-10-20 18:29:23 +00:00
$this->identifierRenamer->renameNode($classConstFetchNode, $newConstantName);
2017-12-25 19:37:09 +00:00
return $classConstFetchNode;
2017-10-20 18:29:23 +00:00
}
/**
* @return string[]
*/
private function getTypes(): array
{
return array_keys($this->oldToNewConstantsByClass);
}
}