rector/rules/renaming/src/Rector/ClassConstFetch/RenameClassConstantRector.php

114 lines
3.3 KiB
PHP
Raw Normal View History

2019-10-13 05:59:52 +00:00
<?php
declare(strict_types=1);
2017-10-20 18:29:23 +00:00
namespace Rector\Renaming\Rector\ClassConstFetch;
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;
2020-07-29 13:55:33 +00:00
use Rector\Core\Contract\Rector\ConfigurableRectorInterface;
use Rector\Core\Rector\AbstractRector;
use Rector\Renaming\ValueObject\RenameClassConstant;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\ConfiguredCodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
use Webmozart\Assert\Assert;
2017-10-20 18:29:23 +00:00
2019-09-03 09:11:45 +00:00
/**
* @see \Rector\Renaming\Tests\Rector\ClassConstFetch\RenameClassConstantRector\RenameClassConstantRectorTest
2019-09-03 09:11:45 +00:00
*/
2020-07-29 13:55:33 +00:00
final class RenameClassConstantRector extends AbstractRector implements ConfigurableRectorInterface
2017-10-20 18:29:23 +00:00
{
2020-07-29 13:55:33 +00:00
/**
* @var string
*/
public const CLASS_CONSTANT_RENAME = 'constant_rename';
2020-07-29 13:55:33 +00:00
2017-10-20 18:29:23 +00:00
/**
* @var RenameClassConstant[]
2017-10-20 18:29:23 +00:00
*/
private $classConstantRenames = [];
2017-10-20 18:29:23 +00:00
public function getRuleDefinition(): RuleDefinition
2018-04-08 11:51:26 +00:00
{
$configuration = [
self::CLASS_CONSTANT_RENAME => [
new RenameClassConstant('SomeClass', 'OLD_CONSTANT', 'NEW_CONSTANT'),
new RenameClassConstant('SomeClass', 'OTHER_OLD_CONSTANT', 'DifferentClass::NEW_CONSTANT'),
],
];
return new RuleDefinition(
'Replaces defined class constants in their calls.',
[
new ConfiguredCodeSample(
<<<'CODE_SAMPLE'
$value = SomeClass::OLD_CONSTANT;
$value = SomeClass::OTHER_OLD_CONSTANT;
CODE_SAMPLE
,
<<<'CODE_SAMPLE'
$value = SomeClass::NEW_CONSTANT;
$value = DifferentClass::NEW_CONSTANT;
CODE_SAMPLE
,
$configuration
),
]);
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
{
foreach ($this->classConstantRenames as $classConstantRename) {
if (! $this->isObjectType($node, $classConstantRename->getOldClass())) {
2018-10-15 02:37:09 +00:00
continue;
}
2017-12-10 00:28:51 +00:00
if (! $this->isName($node->name, $classConstantRename->getOldConstant())) {
continue;
}
2017-10-20 18:29:23 +00:00
if (Strings::contains($classConstantRename->getNewConstant(), '::')) {
return $this->createClassConstantFetchNodeFromDoubleColonFormat($classConstantRename->getNewConstant());
}
$node->name = new Identifier($classConstantRename->getNewConstant());
return $node;
}
2017-10-20 18:29:23 +00:00
return $node;
2017-10-20 18:29:23 +00:00
}
2020-07-29 13:55:33 +00:00
/**
* @param mixed[] $configuration
*/
public function configure(array $configuration): void
{
$classConstantRenames = $configuration[self::CLASS_CONSTANT_RENAME] ?? [];
Assert::allIsInstanceOf($classConstantRenames, RenameClassConstant::class);
$this->classConstantRenames = $classConstantRenames;
2020-07-29 13:55:33 +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
}