rector/vendor/rector/rector-symfony/src/Rector/Return_/SimpleFunctionAndFilterRector.php

159 lines
5.6 KiB
PHP
Raw Normal View History

<?php
declare (strict_types=1);
namespace Rector\Symfony\Rector\Return_;
use PhpParser\Node;
use PhpParser\Node\Arg;
use PhpParser\Node\Expr\Array_;
use PhpParser\Node\Expr\ArrayItem;
use PhpParser\Node\Expr\New_;
use PhpParser\Node\Name\FullyQualified;
use PhpParser\Node\Scalar\String_;
use PhpParser\Node\Stmt\ClassMethod;
use PhpParser\Node\Stmt\Return_;
use PHPStan\Analyser\Scope;
use PHPStan\Reflection\ClassReflection;
use PHPStan\Type\ObjectType;
use PHPStan\Type\Type;
use Rector\Core\Rector\AbstractRector;
use Rector\NodeTypeResolver\Node\AttributeKey;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
/**
* Covers https://twig.symfony.com/doc/1.x/deprecated.html#function
*
* @see \Rector\Symfony\Tests\Rector\Return_\SimpleFunctionAndFilterRector\SimpleFunctionAndFilterRectorTest
*/
final class SimpleFunctionAndFilterRector extends \Rector\Core\Rector\AbstractRector
{
/**
* @var array<string, class-string>>
*/
private const OLD_TO_NEW_CLASSES = ['Twig_Function_Method' => 'Twig_SimpleFunction', 'Twig_Filter_Method' => 'Twig_SimpleFilter'];
public function getRuleDefinition() : \Symplify\RuleDocGenerator\ValueObject\RuleDefinition
{
return new \Symplify\RuleDocGenerator\ValueObject\RuleDefinition('Changes Twig_Function_Method to Twig_SimpleFunction calls in Twig_Extension.', [new \Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample(<<<'CODE_SAMPLE'
class SomeExtension extends Twig_Extension
{
public function getFunctions()
{
return [
'is_mobile' => new Twig_Function_Method($this, 'isMobile'),
];
}
public function getFilters()
{
return [
'is_mobile' => new Twig_Filter_Method($this, 'isMobile'),
];
}
}
CODE_SAMPLE
, <<<'CODE_SAMPLE'
class SomeExtension extends Twig_Extension
{
public function getFunctions()
{
return [
new Twig_SimpleFunction('is_mobile', [$this, 'isMobile']),
];
}
public function getFilters()
{
return [
new Twig_SimpleFilter('is_mobile', [$this, 'isMobile']),
];
}
}
CODE_SAMPLE
)]);
}
/**
* @return array<class-string<Node>>
*/
public function getNodeTypes() : array
{
return [\PhpParser\Node\Stmt\Return_::class];
}
/**
* @param Return_ $node
*/
public function refactor(\PhpParser\Node $node) : ?\PhpParser\Node
{
if ($node->expr === null) {
return null;
}
/** @var Scope $scope */
$scope = $node->getAttribute(\Rector\NodeTypeResolver\Node\AttributeKey::SCOPE);
/** @var ClassReflection $classReflection */
$classReflection = $scope->getClassReflection();
if (!$classReflection->isSubclassOf('Twig_Extension')) {
return null;
}
$classMethod = $this->betterNodeFinder->findParentType($node, \PhpParser\Node\Stmt\ClassMethod::class);
if (!$classMethod instanceof \PhpParser\Node\Stmt\ClassMethod) {
return null;
}
if (!$this->nodeNameResolver->isNames($classMethod, ['getFunctions', 'getFilters'])) {
return null;
}
$this->traverseNodesWithCallable($node->expr, function (\PhpParser\Node $node) : ?Node {
if (!$node instanceof \PhpParser\Node\Expr\ArrayItem) {
return null;
}
if (!$node->value instanceof \PhpParser\Node\Expr\New_) {
return null;
}
$newObjectType = $this->nodeTypeResolver->getType($node->value);
$this->processArrayItem($node, $newObjectType);
return $node;
});
return $node;
}
private function processArrayItem(\PhpParser\Node\Expr\ArrayItem $arrayItem, \PHPStan\Type\Type $newNodeType) : void
{
foreach (self::OLD_TO_NEW_CLASSES as $oldClass => $newClass) {
$oldClassObjectType = new \PHPStan\Type\ObjectType($oldClass);
if (!$oldClassObjectType->equals($newNodeType)) {
continue;
}
if (!$arrayItem->key instanceof \PhpParser\Node\Scalar\String_) {
continue;
}
if (!$arrayItem->value instanceof \PhpParser\Node\Expr\New_) {
continue;
}
// match!
$filterName = $this->valueResolver->getValue($arrayItem->key);
$arrayItem->key = null;
$arrayItem->value->class = new \PhpParser\Node\Name\FullyQualified($newClass);
$oldArguments = $arrayItem->value->getArgs();
$this->decorateArrayItem($arrayItem, $oldArguments, $filterName);
break;
}
}
/**
* @param Arg[] $oldArguments
*/
private function decorateArrayItem(\PhpParser\Node\Expr\ArrayItem $arrayItem, array $oldArguments, string $filterName) : void
{
/** @var New_ $new */
$new = $arrayItem->value;
if ($oldArguments[0]->value instanceof \PhpParser\Node\Expr\Array_) {
// already array, just shift it
$new->args = \array_merge([new \PhpParser\Node\Arg(new \PhpParser\Node\Scalar\String_($filterName))], $oldArguments);
return;
}
// not array yet, wrap to one
$arrayItems = [];
foreach ($oldArguments as $oldArgument) {
$arrayItems[] = new \PhpParser\Node\Expr\ArrayItem($oldArgument->value);
}
$new->args[0] = new \PhpParser\Node\Arg(new \PhpParser\Node\Scalar\String_($filterName));
$new->args[1] = new \PhpParser\Node\Arg(new \PhpParser\Node\Expr\Array_($arrayItems));
}
}