-
-
Notifications
You must be signed in to change notification settings - Fork 688
/
IssetOnPropertyObjectToPropertyExistsRector.php
188 lines (184 loc) · 6.68 KB
/
IssetOnPropertyObjectToPropertyExistsRector.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
<?php
declare (strict_types=1);
namespace Rector\CodeQuality\Rector\Isset_;
use PhpParser\Node;
use PhpParser\Node\Arg;
use PhpParser\Node\Expr;
use PhpParser\Node\Expr\BinaryOp\BooleanAnd;
use PhpParser\Node\Expr\BinaryOp\BooleanOr;
use PhpParser\Node\Expr\BinaryOp\Identical;
use PhpParser\Node\Expr\BinaryOp\NotIdentical;
use PhpParser\Node\Expr\BooleanNot;
use PhpParser\Node\Expr\Isset_;
use PhpParser\Node\Expr\PropertyFetch;
use PhpParser\Node\Identifier;
use PhpParser\Node\Scalar\String_;
use PHPStan\Reflection\ClassReflection;
use PHPStan\Reflection\Php\PhpPropertyReflection;
use PHPStan\Reflection\ReflectionProvider;
use PHPStan\Type\MixedType;
use PHPStan\Type\TypeCombinator;
use Rector\PhpParser\Node\Value\ValueResolver;
use Rector\Rector\AbstractRector;
use Rector\Reflection\ReflectionResolver;
use Rector\StaticTypeMapper\Resolver\ClassNameFromObjectTypeResolver;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
/**
* @see \Rector\Tests\CodeQuality\Rector\Isset_\IssetOnPropertyObjectToPropertyExistsRector\IssetOnPropertyObjectToPropertyExistsRectorTest
*/
final class IssetOnPropertyObjectToPropertyExistsRector extends AbstractRector
{
/**
* @readonly
*/
private ReflectionProvider $reflectionProvider;
/**
* @readonly
*/
private ReflectionResolver $reflectionResolver;
/**
* @readonly
*/
private ValueResolver $valueResolver;
public function __construct(ReflectionProvider $reflectionProvider, ReflectionResolver $reflectionResolver, ValueResolver $valueResolver)
{
$this->reflectionProvider = $reflectionProvider;
$this->reflectionResolver = $reflectionResolver;
$this->valueResolver = $valueResolver;
}
public function getRuleDefinition() : RuleDefinition
{
return new RuleDefinition('Change isset on property object to property_exists() and not null check', [new CodeSample(<<<'CODE_SAMPLE'
class SomeClass
{
private $x;
public function run(): void
{
isset($this->x);
}
}
CODE_SAMPLE
, <<<'CODE_SAMPLE'
class SomeClass
{
private $x;
public function run(): void
{
property_exists($this, 'x') && $this->x !== null;
}
}
CODE_SAMPLE
)]);
}
/**
* @return array<class-string<Node>>
*/
public function getNodeTypes() : array
{
return [Isset_::class, BooleanNot::class];
}
/**
* @param Isset_|BooleanNot $node
*/
public function refactor(Node $node) : ?Node
{
$isNegated = \false;
if ($node instanceof BooleanNot) {
if ($node->expr instanceof Isset_) {
$isNegated = \true;
$isset = $node->expr;
} else {
return null;
}
} else {
$isset = $node;
}
$newNodes = [];
foreach ($isset->vars as $issetExpr) {
if (!$issetExpr instanceof PropertyFetch) {
continue;
}
// has property PHP 7.4 type?
if ($this->shouldSkipForPropertyTypeDeclaration($issetExpr)) {
continue;
}
// Ignore dynamically accessed properties ($o->$p)
$propertyFetchName = $this->getName($issetExpr->name);
if (!\is_string($propertyFetchName)) {
continue;
}
$classReflection = $this->matchPropertyTypeClassReflection($issetExpr);
if (!$classReflection instanceof ClassReflection) {
continue;
}
if (!$classReflection->hasProperty($propertyFetchName) || $classReflection->isBuiltin()) {
$newNodes[] = $this->replaceToPropertyExistsWithNullCheck($issetExpr->var, $propertyFetchName, $issetExpr, $isNegated);
} elseif ($isNegated) {
$newNodes[] = $this->createIdenticalToNull($issetExpr);
} else {
$newNodes[] = $this->createNotIdenticalToNull($issetExpr);
}
}
return $this->nodeFactory->createReturnBooleanAnd($newNodes);
}
/**
* @return \PhpParser\Node\Expr\BinaryOp\BooleanAnd|\PhpParser\Node\Expr\BinaryOp\BooleanOr
*/
private function replaceToPropertyExistsWithNullCheck(Expr $expr, string $property, PropertyFetch $propertyFetch, bool $isNegated)
{
$args = [new Arg($expr), new Arg(new String_($property))];
$propertyExistsFuncCall = $this->nodeFactory->createFuncCall('property_exists', $args);
if ($isNegated) {
$booleanNot = new BooleanNot($propertyExistsFuncCall);
return new BooleanOr($booleanNot, $this->createIdenticalToNull($propertyFetch));
}
return new BooleanAnd($propertyExistsFuncCall, $this->createNotIdenticalToNull($propertyFetch));
}
private function createNotIdenticalToNull(PropertyFetch $propertyFetch) : NotIdentical
{
return new NotIdentical($propertyFetch, $this->nodeFactory->createNull());
}
private function shouldSkipForPropertyTypeDeclaration(PropertyFetch $propertyFetch) : bool
{
if (!$propertyFetch->name instanceof Identifier) {
return \true;
}
$phpPropertyReflection = $this->reflectionResolver->resolvePropertyReflectionFromPropertyFetch($propertyFetch);
if (!$phpPropertyReflection instanceof PhpPropertyReflection) {
return \false;
}
$propertyType = $phpPropertyReflection->getNativeType();
if ($propertyType instanceof MixedType) {
return \false;
}
if (!TypeCombinator::containsNull($propertyType)) {
return \true;
}
$nativeReflectionProperty = $phpPropertyReflection->getNativeReflection();
if (!$nativeReflectionProperty->hasDefaultValue()) {
return \true;
}
$defaultValueExpr = $nativeReflectionProperty->getDefaultValueExpression();
return !$this->valueResolver->isNull($defaultValueExpr);
}
private function createIdenticalToNull(PropertyFetch $propertyFetch) : Identical
{
return new Identical($propertyFetch, $this->nodeFactory->createNull());
}
private function matchPropertyTypeClassReflection(PropertyFetch $propertyFetch) : ?ClassReflection
{
$propertyFetchVarType = $this->getType($propertyFetch->var);
$className = ClassNameFromObjectTypeResolver::resolve($propertyFetchVarType);
if ($className === null) {
return null;
}
if ($className === 'stdClass') {
return null;
}
if (!$this->reflectionProvider->hasClass($className)) {
return null;
}
return $this->reflectionProvider->getClass($className);
}
}