rector/rules/Transform/Rector/ClassMethod/SingleToManyMethodRector.php
Tomas Votruba e9e85a1300 Updated Rector to commit a8b01f217b
a8b01f217b [automated] Re-Generate Nodes/Rectors Documentation (#619)
2021-08-08 00:26:40 +00:00

131 lines
4.8 KiB
PHP

<?php
declare (strict_types=1);
namespace Rector\Transform\Rector\ClassMethod;
use PhpParser\Node;
use PhpParser\Node\Identifier;
use PhpParser\Node\Stmt\ClassLike;
use PhpParser\Node\Stmt\ClassMethod;
use PhpParser\Node\Stmt\Return_;
use PHPStan\Type\ArrayType;
use PHPStan\Type\MixedType;
use Rector\BetterPhpDocParser\PhpDocManipulator\PhpDocTypeChanger;
use Rector\Core\Contract\Rector\ConfigurableRectorInterface;
use Rector\Core\Rector\AbstractRector;
use Rector\NodeTypeResolver\Node\AttributeKey;
use Rector\Transform\ValueObject\SingleToManyMethod;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\ConfiguredCodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
use RectorPrefix20210808\Webmozart\Assert\Assert;
/**
* @see \Rector\Tests\Transform\Rector\ClassMethod\SingleToManyMethodRector\SingleToManyMethodRectorTest
*/
final class SingleToManyMethodRector extends \Rector\Core\Rector\AbstractRector implements \Rector\Core\Contract\Rector\ConfigurableRectorInterface
{
/**
* @api
* @var string
*/
public const SINGLES_TO_MANY_METHODS = 'singles_to_many_methods';
/**
* @var SingleToManyMethod[]
*/
private $singleToManyMethods = [];
/**
* @var \Rector\BetterPhpDocParser\PhpDocManipulator\PhpDocTypeChanger
*/
private $phpDocTypeChanger;
public function __construct(\Rector\BetterPhpDocParser\PhpDocManipulator\PhpDocTypeChanger $phpDocTypeChanger)
{
$this->phpDocTypeChanger = $phpDocTypeChanger;
}
public function getRuleDefinition() : \Symplify\RuleDocGenerator\ValueObject\RuleDefinition
{
return new \Symplify\RuleDocGenerator\ValueObject\RuleDefinition('Change method that returns single value to multiple values', [new \Symplify\RuleDocGenerator\ValueObject\CodeSample\ConfiguredCodeSample(<<<'CODE_SAMPLE'
class SomeClass
{
public function getNode(): string
{
return 'Echo_';
}
}
CODE_SAMPLE
, <<<'CODE_SAMPLE'
class SomeClass
{
/**
* @return string[]
*/
public function getNodes(): array
{
return ['Echo_'];
}
}
CODE_SAMPLE
, [self::SINGLES_TO_MANY_METHODS => [new \Rector\Transform\ValueObject\SingleToManyMethod('SomeClass', 'getNode', 'getNodes')]])]);
}
/**
* @return array<class-string<Node>>
*/
public function getNodeTypes() : array
{
return [\PhpParser\Node\Stmt\ClassMethod::class];
}
/**
* @param ClassMethod $node
*/
public function refactor(\PhpParser\Node $node) : ?\PhpParser\Node
{
$classLike = $node->getAttribute(\Rector\NodeTypeResolver\Node\AttributeKey::CLASS_NODE);
if (!$classLike instanceof \PhpParser\Node\Stmt\ClassLike) {
return null;
}
foreach ($this->singleToManyMethods as $singleToManyMethod) {
if (!$this->isObjectType($classLike, $singleToManyMethod->getObjectType())) {
continue;
}
if (!$this->isName($node, $singleToManyMethod->getSingleMethodName())) {
continue;
}
$node->name = new \PhpParser\Node\Identifier($singleToManyMethod->getManyMethodName());
$this->keepOldReturnTypeInDocBlock($node);
$node->returnType = new \PhpParser\Node\Identifier('array');
$this->wrapReturnValueToArray($node);
return $node;
}
return null;
}
/**
* @param array<string, SingleToManyMethod[]> $configuration
*/
public function configure(array $configuration) : void
{
$singleToManyMethods = $configuration[self::SINGLES_TO_MANY_METHODS] ?? [];
\RectorPrefix20210808\Webmozart\Assert\Assert::allIsInstanceOf($singleToManyMethods, \Rector\Transform\ValueObject\SingleToManyMethod::class);
$this->singleToManyMethods = $singleToManyMethods;
}
private function keepOldReturnTypeInDocBlock(\PhpParser\Node\Stmt\ClassMethod $classMethod) : void
{
// keep old return type in the docblock
$oldReturnType = $classMethod->returnType;
if ($oldReturnType === null) {
return;
}
$staticType = $this->staticTypeMapper->mapPhpParserNodePHPStanType($oldReturnType);
$arrayType = new \PHPStan\Type\ArrayType(new \PHPStan\Type\MixedType(), $staticType);
$phpDocInfo = $this->phpDocInfoFactory->createFromNodeOrEmpty($classMethod);
$this->phpDocTypeChanger->changeReturnType($phpDocInfo, $arrayType);
}
private function wrapReturnValueToArray(\PhpParser\Node\Stmt\ClassMethod $classMethod) : void
{
$this->traverseNodesWithCallable((array) $classMethod->stmts, function (\PhpParser\Node $node) {
if (!$node instanceof \PhpParser\Node\Stmt\Return_) {
return null;
}
$node->expr = $this->nodeFactory->createArray([$node->expr]);
return null;
});
}
}