forked from rectorphp/rector-symfony
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommandPropertyToAttributeRector.php
267 lines (222 loc) · 8.7 KB
/
CommandPropertyToAttributeRector.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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
<?php
declare(strict_types=1);
namespace Rector\Symfony\Symfony61\Rector\Class_;
use PhpParser\Node;
use PhpParser\Node\Arg;
use PhpParser\Node\Attribute;
use PhpParser\Node\AttributeGroup;
use PhpParser\Node\Expr\Array_;
use PhpParser\Node\Scalar\String_;
use PhpParser\Node\Stmt\Class_;
use PhpParser\Node\Stmt\Property;
use PHPStan\Reflection\ReflectionProvider;
use PHPStan\Type\ObjectType;
use Rector\Php80\NodeAnalyzer\PhpAttributeAnalyzer;
use Rector\PhpAttribute\NodeFactory\PhpAttributeGroupFactory;
use Rector\Rector\AbstractRector;
use Rector\Symfony\Enum\SymfonyAnnotation;
use Rector\Symfony\NodeAnalyzer\Command\AttributeValueResolver;
use Rector\Symfony\NodeAnalyzer\Command\SetAliasesMethodCallExtractor;
use Rector\ValueObject\PhpVersionFeature;
use Rector\VersionBonding\Contract\MinPhpVersionInterface;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
/**
* @changelog https://symfony.com/doc/current/console.html#registering-the-command
*
* @see \Rector\Symfony\Tests\Symfony61\Rector\Class_\CommandPropertyToAttributeRector\CommandPropertyToAttributeRectorTest
*/
final class CommandPropertyToAttributeRector extends AbstractRector implements MinPhpVersionInterface
{
public function __construct(
private readonly PhpAttributeGroupFactory $phpAttributeGroupFactory,
private readonly PhpAttributeAnalyzer $phpAttributeAnalyzer,
private readonly AttributeValueResolver $attributeValueResolver,
private readonly ReflectionProvider $reflectionProvider,
private readonly SetAliasesMethodCallExtractor $setAliasesMethodCallExtractor,
) {
}
public function provideMinPhpVersion(): int
{
return PhpVersionFeature::ATTRIBUTES;
}
public function getRuleDefinition(): RuleDefinition
{
return new RuleDefinition(
'Add Symfony\Component\Console\Attribute\AsCommand to Symfony Commands and remove the deprecated properties',
[
new CodeSample(<<<'CODE_SAMPLE'
use Symfony\Component\Console\Command\Command;
final class SunshineCommand extends Command
{
/** @var string|null */
public static $defaultName = 'sunshine';
}
CODE_SAMPLE
, <<<'CODE_SAMPLE'
use Symfony\Component\Console\Attribute\AsCommand;
use Symfony\Component\Console\Command\Command;
#[AsCommand('sunshine')]
final class SunshineCommand extends Command
{
}
CODE_SAMPLE),
]
);
}
/**
* @return array<class-string<Node>>
*/
public function getNodeTypes(): array
{
return [Class_::class];
}
/**
* @param Class_ $node
*/
public function refactor(Node $node): ?Node
{
if (! $this->isObjectType($node, new ObjectType('Symfony\\Component\\Console\\Command\\Command'))) {
return null;
}
if (! $this->reflectionProvider->hasClass(SymfonyAnnotation::AS_COMMAND)) {
return null;
}
$defaultName = $this->resolveDefaultName($node);
if ($defaultName === null) {
return null;
}
$defaultDescription = $this->resolveDefaultDescription($node);
$alisesArray = $this->setAliasesMethodCallExtractor->resolveCommandAliasesFromAttributeOrSetter($node);
return $this->replaceAsCommandAttribute(
$node,
$this->createAttributeGroupAsCommand($defaultName, $defaultDescription, $alisesArray)
);
}
private function createAttributeGroupAsCommand(
string $defaultName,
?string $defaultDescription,
?Array_ $aliasesArray
): AttributeGroup {
$attributeGroup = $this->phpAttributeGroupFactory->createFromClass(SymfonyAnnotation::AS_COMMAND);
$attributeGroup->attrs[0]->args[] = new Arg(new String_($defaultName));
if ($defaultDescription !== null) {
$attributeGroup->attrs[0]->args[] = new Arg(new String_($defaultDescription));
} elseif ($aliasesArray instanceof Array_) {
$attributeGroup->attrs[0]->args[] = new Arg($this->nodeFactory->createNull());
}
if ($aliasesArray instanceof Array_) {
$attributeGroup->attrs[0]->args[] = new Arg($aliasesArray);
}
return $attributeGroup;
}
private function getValueFromProperty(Property $property): ?string
{
if (count($property->props) !== 1) {
return null;
}
$propertyProperty = $property->props[0];
if ($propertyProperty->default instanceof String_) {
return $propertyProperty->default->value;
}
return null;
}
private function resolveDefaultName(Class_ $class): ?string
{
foreach ($class->stmts as $key => $stmt) {
if (! $stmt instanceof Property) {
continue;
}
if (! $this->isName($stmt->props[0], 'defaultName')) {
continue;
}
$defaultName = $this->getValueFromProperty($stmt);
if ($defaultName !== null) {
// remove property
unset($class->stmts[$key]);
return $defaultName;
}
}
return $this->defaultDefaultNameFromAttribute($class);
}
private function resolveDefaultDescription(Class_ $class): ?string
{
foreach ($class->stmts as $key => $stmt) {
if (! $stmt instanceof Property) {
continue;
}
if (! $this->isName($stmt, 'defaultDescription')) {
continue;
}
$defaultDescription = $this->getValueFromProperty($stmt);
if ($defaultDescription !== null) {
unset($class->stmts[$key]);
return $defaultDescription;
}
}
return $this->resolveDefaultDescriptionFromAttribute($class);
}
private function resolveDefaultDescriptionFromAttribute(Class_ $class): ?string
{
if ($this->phpAttributeAnalyzer->hasPhpAttribute($class, SymfonyAnnotation::AS_COMMAND)) {
$defaultDescriptionFromArgument = $this->attributeValueResolver->getArgumentValueFromAttribute($class, 1);
if (is_string($defaultDescriptionFromArgument)) {
return $defaultDescriptionFromArgument;
}
}
return null;
}
private function replaceAsCommandAttribute(Class_ $class, AttributeGroup $createAttributeGroup): ?Class_
{
$hasAsCommandAttribute = false;
$replacedAsCommandAttribute = false;
foreach ($class->attrGroups as $attrGroup) {
foreach ($attrGroup->attrs as $attribute) {
if ($this->nodeNameResolver->isName($attribute->name, SymfonyAnnotation::AS_COMMAND)) {
$hasAsCommandAttribute = true;
$replacedAsCommandAttribute = $this->replaceArguments($attribute, $createAttributeGroup);
}
}
}
if ($hasAsCommandAttribute === false) {
$class->attrGroups[] = $createAttributeGroup;
$replacedAsCommandAttribute = true;
}
if ($replacedAsCommandAttribute === false) {
return null;
}
return $class;
}
private function replaceArguments(Attribute $attribute, AttributeGroup $createAttributeGroup): bool
{
$replacedAsCommandAttribute = false;
if (! $attribute->args[0]->value instanceof String_) {
$attribute->args[0] = $createAttributeGroup->attrs[0]->args[0];
$replacedAsCommandAttribute = true;
}
if ((! isset($attribute->args[1])) && isset($createAttributeGroup->attrs[0]->args[1])) {
$attribute->args[1] = $createAttributeGroup->attrs[0]->args[1];
$replacedAsCommandAttribute = true;
}
if ((! isset($attribute->args[2])) && isset($createAttributeGroup->attrs[0]->args[2])) {
$attribute->args[2] = $createAttributeGroup->attrs[0]->args[2];
$replacedAsCommandAttribute = true;
}
if ((! isset($attribute->args[3])) && isset($createAttributeGroup->attrs[0]->args[3])) {
$attribute->args[3] = $createAttributeGroup->attrs[0]->args[3];
$replacedAsCommandAttribute = true;
}
return $replacedAsCommandAttribute;
}
private function defaultDefaultNameFromAttribute(Class_ $class): ?string
{
if (! $this->phpAttributeAnalyzer->hasPhpAttribute($class, SymfonyAnnotation::AS_COMMAND)) {
return null;
}
$defaultNameFromArgument = $this->attributeValueResolver->getArgumentValueFromAttribute($class, 0);
if (is_string($defaultNameFromArgument)) {
return $defaultNameFromArgument;
}
return null;
}
}