forked from rectorphp/rector-symfony
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDowngradeSymfonyCommandAttributeRector.php
More file actions
161 lines (138 loc) · 4.74 KB
/
DowngradeSymfonyCommandAttributeRector.php
File metadata and controls
161 lines (138 loc) · 4.74 KB
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
<?php
declare(strict_types=1);
namespace Rector\Symfony\DowngradeSymfony70\Rector\Class_;
use PhpParser\Node;
use PhpParser\Node\Arg;
use PhpParser\Node\Expr;
use PhpParser\Node\Expr\MethodCall;
use PhpParser\Node\Expr\Variable;
use PhpParser\Node\Identifier;
use PhpParser\Node\Stmt\Class_;
use PhpParser\Node\Stmt\ClassMethod;
use PhpParser\Node\Stmt\Expression;
use PHPStan\Reflection\ClassReflection;
use Rector\Rector\AbstractRector;
use Rector\Reflection\ReflectionResolver;
use Rector\ValueObject\Visibility;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
/**
* @see \Rector\Symfony\Tests\DowngradeSymfony70\Rector\Class_\DowngradeSymfonyCommandAttributeRector\DowngradeSymfonyCommandAttributeRectorTest
*/
final class DowngradeSymfonyCommandAttributeRector extends AbstractRector
{
public function __construct(
private readonly ReflectionResolver $reflectionResolver
) {
}
public function getRuleDefinition(): RuleDefinition
{
return new RuleDefinition(
'Downgrade Symfony Command Attribute',
[
new CodeSample(
<<<'CODE_SAMPLE'
#[AsCommand(name: 'app:create-user', description: 'some description')]
class CreateUserCommand extends Command
{}
CODE_SAMPLE
,
<<<'CODE_SAMPLE'
#[AsCommand(name: 'app:create-user', description: 'some description')]
class CreateUserCommand extends Command
{
protected function configure(): void
{
$this->setName('app:create-user');
$this->setDescription('some description');
}
}
CODE_SAMPLE
),
]
);
}
/**
* @return array<class-string<Node>>
*/
public function getNodeTypes(): array
{
return [Class_::class];
}
/**
* @param Class_ $node
*/
public function refactor(Node $node): ?Node
{
$classReflection = $this->reflectionResolver->resolveClassReflection($node);
if (! $classReflection instanceof ClassReflection) {
return null;
}
if (! $classReflection->isSubClassOf('Symfony\Component\Console\Command\Command')) {
return null;
}
$resolveNameAndDescription = $this->resolveNameAndDescription($node);
$name = $resolveNameAndDescription['name'];
$description = $resolveNameAndDescription['description'];
if ($name === null && $description === null) {
return null;
}
$configureClassMethod = $node->getMethod('configure');
$stmts = [];
if ($name !== null) {
$stmts[] = new Expression(new MethodCall(new Variable('this'), 'setName', [new Arg($name)]));
}
if ($description !== null) {
$stmts[] = new Expression(new MethodCall(new Variable('this'), 'setDescription', [new Arg($description)]));
}
if ($configureClassMethod instanceof ClassMethod) {
$configureClassMethod->stmts = [...(array) $configureClassMethod->stmts, ...$stmts];
} else {
$classMethod = new ClassMethod('configure');
$classMethod->flags = Visibility::PROTECTED;
$classMethod->stmts = $stmts;
$node->stmts[] = $classMethod;
}
foreach ($node->attrGroups as $keyAttribute => $attrGroup) {
foreach ($attrGroup->attrs as $key => $attr) {
if ($attr->name->toString() === 'Symfony\Component\Console\Attribute\AsCommand') {
unset($attrGroup->attrs[$key]);
}
}
if ($attrGroup->attrs === []) {
unset($node->attrGroups[$keyAttribute]);
}
}
return $node;
}
/**
* @return array{name: ?Expr, description: ?Expr}
*/
private function resolveNameAndDescription(Class_ $class): array
{
$name = null;
$description = null;
foreach ($class->attrGroups as $attrGroup) {
foreach ($attrGroup->attrs as $attr) {
if ($attr->name->toString() !== 'Symfony\Component\Console\Attribute\AsCommand') {
continue;
}
foreach ($attr->args as $arg) {
if (! $arg->name instanceof Identifier) {
continue;
}
if ($arg->name->toString() === 'name') {
$name = $arg->value;
}
if ($arg->name->toString() === 'description') {
$description = $arg->value;
}
}
}
}
return [
'name' => $name,
'description' => $description,
];
}
}