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

113 lines
3.1 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\Core\RectorDefinition\ConfiguredCodeSample;
use Rector\Core\RectorDefinition\RectorDefinition;
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 OLD_TO_NEW_CONSTANTS_BY_CLASS = '$oldToNewConstantsByClass';
2017-10-20 18:29:23 +00:00
/**
* class => [
* OLD_CONSTANT => NEW_CONSTANT
* ]
*
2020-07-29 13:55:33 +00:00
* @var array<string, array<string, string>>
2017-10-20 18:29:23 +00:00
*/
private $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
[
self::OLD_TO_NEW_CONSTANTS_BY_CLASS => [
'SomeClass' => [
'OLD_CONSTANT' => 'NEW_CONSTANT',
'OTHER_OLD_CONSTANT' => 'DifferentClass::NEW_CONSTANT',
],
2019-05-28 16:28:20 +00:00
],
]
),
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
}
2020-07-29 13:55:33 +00:00
/**
* @param mixed[] $configuration
*/
public function configure(array $configuration): void
{
$this->oldToNewConstantsByClass = $configuration[self::OLD_TO_NEW_CONSTANTS_BY_CLASS] ?? [];
}
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
}