-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathAddExtendsAnnotationToModelFactoriesRector.php
146 lines (118 loc) · 3.89 KB
/
AddExtendsAnnotationToModelFactoriesRector.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
<?php
declare(strict_types=1);
namespace RectorLaravel\Rector\Class_;
use PhpParser\Node;
use PhpParser\Node\Expr;
use PhpParser\Node\Expr\ClassConstFetch;
use PhpParser\Node\Scalar\String_;
use PhpParser\Node\Stmt\Class_;
use PhpParser\Node\Stmt\Property;
use PHPStan\PhpDocParser\Ast\PhpDoc\ExtendsTagValueNode;
use PHPStan\PhpDocParser\Ast\PhpDoc\PhpDocTagNode;
use PHPStan\PhpDocParser\Ast\Type\GenericTypeNode;
use PHPStan\Type\ObjectType;
use Rector\BetterPhpDocParser\PhpDocInfo\PhpDocInfoFactory;
use Rector\BetterPhpDocParser\ValueObject\Type\FullyQualifiedIdentifierTypeNode;
use Rector\Comments\NodeDocBlock\DocBlockUpdater;
use RectorLaravel\AbstractRector;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
/**
* @changelog https://github.com/laravel/framework/pull/39169
*
* @see \RectorLaravel\Tests\Rector\Class_\AddExtendsAnnotationToModelFactoriesRector\AddExtendsAnnotationToModelFactoriesRectorTest
*/
final class AddExtendsAnnotationToModelFactoriesRector extends AbstractRector
{
private const string EXTENDS_TAG_NAME = '@extends';
private const string FACTORY_CLASS_NAME = 'Illuminate\Database\Eloquent\Factories\Factory';
public function __construct(
private readonly DocBlockUpdater $docBlockUpdater,
private readonly PhpDocInfoFactory $phpDocInfoFactory,
) {}
public function getRuleDefinition(): RuleDefinition
{
return new RuleDefinition('Adds the @extends annotation to Factories.', [
new CodeSample(
<<<'CODE_SAMPLE'
use Illuminate\Database\Eloquent\Factories\Factory;
class UserFactory extends Factory
{
protected $model = \App\Models\User::class;
}
CODE_SAMPLE
,
<<<'CODE_SAMPLE'
use Illuminate\Database\Eloquent\Factories\Factory;
/**
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\User>
*/
class UserFactory extends Factory
{
protected $model = \App\Models\User::class;
}
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(self::FACTORY_CLASS_NAME))) {
return null;
}
foreach ($node->stmts as $stmt) {
if (! $stmt instanceof Property) {
continue;
}
if (! $this->isName($stmt, 'model')) {
continue;
}
$this->addExtendsPhpDocTag($node, $stmt);
$this->docBlockUpdater->updateRefactoredNodeWithPhpDocInfo($node);
break;
}
return $node;
}
public function addExtendsPhpDocTag(Node $node, Property $property): void
{
if ($property->props === []) {
return;
}
$modelName = $this->getModelName($property->props[0]->default);
if ($modelName === null) {
return;
}
$phpDocInfo = $this->phpDocInfoFactory->createFromNodeOrEmpty($node);
if ($phpDocInfo->hasByName(self::EXTENDS_TAG_NAME)) {
return;
}
$phpDocTagNode = new PhpDocTagNode(self::EXTENDS_TAG_NAME, new ExtendsTagValueNode(
new GenericTypeNode(
new FullyQualifiedIdentifierTypeNode(self::FACTORY_CLASS_NAME),
[new FullyQualifiedIdentifierTypeNode($modelName)]
),
''
));
$phpDocInfo->addPhpDocTagNode($phpDocTagNode);
}
private function getModelName(?Expr $expr): ?string
{
if ($expr instanceof ClassConstFetch) {
return $this->getName($expr->class);
}
if ($expr instanceof String_) {
return $expr->value;
}
return null;
}
}