-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathParser.php
360 lines (291 loc) · 10.5 KB
/
Parser.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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
<?php
/**
* This file is part of the TypeScriptGeneratorBundle.
*/
namespace Irontec\TypeScriptGeneratorBundle\ParseTypeScript;
use CodeIgniter\CLI\CLI;
/**
* @author Irontec <[email protected]>
* @author ddniel16 <ddniel16>
* @link https://github.com/irontec
*/
class Parser
{
const PARAM_UNKNOWN = 'unknown';
/**
* @var TypeScriptBaseInterface
*/
private $currentInterface;
/**
* @var TypeScriptBaseInterface[]
*/
private $output = [];
/**
* @var \ReflectionProperty[]
*/
private $properties = [];
public function __construct(string $filePath)
{
if (!class_exists($this->getClassFromFile($filePath))) {
CLI::write('Class does not exist for file: ' . $filePath);
return;
}
$source = file_get_contents($filePath);
$tokens = token_get_all($source);
$comment = [T_COMMENT, T_DOC_COMMENT];
$invalid = false;
foreach ($tokens as $token) {
if (is_array($token) && in_array((int) $token[0], $comment)) {
if (strpos($token[1], 'TypeScriptMe') !== false) {
$invalid = true;
break;
}
}
}
if ($invalid === false) {
CLI::write('TypeScriptMe annotation not found in file: ' . $filePath);
return;
}
$reflectionClass = new \ReflectionClass($this->getClassFromFile($filePath));
$this->currentInterface = new TypeScriptBaseInterface($reflectionClass->getShortName());
$this->properties = $reflectionClass->getProperties();
if (empty($this->properties)) {
CLI::write('No properties found in class: ' . $reflectionClass->getName());
return;
}
foreach ($this->properties as $property) {
$type = $this->parsePhpDocForProperty($property);
$isNull = false;
if (preg_match('/nullable=true/i', $property->getDocComment(), $matches)) {
$isNull = true;
}
if (empty($isNull) && is_null($property->getType()) !== true && $property->getType()->allowsNull()) {
$isNull = true;
}
$this->currentInterface->properties[] = new TypeScriptProperty($property->getName(), $type, $isNull);
}
$this->output[] = $this->currentInterface;
CLI::write('Interface generated for class: ' . $reflectionClass->getName());
}
/**
* Obtiene el raw de la interaface de Typescript
* @return string
*/
public function getOutput(): string
{
return implode(PHP_EOL . PHP_EOL, array_map(function ($item) { return (string) $item;}, $this->output));
}
/**
* Obtiene la interface que se esta usando actualmente
*
* @return TypeScriptBaseInterface
*/
public function getCurrentInterface()
{
return $this->currentInterface;
}
/**
* Obtiene el tipo de la variable en Typescript, segun el tipo de la propiedad
*
* @param \ReflectionProperty $property
* @return string
*/
private function getTypescriptPropertyByPropertyType(\ReflectionProperty $property): string
{
$type = $property->getType();
if ($type instanceof \ReflectionUnionType) {
// Union type handling
$types = $type->getTypes();
$typeNames = array_map(fn($t) => $t->getName(), $types);
// Handle union types as needed, e.g., return a combined type or choose one
// For simplicity, let's assume we return the first type for now
$name = $typeNames[0];
} else {
$name = $type->getName();
}
$expl = explode('\\', $name);
if (sizeof($expl) >= 2) {
$result = end($expl);
if ($result === 'Collection') {
$result = $this->getRelationCollectionProperty($property);
}
} else {
$result = $this->getTypescriptProperty($name);
}
if (preg_match('/uuid(.*)/i', $result, $matches)) {
$result = 'string';
}
return $result;
}
/**
* Obtiene el tipo de la propiedad en formato Typescript, en base a los comentarios/anotaciones
*
* @param \ReflectionProperty $property
* @return string
*/
private function parsePhpDocForProperty(\ReflectionProperty $property): string
{
$result = self::PARAM_UNKNOWN;
if (is_null($property->getType()) !== true) {
return $this->getTypescriptPropertyByPropertyType($property);
}
if (is_null($property->getDocComment()) === true) {
return $result;
}
$docComment = $property->getDocComment();
$matches = [];
if (preg_match('/@var (.*)/i', $docComment, $matches)) {
if (preg_match('/@var[ \t]+([a-z0-9]+)/i', $docComment, $matches)) {
$t = trim(strtolower($matches[1]));
$result = $this->getTypescriptProperty($t);
} else {
$result = $this->getRelationProperty($property);
}
}
if ($result === 'unknown') {
if (preg_match('/type="([a-zA-Z]+)"/i', $docComment, $matches)) {
$result = $this->getTypescriptProperty($matches[1]);
} elseif (preg_match('/targetEntity=("[a-zA-Z-\\\\]+")|([a-zA-Z]+::class)/i', $docComment, $matches)) {
$result = $this->getRelationCollectionProperty($property);
}
}
var_dump($property);
var_dump($result);
die;
return $result;
}
/**
* En base a un tipo del tipado de la propiedad, se obtiene el correspondiente tipo en Typescript
* @param string $type
* @return string
*/
private function getTypescriptProperty(string $type): string
{
$type = preg_replace('/[^A-Za-z0-9\-]/', '', $type);
$type = strtolower($type);
$result = self::PARAM_UNKNOWN;
if (in_array($type, ['int', 'integer', 'smallint', 'bigint', 'decimal', 'float', 'datetime', 'datetimetz', 'datetimeinterface', 'datetimeimmutable'], true)) {
$result = 'number';
} elseif (in_array($type, ['string', 'text', 'guid', 'date', 'time'], true)) {
$result = 'string';
} elseif (in_array($type, ['boolean', 'bool'], true)) {
$result = 'boolean';
} elseif (in_array($type, ['json'], true)) {
$result = 'any';
} elseif (in_array($type, ['array'], true)) {
$result = 'any[]';
}
return $result;
}
/**
* Obtiene el nombre de la entidad relacionada, si esta en un comentario con el formato "@var \App\Entity\Test"
*
* @param string $type
* @return string
*/
private function getRelationProperty($type): string
{
var_dump($type);die('getRelationProperty');
$result = self::PARAM_UNKNOWN;
$matches = [];
if (preg_match('/@var \SApp\SEntity\S([a-zA-Z]+)(\[\])?/i', $type, $matches)) {
$result = $matches[1];
if (isset($matches[2])) {
$result .= $matches[2];
}
}
return $result;
}
/**
* Obtiene el nombre de la entidad relacionada, en base a una anotación de doctrine.
* @param string $type
* @return string
*/
private function getRelationCollectionProperty($type): string
{
$classRelations = [
'Doctrine\ORM\Mapping\ManyToMany',
'Doctrine\ORM\Mapping\OneToMany',
'Doctrine\ORM\Mapping\ManyToOne'
];
if (method_exists($type, 'getAttributes') && empty($type->getAttributes()) === false) {
$entity = '';
$collection = '[]';
/** @var \ReflectionProperty $type */
foreach ($type->getAttributes() as $att) {
if (strpos($att->getName(), 'OneToOne') !== false || strpos($type, 'ManyToOne') !== false) {
$collection = '';
}
if (in_array($att->getName(), $classRelations)) {
$expl = explode('\\', $att->getArguments()['targetEntity']);
$entity = end($expl);
}
}
// Attributes and annotations may be mixed. If the entity could not be find this way,
// check if it's still assigned through annotations
if (!empty($entity)) {
return $entity . $collection;
}
}
$type = $type->getDocComment();
$result = self::PARAM_UNKNOWN;
$matches = [];
$regex = array(
'/targetEntity="([a-zA-Z]+)"/i',
'/targetEntity=([a-zA-Z]+)::class/i',
'/targetEntity="([a-zA-Z]+)\\\\([a-zA-Z]+)\\\\([a-zA-Z]+)"/i',
);
foreach ($regex as $reg) {
if (preg_match($reg, $type, $matches)) {
$collection = '[]';
if (strpos($type, 'OneToOne') !== false || strpos($type, 'ManyToOne') !== false) {
$collection = '';
}
$result = end($matches) . $collection;
break;
}
}
return $result;
}
/**
* Obtiene el namespace y nombre de clase, de un archivo PHP
*
* https://stackoverflow.com/a/7153391
* @param string $file
* @return string
*/
private function getClassFromFile(string $file): string
{
$tokens = token_get_all(file_get_contents($file));
$count = count($tokens);
$namespace = '';
$i = 0;
while ($i < $count) {
$token = $tokens[$i];
if (is_array($token) && $token[0] === T_NAMESPACE) {
// Found namespace declaration
while (++$i < $count) {
if ($tokens[$i] === ';') {
$namespace = trim($namespace);
break;
}
$namespace .= is_array($tokens[$i]) ? $tokens[$i][1] : $tokens[$i];
}
break;
}
$i++;
}
$classes = [];
for ($i = 2; $i < $count; $i++) {
if ($tokens[$i - 2][0] == T_CLASS
&& $tokens[$i - 1][0] == T_WHITESPACE
&& $tokens[$i][0] == T_STRING
) {
$class_name = $tokens[$i][1];
$classes[] = $class_name;
}
}
$className = current($classes);
return $namespace . '\\' . $className;
}
}