1
|
|
|
<?php declare(strict_types=1); |
2
|
|
|
|
3
|
|
|
namespace Modelarium\Laravel\Targets; |
4
|
|
|
|
5
|
|
|
use Formularium\Datatype; |
6
|
|
|
use Formularium\Extradata; |
7
|
|
|
use Formularium\ExtradataParameter; |
8
|
|
|
use Formularium\Field; |
9
|
|
|
use Formularium\Model; |
10
|
|
|
use Illuminate\Support\Str; |
11
|
|
|
use GraphQL\Type\Definition\ListOfType; |
12
|
|
|
use GraphQL\Type\Definition\NonNull; |
13
|
|
|
use GraphQL\Type\Definition\ObjectType; |
14
|
|
|
use GraphQL\Type\Definition\UnionType; |
15
|
|
|
use Modelarium\BaseGenerator; |
16
|
|
|
use Modelarium\Datatypes\Datatype_relationship; |
17
|
|
|
use Modelarium\Datatypes\RelationshipFactory; |
18
|
|
|
use Modelarium\Exception\Exception; |
19
|
|
|
use Modelarium\FormulariumUtils; |
20
|
|
|
use Modelarium\GeneratedCollection; |
21
|
|
|
use Modelarium\GeneratedItem; |
22
|
|
|
use Modelarium\Parser; |
23
|
|
|
use Modelarium\Types\FormulariumScalarType; |
24
|
|
|
use Nette\PhpGenerator\Method; |
25
|
|
|
|
26
|
|
|
class ModelGenerator extends BaseGenerator |
27
|
|
|
{ |
28
|
|
|
/** |
29
|
|
|
* @var string |
30
|
|
|
*/ |
31
|
|
|
protected $stubDir = __DIR__ . "/stubs/"; |
32
|
|
|
|
33
|
|
|
/** |
34
|
|
|
* @var string |
35
|
|
|
*/ |
36
|
|
|
protected static $modelDir = 'app/Models/'; |
37
|
|
|
|
38
|
|
|
/** |
39
|
|
|
* @var ObjectType |
40
|
|
|
*/ |
41
|
|
|
protected $type = null; |
42
|
|
|
|
43
|
|
|
/** |
44
|
|
|
* @var \Nette\PhpGenerator\ClassType |
45
|
|
|
*/ |
46
|
|
|
public $class = null; |
47
|
|
|
|
48
|
|
|
/** |
49
|
|
|
* fillable attributes |
50
|
|
|
* |
51
|
|
|
* @var array |
52
|
|
|
*/ |
53
|
|
|
public $fillable = []; |
54
|
|
|
|
55
|
|
|
/** |
56
|
|
|
* fillable attributes |
57
|
|
|
* |
58
|
|
|
* @var array |
59
|
|
|
*/ |
60
|
|
|
public $hidden = []; |
61
|
|
|
|
62
|
|
|
/** |
63
|
|
|
* cast attributes |
64
|
|
|
* |
65
|
|
|
* @var array |
66
|
|
|
*/ |
67
|
|
|
public $casts = []; |
68
|
|
|
|
69
|
|
|
/** |
70
|
|
|
* |
71
|
|
|
* @var string |
72
|
|
|
*/ |
73
|
|
|
public $parentClassName = '\Illuminate\Database\Eloquent\Model'; |
74
|
|
|
|
75
|
|
|
/** |
76
|
|
|
* fields |
77
|
|
|
* |
78
|
|
|
* @var Model |
79
|
|
|
*/ |
80
|
|
|
public $fModel = null; |
81
|
|
|
|
82
|
|
|
/** |
83
|
|
|
* |
84
|
|
|
* @var array |
85
|
|
|
*/ |
86
|
|
|
public $traits = []; |
87
|
|
|
|
88
|
|
|
/** |
89
|
|
|
* Random generation |
90
|
|
|
* |
91
|
|
|
* @var Method |
92
|
|
|
*/ |
93
|
|
|
protected $methodRandom = null; |
94
|
|
|
|
95
|
|
|
/** |
96
|
|
|
* Do we have a 'can' attribute? |
97
|
|
|
* |
98
|
|
|
* @var boolean |
99
|
|
|
*/ |
100
|
|
|
protected $hasCan = true; |
101
|
|
|
|
102
|
|
|
/** |
103
|
|
|
* If true, we have timestamps on the migration. |
104
|
|
|
* |
105
|
|
|
* @var boolean |
106
|
|
|
*/ |
107
|
|
|
public $migrationTimestamps = false; |
108
|
|
|
|
109
|
10 |
|
public function generate(): GeneratedCollection |
110
|
|
|
{ |
111
|
10 |
|
$this->fModel = Model::create($this->studlyName); |
112
|
10 |
|
$x = new GeneratedCollection([ |
113
|
10 |
|
new GeneratedItem( |
114
|
10 |
|
GeneratedItem::TYPE_MODEL, |
115
|
10 |
|
$this->generateString(), |
116
|
10 |
|
$this->getGenerateFilename() |
117
|
|
|
), |
118
|
10 |
|
new GeneratedItem( |
119
|
10 |
|
GeneratedItem::TYPE_MODEL, |
120
|
10 |
|
$this->templateStub('model'), |
121
|
10 |
|
$this->getGenerateFilename(false), |
122
|
10 |
|
true |
123
|
|
|
) |
124
|
|
|
]); |
125
|
10 |
|
return $x; |
126
|
|
|
} |
127
|
|
|
|
128
|
10 |
|
protected function processField( |
129
|
|
|
string $typeName, |
130
|
|
|
\GraphQL\Type\Definition\FieldDefinition $field, |
131
|
|
|
\GraphQL\Language\AST\NodeList $directives, |
132
|
|
|
bool $isRequired |
133
|
|
|
): void { |
134
|
10 |
|
$fieldName = $field->name; |
135
|
|
|
|
136
|
10 |
|
if ($typeName === 'ID') { |
137
|
10 |
|
return; |
138
|
|
|
} |
139
|
|
|
|
140
|
10 |
|
$scalarType = $this->parser->getScalarType($typeName); |
141
|
|
|
|
142
|
|
|
/** |
143
|
|
|
* @var Field $fieldFormularium |
144
|
|
|
*/ |
145
|
10 |
|
$fieldFormularium = null; |
146
|
10 |
|
if (!$scalarType) { |
147
|
|
|
// probably another model |
148
|
8 |
|
$fieldFormularium = FormulariumUtils::getFieldFromDirectives( |
149
|
8 |
|
$fieldName, |
150
|
8 |
|
$typeName, |
151
|
8 |
|
$directives |
152
|
|
|
); |
153
|
5 |
|
} elseif ($scalarType instanceof FormulariumScalarType) { |
154
|
5 |
|
$fieldFormularium = FormulariumUtils::getFieldFromDirectives( |
155
|
5 |
|
$fieldName, |
156
|
5 |
|
$scalarType->getDatatype()->getName(), |
157
|
5 |
|
$directives |
158
|
|
|
); |
159
|
|
|
} else { |
160
|
|
|
return; |
161
|
|
|
} |
162
|
|
|
|
163
|
10 |
|
if ($isRequired) { |
164
|
10 |
|
$fieldFormularium->setValidatorOption( |
165
|
10 |
|
Datatype::REQUIRED, |
166
|
10 |
|
'value', |
167
|
10 |
|
true |
168
|
|
|
); |
169
|
|
|
} |
170
|
|
|
|
171
|
10 |
|
foreach ($directives as $directive) { |
172
|
10 |
|
$name = $directive->name->value; |
173
|
|
|
$className = $this->getDirectiveClass($name); |
174
|
10 |
|
if ($className) { |
175
|
|
|
$methodName = "$className::processModelFieldDirective"; |
176
|
|
|
/** @phpstan-ignore-next-line */ |
177
|
|
|
$methodName( |
178
|
10 |
|
$this, |
179
|
|
|
$field, |
180
|
10 |
|
$fieldFormularium, |
181
|
|
|
$directive |
182
|
|
|
); |
183
|
|
|
} |
184
|
|
|
} |
185
|
|
|
|
186
|
|
|
$this->fModel->appendField($fieldFormularium); |
187
|
|
|
} |
188
|
|
|
|
189
|
|
|
protected function processFieldDirectives( |
190
|
|
|
\GraphQL\Type\Definition\FieldDefinition $field, |
191
|
|
|
\GraphQL\Language\AST\NodeList $directives |
192
|
|
|
): void { |
193
|
|
|
list($type, $isRequired) = Parser::getUnwrappedType($field->type); |
194
|
10 |
|
|
195
|
10 |
|
$typeName = $type->name; |
196
|
10 |
|
$this->processField($typeName, $field, $directives, $isRequired); |
197
|
|
|
} |
198
|
8 |
|
|
199
|
|
|
protected function processRelationship( |
200
|
|
|
\GraphQL\Type\Definition\FieldDefinition $field, |
201
|
|
|
\GraphQL\Language\AST\NodeList $directives |
202
|
8 |
|
): void { |
203
|
8 |
|
$lowerName = mb_strtolower($this->getInflector()->singularize($field->name)); |
204
|
|
|
$lowerNamePlural = $this->getInflector()->pluralize($lowerName); |
|
|
|
|
205
|
8 |
|
|
206
|
|
|
$targetClass = '\\App\\Models\\' . Str::studly($this->getInflector()->singularize($field->name)); |
|
|
|
|
207
|
8 |
|
|
208
|
8 |
|
list($type, $isRequired) = Parser::getUnwrappedType($field->type); |
209
|
|
|
$typeName = $type->name; |
210
|
|
|
|
211
|
8 |
|
// special types that should be skipped. |
212
|
|
|
if ($typeName === 'Can') { |
213
|
|
|
$this->hasCan = true; |
214
|
|
|
return; |
215
|
|
|
} |
216
|
8 |
|
|
217
|
|
|
$relationshipDatatype = null; |
218
|
8 |
|
|
219
|
8 |
|
foreach ($directives as $directive) { |
220
|
8 |
|
$name = $directive->name->value; |
221
|
8 |
|
$className = $this->getDirectiveClass($name); |
222
|
|
|
if ($className) { |
223
|
8 |
|
$methodName = "$className::processModelRelationshipDirective"; |
224
|
8 |
|
/** @phpstan-ignore-next-line */ |
225
|
8 |
|
$r = $methodName( |
226
|
8 |
|
$this, |
227
|
8 |
|
$field, |
228
|
|
|
$directive |
229
|
8 |
|
); |
230
|
8 |
|
if ($r) { |
231
|
|
|
if ($relationshipDatatype) { |
232
|
|
|
throw new Exception("Overwriting relationship in {$typeName} for {$field->name} in {$this->lowerName}"); |
233
|
|
|
} |
234
|
|
|
$relationshipDatatype = $r; |
235
|
8 |
|
} |
236
|
|
|
continue; |
237
|
8 |
|
} |
238
|
8 |
|
} |
239
|
|
|
|
240
|
|
|
if (!$relationshipDatatype) { |
241
|
|
|
// TODO: generate a warning, perhaps? |
242
|
8 |
|
// throw new Exception("Could not find a relationship in {$typeName} for {$field->name} in {$sourceTypeName}"); |
243
|
8 |
|
return; |
244
|
|
|
} |
245
|
|
|
|
246
|
8 |
|
$this->processField($relationshipDatatype, $field, $directives, $isRequired); |
247
|
|
|
|
248
|
8 |
|
// TODO |
249
|
|
|
// if ($generateRandom) { |
250
|
|
|
// if ($relationship == RelationshipFactory::RELATIONSHIP_MANY_TO_MANY || $relationship == RelationshipFactory::MORPH_MANY_TO_MANY) { |
251
|
|
|
// // TODO: do we generate it? seed should do it? |
252
|
8 |
|
// } else { |
253
|
|
|
// $this->methodRandom->addBody( |
254
|
|
|
// '$data["' . $lowerName . '_id"] = function () {' . "\n" . |
255
|
|
|
// ' return factory(' . $targetClass . '::class)->create()->id;' . "\n" . |
256
|
|
|
// '};' |
257
|
|
|
// ); |
258
|
8 |
|
// } |
259
|
|
|
// } |
260
|
|
|
} |
261
|
|
|
|
262
|
|
|
public static function getRelationshipDatatypeName( |
263
|
|
|
string $relationship, |
264
|
|
|
bool $isInverse, |
265
|
|
|
string $sourceTypeName, |
266
|
|
|
string $targetTypeName |
267
|
|
|
): string { |
268
|
|
|
return "relationship:" . ($isInverse ? "inverse:" : "") . |
269
|
|
|
"$relationship:$sourceTypeName:$targetTypeName"; |
270
|
|
|
} |
271
|
|
|
|
272
|
8 |
|
protected function processDirectives( |
273
|
|
|
\GraphQL\Language\AST\NodeList $directives |
274
|
8 |
|
): void { |
275
|
|
|
foreach ($directives as $directive) { |
276
|
|
|
$name = $directive->name->value; |
277
|
|
|
$this->fModel->appendExtradata(FormulariumUtils::directiveToExtradata($directive)); |
278
|
|
|
|
279
|
|
|
$className = $this->getDirectiveClass($name); |
280
|
8 |
|
if ($className) { |
281
|
8 |
|
$methodName = "$className::processModelTypeDirective"; |
282
|
|
|
/** @phpstan-ignore-next-line */ |
283
|
|
|
$methodName( |
284
|
10 |
|
$this, |
285
|
|
|
$directive |
286
|
|
|
); |
287
|
10 |
|
} |
288
|
1 |
|
} |
289
|
1 |
|
} |
290
|
|
|
|
291
|
1 |
|
public function generateString(): string |
292
|
1 |
|
{ |
293
|
1 |
|
$namespace = new \Nette\PhpGenerator\PhpNamespace('App\\Models'); |
294
|
|
|
$namespace->addUse('\\Illuminate\\Database\\Eloquent\\Relations\\BelongsTo'); |
295
|
1 |
|
$namespace->addUse('\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany'); |
296
|
1 |
|
$namespace->addUse('\\Illuminate\\Database\\Eloquent\\Relations\\HasOne'); |
297
|
|
|
$namespace->addUse('\\Illuminate\\Database\\Eloquent\\Relations\\HasMany'); |
298
|
|
|
$namespace->addUse('\\Illuminate\\Database\\Eloquent\\Relations\\MorphTo'); |
299
|
|
|
$namespace->addUse('\\Illuminate\\Database\\Eloquent\\Relations\\MorphOne'); |
300
|
|
|
$namespace->addUse('\\Illuminate\\Database\\Eloquent\\Relations\\MorphToMany'); |
301
|
10 |
|
$namespace->addUse('\\Illuminate\\Support\\Facades\\Auth'); |
302
|
|
|
$namespace->addUse('\\Formularium\\Exception\\NoRandomException'); |
303
|
10 |
|
$namespace->addUse('\\Modelarium\\Laravel\\Datatypes\\Datatype_relationship'); |
304
|
|
|
|
305
|
10 |
|
$this->class = $namespace->addClass('Base' . $this->studlyName); |
306
|
10 |
|
$this->class |
307
|
10 |
|
->addComment("This file was automatically generated by Modelarium.") |
308
|
10 |
|
->setAbstract(); |
309
|
10 |
|
|
310
|
10 |
|
$this->methodRandom = new Method('getRandomData'); |
311
|
10 |
|
$this->methodRandom->addBody( |
312
|
10 |
|
'$data = static::getFormularium()->getRandom(get_called_class() . \'::getRandomFieldData\');' . "\n" |
313
|
10 |
|
); |
314
|
10 |
|
|
315
|
|
|
$this->processGraphql(); |
316
|
10 |
|
|
317
|
10 |
|
// this might have changed |
318
|
10 |
|
$this->class->setExtends($this->parentClassName); |
319
|
10 |
|
|
320
|
|
|
foreach ($this->traits as $trait) { |
321
|
10 |
|
$this->class->addTrait($trait); |
322
|
10 |
|
} |
323
|
10 |
|
|
324
|
|
|
$this->class->addProperty('fillable') |
325
|
|
|
->setProtected() |
326
|
10 |
|
->setValue($this->fillable) |
327
|
|
|
->setComment("The attributes that are mass assignable.\n@var array") |
328
|
|
|
->setInitialized(); |
329
|
10 |
|
|
330
|
|
|
$this->class->addProperty('hidden') |
331
|
10 |
|
->setProtected() |
332
|
1 |
|
->setValue($this->hidden) |
333
|
|
|
->setComment("The attributes that should be hidden for arrays.\n@var array") |
334
|
|
|
->setInitialized(); |
335
|
10 |
|
|
336
|
10 |
|
if (!$this->migrationTimestamps) { |
337
|
10 |
|
$this->class->addProperty('timestamps') |
338
|
10 |
|
->setPublic() |
339
|
10 |
|
->setValue(false) |
340
|
|
|
->setComment("Do not set timestamps.\n@var boolean") |
341
|
10 |
|
->setInitialized(); |
342
|
10 |
|
} |
343
|
10 |
|
|
344
|
10 |
|
if ($this->casts) { |
|
|
|
|
345
|
10 |
|
$this->class->addProperty('casts') |
346
|
|
|
->setProtected() |
347
|
10 |
|
->setValue($this->casts) |
348
|
9 |
|
->setComment("The attributes that should be cast.\n@var array") |
349
|
9 |
|
->setInitialized(); |
350
|
9 |
|
} |
351
|
9 |
|
|
352
|
9 |
|
$this->class->addMethod('getFields') |
353
|
|
|
->setPublic() |
354
|
|
|
->setStatic() |
355
|
10 |
|
->setReturnType('array') |
356
|
|
|
->addComment('@return array') |
357
|
|
|
->addBody( |
358
|
|
|
"return ?;\n", |
359
|
|
|
[ |
360
|
|
|
$this->fModel->serialize() |
361
|
|
|
] |
362
|
|
|
); |
363
|
10 |
|
|
364
|
10 |
|
$this->class->addMethod('getFormularium') |
365
|
10 |
|
->setPublic() |
366
|
10 |
|
->setStatic() |
367
|
10 |
|
->setReturnType('\Formularium\Model') |
368
|
10 |
|
->addComment('@return \Formularium\Model') |
369
|
10 |
|
->addBody( |
370
|
|
|
'$model = \Formularium\Model::fromStruct(static::getFields());' . "\n" . |
371
|
10 |
|
'return $model;', |
372
|
|
|
[ |
373
|
|
|
//$this->studlyName, |
374
|
|
|
] |
375
|
10 |
|
); |
376
|
10 |
|
|
377
|
10 |
|
$this->methodRandom |
378
|
10 |
|
->addComment('@return array') |
379
|
10 |
|
->setPublic() |
380
|
10 |
|
->setStatic() |
381
|
|
|
->setReturnType('array') |
382
|
10 |
|
->addBody('return $data;'); |
383
|
|
|
$this->class->addMember($this->methodRandom); |
384
|
|
|
|
385
|
10 |
|
$this->class->addMethod('getRandomFieldData') |
386
|
|
|
->setPublic() |
387
|
|
|
->setStatic() |
388
|
10 |
|
->addComment("Filters fields and generate random data. Throw NoRandomException for fields you don't want to generate random data, or return a valid value.") |
389
|
10 |
|
->addBody(' |
390
|
10 |
|
$d = $f->getDatatype(); |
391
|
10 |
|
if ($d instanceof Datatype_relationship) { |
392
|
10 |
|
throw new NoRandomException($f->getName()); |
393
|
10 |
|
} |
394
|
10 |
|
return $f->getDatatype()->getRandom();') |
395
|
|
|
->addParameter('f')->setType('Formularium\Field'); |
396
|
10 |
|
|
397
|
10 |
|
// TODO perhaps we can use PolicyGenerator->policyClasses to auto generate |
398
|
10 |
|
if ($this->hasCan) { |
399
|
10 |
|
$this->class->addMethod('getCanAttribute') |
400
|
10 |
|
->setPublic() |
401
|
|
|
->setReturnType('array') |
402
|
|
|
->addComment("Returns the policy permissions for actions such as editing or deleting.\n@return \Formularium\Model") |
403
|
|
|
->addBody( |
404
|
|
|
'$policy = new \\App\\Policies\\' . $this->studlyName . 'Policy();' . "\n" . |
405
|
|
|
'$user = Auth::user();' . "\n" . |
406
|
10 |
|
'return [' . "\n" . |
407
|
|
|
' //[ "ability" => "create", "value" => $policy->create($user) ]' . "\n" . |
408
|
|
|
'];' |
409
|
10 |
|
); |
410
|
10 |
|
} |
411
|
10 |
|
|
412
|
10 |
|
$printer = new \Nette\PhpGenerator\PsrPrinter; |
413
|
10 |
|
return $this->phpHeader() . $printer->printNamespace($namespace); |
414
|
10 |
|
} |
415
|
10 |
|
|
416
|
10 |
|
protected function processGraphql(): void |
417
|
10 |
|
{ |
418
|
10 |
|
foreach ($this->type->getFields() as $field) { |
419
|
10 |
|
$directives = $field->astNode->directives; |
420
|
|
|
if ( |
421
|
|
|
($field->type instanceof ObjectType) || |
422
|
|
|
($field->type instanceof ListOfType) || |
423
|
10 |
|
($field->type instanceof UnionType) || |
424
|
10 |
|
($field->type instanceof NonNull && ( |
425
|
|
|
($field->type->getWrappedType() instanceof ObjectType) || |
426
|
|
|
($field->type->getWrappedType() instanceof ListOfType) || |
427
|
10 |
|
($field->type->getWrappedType() instanceof UnionType) |
428
|
|
|
)) |
429
|
10 |
|
) { |
430
|
10 |
|
// relationship |
431
|
|
|
$this->processRelationship($field, $directives); |
432
|
10 |
|
} else { |
433
|
10 |
|
$this->processFieldDirectives($field, $directives); |
434
|
10 |
|
} |
435
|
10 |
|
} |
436
|
10 |
|
|
437
|
10 |
|
/** |
438
|
10 |
|
* @var \GraphQL\Language\AST\NodeList|null |
439
|
|
|
*/ |
440
|
|
|
$directives = $this->type->astNode->directives; |
441
|
|
|
if ($directives) { |
442
|
8 |
|
$this->processDirectives($directives); |
|
|
|
|
443
|
|
|
} |
444
|
10 |
|
} |
445
|
|
|
|
446
|
|
|
public function getGenerateFilename(bool $base = true): string |
447
|
|
|
{ |
448
|
|
|
return $this->getBasePath(self::$modelDir . '/' . ($base ? 'Base' : '') . $this->studlyName . '.php'); |
449
|
|
|
} |
450
|
|
|
|
451
|
10 |
|
public static function setModelDir(string $dir): void |
452
|
10 |
|
{ |
453
|
10 |
|
self::$modelDir = $dir; |
454
|
|
|
} |
455
|
|
|
} |
456
|
|
|
|