rector/rules/Renaming/Rector/MethodCall/RenameMethodRector.php

128 lines
5.5 KiB
PHP
Raw Normal View History

2019-10-13 05:59:52 +00:00
<?php
declare (strict_types=1);
2019-09-23 15:09:26 +00:00
namespace Rector\Renaming\Rector\MethodCall;
2017-10-06 11:57:21 +00:00
2018-12-11 17:22:54 +00:00
use PhpParser\BuilderHelpers;
2017-10-06 11:57:21 +00:00
use PhpParser\Node;
2018-12-11 17:22:54 +00:00
use PhpParser\Node\Expr\ArrayDimFetch;
use PhpParser\Node\Expr\MethodCall;
use PhpParser\Node\Expr\StaticCall;
use PhpParser\Node\Identifier;
use PhpParser\Node\Stmt\ClassLike;
use PhpParser\Node\Stmt\ClassMethod;
2020-07-29 13:55:33 +00:00
use Rector\Core\Contract\Rector\ConfigurableRectorInterface;
use Rector\Core\NodeManipulator\ClassManipulator;
use Rector\Core\Rector\AbstractRector;
use Rector\Renaming\Collector\MethodCallRenameCollector;
use Rector\Renaming\Contract\MethodCallRenameInterface;
use Rector\Renaming\ValueObject\MethodCallRename;
use Rector\Renaming\ValueObject\MethodCallRenameWithArrayKey;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\ConfiguredCodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
use RectorPrefix20220218\Webmozart\Assert\Assert;
2019-09-03 09:11:45 +00:00
/**
* @see \Rector\Tests\Renaming\Rector\MethodCall\RenameMethodRector\RenameMethodRectorTest
2019-09-03 09:11:45 +00:00
*/
final class RenameMethodRector extends \Rector\Core\Rector\AbstractRector implements \Rector\Core\Contract\Rector\ConfigurableRectorInterface
2017-10-06 11:57:21 +00:00
{
2020-07-29 13:55:33 +00:00
/**
* @deprecated
2020-07-29 13:55:33 +00:00
* @var string
*/
public const METHOD_CALL_RENAMES = 'method_call_renames';
2017-10-06 11:57:21 +00:00
/**
* @var MethodCallRenameInterface[]
2017-10-06 11:57:21 +00:00
*/
private $methodCallRenames = [];
/**
* @readonly
* @var \Rector\Core\NodeManipulator\ClassManipulator
*/
private $classManipulator;
/**
* @readonly
* @var \Rector\Renaming\Collector\MethodCallRenameCollector
*/
private $methodCallRenameCollector;
public function __construct(\Rector\Core\NodeManipulator\ClassManipulator $classManipulator, \Rector\Renaming\Collector\MethodCallRenameCollector $methodCallRenameCollector)
{
$this->classManipulator = $classManipulator;
$this->methodCallRenameCollector = $methodCallRenameCollector;
}
public function getRuleDefinition() : \Symplify\RuleDocGenerator\ValueObject\RuleDefinition
2018-04-08 11:51:26 +00:00
{
return new \Symplify\RuleDocGenerator\ValueObject\RuleDefinition('Turns method names to new ones.', [new \Symplify\RuleDocGenerator\ValueObject\CodeSample\ConfiguredCodeSample(<<<'CODE_SAMPLE'
2018-10-22 17:39:10 +00:00
$someObject = new SomeExampleClass;
2018-04-09 12:48:15 +00:00
$someObject->oldMethod();
CODE_SAMPLE
, <<<'CODE_SAMPLE'
2018-10-22 17:39:10 +00:00
$someObject = new SomeExampleClass;
2018-04-09 12:48:15 +00:00
$someObject->newMethod();
CODE_SAMPLE
, [new \Rector\Renaming\ValueObject\MethodCallRename('SomeExampleClass', 'oldMethod', 'newMethod')])]);
2018-04-08 11:51:26 +00:00
}
2018-08-14 22:12:41 +00:00
/**
* @return array<class-string<Node>>
2018-08-14 22:12:41 +00:00
*/
public function getNodeTypes() : array
2017-10-06 11:57:21 +00:00
{
return [\PhpParser\Node\Expr\MethodCall::class, \PhpParser\Node\Expr\StaticCall::class, \PhpParser\Node\Stmt\ClassMethod::class];
2017-10-06 11:57:21 +00:00
}
/**
* @param MethodCall|StaticCall|ClassMethod $node
2017-10-06 11:57:21 +00:00
*/
public function refactor(\PhpParser\Node $node) : ?\PhpParser\Node
2017-10-06 11:57:21 +00:00
{
foreach ($this->methodCallRenames as $methodCallRename) {
$implementsInterface = $this->classManipulator->hasParentMethodOrInterface($methodCallRename->getObjectType(), $methodCallRename->getOldMethod(), $methodCallRename->getNewMethod());
if ($implementsInterface) {
continue;
}
if (!$this->nodeTypeResolver->isMethodStaticCallOrClassMethodObjectType($node, $methodCallRename->getObjectType())) {
2018-10-22 17:17:17 +00:00
continue;
}
if (!$this->isName($node->name, $methodCallRename->getOldMethod())) {
continue;
}
if ($this->shouldSkipClassMethod($node, $methodCallRename)) {
continue;
}
$node->name = new \PhpParser\Node\Identifier($methodCallRename->getNewMethod());
if ($methodCallRename instanceof \Rector\Renaming\ValueObject\MethodCallRenameWithArrayKey && !$node instanceof \PhpParser\Node\Stmt\ClassMethod) {
return new \PhpParser\Node\Expr\ArrayDimFetch($node, \PhpParser\BuilderHelpers::normalizeValue($methodCallRename->getArrayKey()));
2018-10-22 17:17:17 +00:00
}
return $node;
2018-08-14 22:12:41 +00:00
}
2018-12-11 17:22:54 +00:00
return null;
2018-08-14 22:12:41 +00:00
}
/**
* @param mixed[] $configuration
*/
public function configure(array $configuration) : void
2020-07-29 13:55:33 +00:00
{
$methodCallRenames = $configuration[self::METHOD_CALL_RENAMES] ?? $configuration;
\RectorPrefix20220218\Webmozart\Assert\Assert::allIsAOf($methodCallRenames, \Rector\Renaming\Contract\MethodCallRenameInterface::class);
$this->methodCallRenames = $methodCallRenames;
$this->methodCallRenameCollector->addMethodCallRenames($methodCallRenames);
2020-07-29 13:55:33 +00:00
}
/**
* @param \PhpParser\Node\Expr\MethodCall|\PhpParser\Node\Expr\StaticCall|\PhpParser\Node\Stmt\ClassMethod $node
*/
private function shouldSkipClassMethod($node, \Rector\Renaming\Contract\MethodCallRenameInterface $methodCallRename) : bool
{
if (!$node instanceof \PhpParser\Node\Stmt\ClassMethod) {
return \false;
}
return $this->shouldSkipForAlreadyExistingClassMethod($node, $methodCallRename);
}
private function shouldSkipForAlreadyExistingClassMethod(\PhpParser\Node\Stmt\ClassMethod $classMethod, \Rector\Renaming\Contract\MethodCallRenameInterface $methodCallRename) : bool
{
$classLike = $this->betterNodeFinder->findParentType($classMethod, \PhpParser\Node\Stmt\ClassLike::class);
if (!$classLike instanceof \PhpParser\Node\Stmt\ClassLike) {
return \false;
}
return (bool) $classLike->getMethod($methodCallRename->getNewMethod());
}
2017-10-06 11:57:21 +00:00
}