mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-23 03:02:33 +01:00
195 lines
8.2 KiB
PHP
195 lines
8.2 KiB
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace Rector\CodeQuality\NodeAnalyzer;
|
|
|
|
use PhpParser\Node;
|
|
use PhpParser\Node\Expr\ArrayDimFetch;
|
|
use PhpParser\Node\Expr\Assign;
|
|
use PhpParser\Node\Expr\Closure;
|
|
use PhpParser\Node\Expr\MethodCall;
|
|
use PhpParser\Node\Expr\PropertyFetch;
|
|
use PhpParser\Node\Expr\StaticCall;
|
|
use PhpParser\Node\Expr\Variable;
|
|
use PhpParser\Node\FunctionLike;
|
|
use PhpParser\Node\Stmt\Class_;
|
|
use PhpParser\Node\Stmt\ClassMethod;
|
|
use PhpParser\NodeTraverser;
|
|
use PHPStan\Type\MixedType;
|
|
use PHPStan\Type\Type;
|
|
use Rector\CodeQuality\TypeResolver\ArrayDimFetchTypeResolver;
|
|
use Rector\Core\NodeAnalyzer\ClassAnalyzer;
|
|
use Rector\Core\NodeAnalyzer\PropertyFetchAnalyzer;
|
|
use Rector\Core\PhpParser\Node\BetterNodeFinder;
|
|
use Rector\NodeNameResolver\NodeNameResolver;
|
|
use Rector\NodeTypeResolver\Node\AttributeKey;
|
|
use Rector\NodeTypeResolver\NodeTypeResolver;
|
|
use Rector\NodeTypeResolver\PHPStan\Type\TypeFactory;
|
|
use RectorPrefix20220515\Symplify\Astral\NodeTraverser\SimpleCallableNodeTraverser;
|
|
final class LocalPropertyAnalyzer
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
private const LARAVEL_COLLECTION_CLASS = 'Illuminate\\Support\\Collection';
|
|
/**
|
|
* @readonly
|
|
* @var \Symplify\Astral\NodeTraverser\SimpleCallableNodeTraverser
|
|
*/
|
|
private $simpleCallableNodeTraverser;
|
|
/**
|
|
* @readonly
|
|
* @var \Rector\Core\NodeAnalyzer\ClassAnalyzer
|
|
*/
|
|
private $classAnalyzer;
|
|
/**
|
|
* @readonly
|
|
* @var \Rector\NodeNameResolver\NodeNameResolver
|
|
*/
|
|
private $nodeNameResolver;
|
|
/**
|
|
* @readonly
|
|
* @var \Rector\Core\PhpParser\Node\BetterNodeFinder
|
|
*/
|
|
private $betterNodeFinder;
|
|
/**
|
|
* @readonly
|
|
* @var \Rector\CodeQuality\TypeResolver\ArrayDimFetchTypeResolver
|
|
*/
|
|
private $arrayDimFetchTypeResolver;
|
|
/**
|
|
* @readonly
|
|
* @var \Rector\NodeTypeResolver\NodeTypeResolver
|
|
*/
|
|
private $nodeTypeResolver;
|
|
/**
|
|
* @readonly
|
|
* @var \Rector\Core\NodeAnalyzer\PropertyFetchAnalyzer
|
|
*/
|
|
private $propertyFetchAnalyzer;
|
|
/**
|
|
* @readonly
|
|
* @var \Rector\NodeTypeResolver\PHPStan\Type\TypeFactory
|
|
*/
|
|
private $typeFactory;
|
|
public function __construct(\RectorPrefix20220515\Symplify\Astral\NodeTraverser\SimpleCallableNodeTraverser $simpleCallableNodeTraverser, \Rector\Core\NodeAnalyzer\ClassAnalyzer $classAnalyzer, \Rector\NodeNameResolver\NodeNameResolver $nodeNameResolver, \Rector\Core\PhpParser\Node\BetterNodeFinder $betterNodeFinder, \Rector\CodeQuality\TypeResolver\ArrayDimFetchTypeResolver $arrayDimFetchTypeResolver, \Rector\NodeTypeResolver\NodeTypeResolver $nodeTypeResolver, \Rector\Core\NodeAnalyzer\PropertyFetchAnalyzer $propertyFetchAnalyzer, \Rector\NodeTypeResolver\PHPStan\Type\TypeFactory $typeFactory)
|
|
{
|
|
$this->simpleCallableNodeTraverser = $simpleCallableNodeTraverser;
|
|
$this->classAnalyzer = $classAnalyzer;
|
|
$this->nodeNameResolver = $nodeNameResolver;
|
|
$this->betterNodeFinder = $betterNodeFinder;
|
|
$this->arrayDimFetchTypeResolver = $arrayDimFetchTypeResolver;
|
|
$this->nodeTypeResolver = $nodeTypeResolver;
|
|
$this->propertyFetchAnalyzer = $propertyFetchAnalyzer;
|
|
$this->typeFactory = $typeFactory;
|
|
}
|
|
/**
|
|
* @return array<string, Type>
|
|
*/
|
|
public function resolveFetchedPropertiesToTypesFromClass(\PhpParser\Node\Stmt\Class_ $class) : array
|
|
{
|
|
$fetchedLocalPropertyNameToTypes = [];
|
|
$this->simpleCallableNodeTraverser->traverseNodesWithCallable($class->stmts, function (\PhpParser\Node $node) use(&$fetchedLocalPropertyNameToTypes) : ?int {
|
|
// skip anonymous class scope
|
|
$isAnonymousClass = $this->classAnalyzer->isAnonymousClass($node);
|
|
if ($isAnonymousClass) {
|
|
return \PhpParser\NodeTraverser::DONT_TRAVERSE_CHILDREN;
|
|
}
|
|
if (!$node instanceof \PhpParser\Node\Expr\PropertyFetch) {
|
|
return null;
|
|
}
|
|
if (!$this->propertyFetchAnalyzer->isLocalPropertyFetch($node)) {
|
|
return null;
|
|
}
|
|
if ($this->shouldSkipPropertyFetch($node)) {
|
|
return null;
|
|
}
|
|
$propertyName = $this->nodeNameResolver->getName($node->name);
|
|
if ($propertyName === null) {
|
|
return null;
|
|
}
|
|
$parentFunctionLike = $this->betterNodeFinder->findParentType($node, \PhpParser\Node\FunctionLike::class);
|
|
if (!$parentFunctionLike instanceof \PhpParser\Node\Stmt\ClassMethod) {
|
|
return null;
|
|
}
|
|
$propertyFetchType = $this->resolvePropertyFetchType($node);
|
|
$fetchedLocalPropertyNameToTypes[$propertyName][] = $propertyFetchType;
|
|
return null;
|
|
});
|
|
return $this->normalizeToSingleType($fetchedLocalPropertyNameToTypes);
|
|
}
|
|
private function shouldSkipPropertyFetch(\PhpParser\Node\Expr\PropertyFetch $propertyFetch) : bool
|
|
{
|
|
// special Laravel collection scope
|
|
if ($this->shouldSkipForLaravelCollection($propertyFetch)) {
|
|
return \true;
|
|
}
|
|
if ($this->isPartOfClosureBind($propertyFetch)) {
|
|
return \true;
|
|
}
|
|
if ($propertyFetch->name instanceof \PhpParser\Node\Expr\Variable) {
|
|
return \true;
|
|
}
|
|
return $this->isPartOfClosureBindTo($propertyFetch);
|
|
}
|
|
private function resolvePropertyFetchType(\PhpParser\Node\Expr\PropertyFetch $propertyFetch) : \PHPStan\Type\Type
|
|
{
|
|
$parentNode = $propertyFetch->getAttribute(\Rector\NodeTypeResolver\Node\AttributeKey::PARENT_NODE);
|
|
// possible get type
|
|
if ($parentNode instanceof \PhpParser\Node\Expr\Assign) {
|
|
return $this->nodeTypeResolver->getType($parentNode->expr);
|
|
}
|
|
if ($parentNode instanceof \PhpParser\Node\Expr\ArrayDimFetch) {
|
|
return $this->arrayDimFetchTypeResolver->resolve($parentNode);
|
|
}
|
|
return new \PHPStan\Type\MixedType();
|
|
}
|
|
/**
|
|
* @param array<string, Type[]> $propertyNameToTypes
|
|
* @return array<string, Type>
|
|
*/
|
|
private function normalizeToSingleType(array $propertyNameToTypes) : array
|
|
{
|
|
// normalize types to union
|
|
$propertyNameToType = [];
|
|
foreach ($propertyNameToTypes as $name => $types) {
|
|
$propertyNameToType[$name] = $this->typeFactory->createMixedPassedOrUnionType($types);
|
|
}
|
|
return $propertyNameToType;
|
|
}
|
|
private function shouldSkipForLaravelCollection(\PhpParser\Node\Expr\PropertyFetch $propertyFetch) : bool
|
|
{
|
|
$staticCallOrClassMethod = $this->betterNodeFinder->findParentByTypes($propertyFetch, [\PhpParser\Node\Stmt\ClassMethod::class, \PhpParser\Node\Expr\StaticCall::class]);
|
|
if (!$staticCallOrClassMethod instanceof \PhpParser\Node\Expr\StaticCall) {
|
|
return \false;
|
|
}
|
|
return $this->nodeNameResolver->isName($staticCallOrClassMethod->class, self::LARAVEL_COLLECTION_CLASS);
|
|
}
|
|
/**
|
|
* Local property is actually not local one, but belongs to passed object
|
|
* See https://ocramius.github.io/blog/accessing-private-php-class-members-without-reflection/
|
|
*/
|
|
private function isPartOfClosureBind(\PhpParser\Node\Expr\PropertyFetch $propertyFetch) : bool
|
|
{
|
|
$parentStaticCall = $this->betterNodeFinder->findParentType($propertyFetch, \PhpParser\Node\Expr\StaticCall::class);
|
|
if (!$parentStaticCall instanceof \PhpParser\Node\Expr\StaticCall) {
|
|
return \false;
|
|
}
|
|
if (!$this->nodeNameResolver->isName($parentStaticCall->class, 'Closure')) {
|
|
return \true;
|
|
}
|
|
return $this->nodeNameResolver->isName($parentStaticCall->name, 'bind');
|
|
}
|
|
private function isPartOfClosureBindTo(\PhpParser\Node\Expr\PropertyFetch $propertyFetch) : bool
|
|
{
|
|
$parentMethodCall = $this->betterNodeFinder->findParentType($propertyFetch, \PhpParser\Node\Expr\MethodCall::class);
|
|
if (!$parentMethodCall instanceof \PhpParser\Node\Expr\MethodCall) {
|
|
return \false;
|
|
}
|
|
if (!$parentMethodCall->var instanceof \PhpParser\Node\Expr\Closure) {
|
|
return \false;
|
|
}
|
|
return $this->nodeNameResolver->isName($parentMethodCall->name, 'bindTo');
|
|
}
|
|
}
|