3
3
namespace Spatie \TypeScriptTransformer \PhpNodes ;
4
4
5
5
use ReflectionAttribute ;
6
+ use ReflectionMethod ;
6
7
use Roave \BetterReflection \Reflection \ReflectionAttribute as RoaveReflectionAttribute ;
7
8
8
9
class PhpAttributeNode
9
10
{
11
+ protected ?array $ arguments = null ;
12
+
10
13
public function __construct (
11
14
public readonly ReflectionAttribute |RoaveReflectionAttribute $ reflection
12
15
) {
@@ -22,9 +25,27 @@ public function getArguments(): array
22
25
return $ this ->reflection ->getArguments ();
23
26
}
24
27
28
+ public function hasArgument (string $ name ): bool
29
+ {
30
+ if ($ this ->arguments === null ) {
31
+ $ this ->initializeArguments ();
32
+ }
33
+
34
+ return array_key_exists ($ name , $ this ->arguments );
35
+ }
36
+
37
+ public function getArgument (string $ name ): mixed
38
+ {
39
+ if ($ this ->arguments === null ) {
40
+ $ this ->initializeArguments ();
41
+ }
42
+
43
+ return $ this ->arguments [$ name ] ?? null ;
44
+ }
45
+
25
46
public function newInstance (): object
26
47
{
27
- if ($ this ->reflection instanceof ReflectionAttribute) {
48
+ if ($ this ->reflection instanceof ReflectionAttribute) {
28
49
return $ this ->reflection ->newInstance ();
29
50
}
30
51
@@ -33,4 +54,44 @@ public function newInstance(): object
33
54
// TODO: maybe we can do a little better here
34
55
return (new $ className ())($ this ->reflection ->getArguments ());
35
56
}
57
+
58
+ /** @return array<string, mixed> */
59
+ protected function initializeArguments (): array
60
+ {
61
+ // TODO: this is a quickly written thing, test it to be sure it works
62
+ if ($ this ->arguments !== null ) {
63
+ return $ this ->arguments ;
64
+ }
65
+
66
+ $ this ->arguments = [];
67
+
68
+ $ values = $ this ->getArguments ();
69
+
70
+ foreach ($ values as $ name => $ value ) {
71
+ if (is_string ($ name )) {
72
+ $ this ->arguments [$ name ] = $ value ;
73
+ unset($ values [$ name ]);
74
+ }
75
+ }
76
+
77
+ if (count ($ values ) === 0 ) {
78
+ return $ this ->arguments ;
79
+ }
80
+
81
+ $ constructor = new ReflectionMethod ($ this ->reflection ->getName (), '__construct ' );
82
+
83
+ foreach ($ constructor ->getParameters () as $ index => $ param ) {
84
+ if (array_key_exists ($ param ->getName (), $ this ->arguments )) {
85
+ continue ;
86
+ }
87
+
88
+ if (! array_key_exists ($ index , $ values )) {
89
+ continue ;
90
+ }
91
+
92
+ $ this ->arguments [$ param ->getName ()] = $ values [$ index ];
93
+ }
94
+
95
+ return $ this ->arguments ;
96
+ }
36
97
}
0 commit comments