rector/packages/Renaming/src/Rector/Constant/RenameClassConstantRector.php

103 lines
2.8 KiB
PHP
Raw Normal View History

2017-10-20 18:29:23 +00:00
<?php declare(strict_types=1);
namespace Rector\Renaming\Rector\Constant;
2017-10-20 18:29:23 +00:00
use Nette\Utils\Strings;
2017-10-20 18:29:23 +00:00
use PhpParser\Node;
use PhpParser\Node\Expr\ClassConstFetch;
use PhpParser\Node\Identifier;
use PhpParser\Node\Name\FullyQualified;
2017-10-20 18:29:23 +00:00
use Rector\Rector\AbstractRector;
use Rector\RectorDefinition\ConfiguredCodeSample;
2018-04-08 11:51:26 +00:00
use Rector\RectorDefinition\RectorDefinition;
2017-10-20 18:29:23 +00:00
2019-09-03 09:11:45 +00:00
/**
* @see \Rector\Renaming\Tests\Rector\Constant\RenameClassConstantRector\RenameClassConstantRectorTest
2019-09-03 09:11:45 +00:00
*/
final class RenameClassConstantRector extends AbstractRector
2017-10-20 18:29:23 +00:00
{
/**
* class => [
* OLD_CONSTANT => NEW_CONSTANT
* ]
*
2018-10-15 02:37:09 +00:00
* @var string[][]
2017-10-20 18:29:23 +00:00
*/
private $oldToNewConstantsByClass = [];
/**
2018-10-15 02:37:09 +00:00
* @param string[][] $oldToNewConstantsByClass
2017-10-20 18:29:23 +00:00
*/
public function __construct(array $oldToNewConstantsByClass = [])
2018-10-15 02:37:09 +00:00
{
2017-10-20 18:29:23 +00:00
$this->oldToNewConstantsByClass = $oldToNewConstantsByClass;
}
2018-04-08 11:51:26 +00:00
public function getDefinition(): RectorDefinition
{
return new RectorDefinition('Replaces defined class constants in their calls.', [
new ConfiguredCodeSample(
2019-09-18 06:14:35 +00:00
<<<'PHP'
$value = SomeClass::OLD_CONSTANT;
$value = SomeClass::OTHER_OLD_CONSTANT;
2019-09-18 06:14:35 +00:00
PHP
,
2019-09-18 06:14:35 +00:00
<<<'PHP'
$value = SomeClass::NEW_CONSTANT;
$value = DifferentClass::NEW_CONSTANT;
2019-09-18 06:14:35 +00:00
PHP
,
2019-05-28 16:28:20 +00:00
[
'SomeClass' => [
'OLD_CONSTANT' => 'NEW_CONSTANT',
'OTHER_OLD_CONSTANT' => 'DifferentClass::NEW_CONSTANT',
],
]
),
2018-04-08 11:51:26 +00:00
]);
}
2018-08-14 22:12:41 +00:00
/**
* @return string[]
*/
public function getNodeTypes(): array
2017-10-20 18:29:23 +00:00
{
2018-08-14 22:12:41 +00:00
return [ClassConstFetch::class];
2017-10-20 18:29:23 +00:00
}
/**
* @param ClassConstFetch $node
2017-10-20 18:29:23 +00:00
*/
public function refactor(Node $node): ?Node
2017-10-20 18:29:23 +00:00
{
2018-10-15 02:37:09 +00:00
foreach ($this->oldToNewConstantsByClass as $type => $oldToNewConstants) {
2019-09-04 12:10:29 +00:00
if (! $this->isObjectType($node, $type)) {
2018-10-15 02:37:09 +00:00
continue;
}
2017-12-10 00:28:51 +00:00
2018-10-15 02:37:09 +00:00
foreach ($oldToNewConstants as $oldConstant => $newConstant) {
2019-08-25 10:37:56 +00:00
if (! $this->isName($node->name, $oldConstant)) {
2018-10-15 02:37:09 +00:00
continue;
}
2017-10-20 18:29:23 +00:00
if (Strings::contains($newConstant, '::')) {
return $this->createClassConstantFetchNodeFromDoubleColonFormat($newConstant);
}
$node->name = new Identifier($newConstant);
return $node;
2018-10-15 02:37:09 +00:00
}
}
2017-10-20 18:29:23 +00:00
return $node;
2017-10-20 18:29:23 +00:00
}
private function createClassConstantFetchNodeFromDoubleColonFormat(string $constant): ClassConstFetch
{
[$constantClass, $constantName] = explode('::', $constant);
return new ClassConstFetch(new FullyQualified($constantClass), new Identifier($constantName));
}
2017-10-20 18:29:23 +00:00
}