-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGenerator.php
379 lines (325 loc) · 15.3 KB
/
Generator.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
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
<?php
namespace neam\gii2_workflow_ui_generators\angular_crud;
use Yii;
use yii\gii\CodeFile;
use yii\helpers\Inflector;
/**
* Yii Workflow UI Generator.
* @author Fredrik Wollsén <[email protected]>
* @since 1.0
*/
class Generator extends \neam\gii2_workflow_ui_generators\yii1_crud\Generator
{
/**
* @inheritdoc
*/
public function getName()
{
return 'AngularJS Workflow UI CRUD Generator';
}
/**
* @inheritdoc
*/
public function getDescription()
{
return 'This generator generates angularjs files that implement CRUD (Create, Read, Update, Delete)
operations for the specified data model.';
}
/**
* @inheritdoc
*/
public function requiredTemplates()
{
return [];
}
/**
* @return string the action view file path
*/
public function getViewPath()
{
if ($this->viewPath !== null) {
$modelClass = str_replace('propel\\models\\', '', get_class($this->getModel()));
return \Yii::getAlias($this->viewPath) . '/' . Inflector::camel2id(
$modelClass
); //$this->getControllerID();
} else {
return parent::getViewPath();
}
}
/**
* @inheritdoc
*/
public function generate()
{
$files = [];
$itemTypeAttributesWithAdditionalMetadata = $this->getItemTypeAttributesWithAdditionalMetadata($this->getModel());
$modelClass = $this->modelClass;
//if ($modelClass == "Campaign") {var_dump(__LINE__, $itemTypeAttributes);exit(1);}
$generator = $this;
// Workflow-related templates
if (in_array($modelClass, array_keys(\ItemTypes::where('is_workflow_item')))) {
// Edit workflow views
foreach ($this->getModel()->flowSteps() as $step => $attributes) {
$this->getModel()->scenario = "edit-step";
$files[] = new CodeFile(
$this->jsTemplateDestination("steps/$step.html"),
$this->render(
'edit-step.html.php',
compact("step", "attributes", "itemTypeAttributesWithAdditionalMetadata", "generator")
)
);
}
// Curate workflow views
foreach ($this->getModel()->flowSteps() as $step => $attributes) {
$this->getModel()->scenario = "curate-step";
$files[] = new CodeFile(
$this->jsTemplateDestination("curate-steps/$step.html"),
$this->render(
'curate-step.html.php',
compact("step", "attributes", "itemTypeAttributesWithAdditionalMetadata", "generator")
)
);
}
// Translate workflow views
/*
foreach ($this->getModel()->flowSteps() as $step => $attributes) {
$translatableAttributes = $this->getModel()->matchingTranslatable($attributes);
if (empty($translatableAttributes)) {
continue;
}
$this->getModel()->scenario = "translate-step";
$files[] = new CodeFile(
$this->jsTemplateDestination("translate/steps/$step.html"),
$this->render(
'translate-step.html.php',
compact("step", "translatableAttributes", "itemTypeAttributesWithAdditionalMetadata", "generator")
)
);
}
*/
}
/*
// Other views
$templatePath = $this->getTemplatePath() . '/views';
foreach (scandir($templatePath) as $file) {
if (is_file($templatePath . '/' . $file) && pathinfo($file, PATHINFO_EXTENSION) === 'php') {
$files[] = new CodeFile("$viewPath/$file", $this->render("views/$file"));
}
}
*/
// Angularjs core
$templatePath = $this->getTemplatePath() . '/core';
foreach (scandir($templatePath) as $file) {
if (is_file($templatePath . '/' . $file) && pathinfo($file, PATHINFO_EXTENSION) === 'php') {
$files[] = new CodeFile(
$this->jsTemplateDestination($file),
$this->render("core/$file", compact("itemTypeAttributesWithAdditionalMetadata", "generator"))
);
}
}
$templatePath = $this->getTemplatePath() . '/core/components';
foreach (scandir($templatePath) as $file) {
if (is_file($templatePath . '/' . $file) && pathinfo($file, PATHINFO_EXTENSION) === 'php') {
$files[] = new CodeFile(
$this->jsTemplateDestination('components/' . $file),
$this->render("core/components/$file", compact("itemTypeAttributesWithAdditionalMetadata", "generator"))
);
}
}
$templatePath = $this->getTemplatePath() . '/core/controllers';
foreach (scandir($templatePath) as $file) {
if (is_file($templatePath . '/' . $file) && pathinfo($file, PATHINFO_EXTENSION) === 'php') {
$files[] = new CodeFile(
$this->jsTemplateDestination('controllers/' . $file),
$this->render("core/controllers/$file", compact("itemTypeAttributesWithAdditionalMetadata", "generator"))
);
}
}
return $files;
}
protected function jsTemplateDestination($file)
{
$viewPath = $this->getViewPath();
$destination = str_replace(
".php",
"",
str_replace(
"views/",
"crud/",
"$viewPath/$file"
)
);
return $destination;
}
public function hasOneRelatedModelClasses()
{
$model = $this->getModel();
$return = [];
foreach ($this->getItemTypeAttributesWithAdditionalMetadata($model) as $attribute => $attributeInfo) {
// Do not consider attributes referencing other item types
if (strpos($attribute, '/') !== false) {
continue;
}
if ($attributeInfo['type'] == 'has-one-relation') {
$return[] = $attributeInfo['relatedModelClass'];
}
}
return array_unique($return);
}
public function hasOneOrManyRelatedModelClasses()
{
$model = $this->getModel();
$return = [];
foreach ($this->getItemTypeAttributesWithAdditionalMetadata($model) as $attribute => $attributeInfo) {
// Do not consider attributes referencing other item types
if (strpos($attribute, '/') !== false) {
continue;
}
if ($attributeInfo['type'] == 'has-one-relation' || $attributeInfo['type'] == 'has-many-relation') {
$return[] = $attributeInfo['relatedModelClass'];
}
}
return array_unique($return);
}
/**
* Get item type attributes with additional metadata required during generation
* TODO: Do not keep copy-pasted copies here and in yii1_rest_model/Generator
*/
public function getItemTypeAttributesWithAdditionalMetadata($model)
{
$modelClass = str_replace('propel\\models\\', '', get_class($model));
if (!method_exists($model, 'itemTypeAttributes')) {
throw new \Exception("Model $modelClass does not have method itemTypeAttributes()");
}
$itemTypeAttributes = $model->itemTypeAttributes();
foreach ($itemTypeAttributes as $attribute => &$attributeInfo) {
// Do not decorate deep attributes with relation information yet - they are decorated on a needs basis further down
if (strpos($attribute, '/') !== false) {
continue;
}
// Decorate with relation information
$this->decorateRelationInfo($modelClass, $attribute, $attributeInfo);
}
foreach ($itemTypeAttributes as $attribute => &$attributeInfo) {
// Decorate with additional information about nested attributes
if (strpos($attribute, '/') !== false) {
$_ = explode('/', $attribute);
$throughAttribute = $_[0];
$deepAttribute = $_[1];
// Nest deep attribute information
$attributeInfo['throughAttribute'] = $itemTypeAttributes[$throughAttribute];
$relatedModelClass = $attributeInfo['throughAttribute']['relatedModelClass'];
$this->decorateRelationInfo($relatedModelClass, $deepAttribute, $attributeInfo);
$itemTypeAttributes[$throughAttribute]['deepAttributes'][$deepAttribute] = $attributeInfo;
continue;
}
}
return $itemTypeAttributes;
}
public function decorateRelationInfo($modelClass, $attribute, &$attributeInfo)
{
$tableMapClass = "\\propel\\models\\Map\\{$modelClass}TableMap";
if (!class_exists($tableMapClass)) {
throw new \Exception(
"Propel object model classes seem to be missing for model class $modelClass - specifically $tableMapClass does not exist"
);
}
/** @var \Propel\Runtime\Map\TableMap $tableMap */
$tableMap = $tableMapClass::getTableMap();
try {
$relations = [];
switch ($attributeInfo['type']) {
case "has-many-relation":
case "many-many-relation":
case "belongs-to-relation":
foreach ($tableMap->getRelations() as $relation) {
if ($relation->getType() === \Propel\Runtime\Map\RelationMap::ONE_TO_MANY) {
$relations[] = $relation->getName();
}
}
/** @var \Propel\Runtime\Map\RelationMap $relationInfo */
$relationInfo = null;
if (!empty($attributeInfo['db_column'])) {
// Method 1 - Use db_column information
if (strpos($attributeInfo['db_column'], ".") === false) {
throw new \Exception($attributeInfo['type']. " db_column needs to contain a dot that separates the related table with the relation attribute");
}
$_ = explode(".", $attributeInfo['db_column']);
$relatedTable = $_[0];
$relatedColumn = $_[1];
$relations = $tableMap->getRelations();
$relationInfo = null;
foreach ($relations as $candidateRelation) {
$columnMappings = $candidateRelation->getColumnMappings();
if (array_key_exists($attributeInfo['db_column'], $columnMappings)) {
$relationInfo = $candidateRelation;
break;
}
}
if (empty($relationInfo)) {
throw new \Exception("Could not determine relation info for $modelClass->$attribute, where db_column metadata = '{$attributeInfo['db_column']}'");
}
} else {
// Method 2 - Guess based on attribute name
$_ = explode("RelatedBy", $attribute);
$relatedModelClass = Inflector::singularize(ucfirst($_[0]));
if (in_array($relatedModelClass, $relations)) {
$relationName = $relatedModelClass;
} elseif (isset($_[1]) && in_array($relatedModelClass . "RelatedBy" . $_[1], $relations)) {
$relationName = $relatedModelClass . "RelatedBy" . $_[1];
} else {
$relationName = $attribute;
}
$relationInfo = $tableMap->getRelation($relationName);
}
$attributeInfo['relatedModelClass'] = $relationInfo->getLocalTable()->getPhpName();
$attributeInfo['relatedItemGetterMethod'] = "get" . $relationInfo->getName();
$attributeInfo['relatedItemSetterMethod'] = "set" . $relationInfo->getName();
break;
case "has-one-relation":
foreach ($tableMap->getRelations() as $relation) {
if ($relation->getType() === \Propel\Runtime\Map\RelationMap::MANY_TO_ONE) {
$relations[] = $relation->getName();
}
}
/** @var \Propel\Runtime\Map\RelationMap $relationInfo */
$relationInfo = null;
if (!empty($attributeInfo['db_column'])) {
// Method 1 - Use db_column information
$column = $tableMap->getColumn($attributeInfo['db_column']);
$relationInfo = $column->getRelation();
} else {
// Method 2 - Guess based on attribute name
$relationName = ucfirst($attribute);
$relationInfo = $tableMap->getRelation($relationName);
}
/** @var \Propel\Runtime\Map\ColumnMap $localColumn */
$localColumns = $relationInfo->getLocalColumns();
$localColumn = array_shift($localColumns);
$attributeInfo['relatedModelClass'] = $relationInfo->getForeignTable()->getPhpName();
$attributeInfo['fkAttribute'] = $localColumn->getName();
$attributeInfo['relatedItemGetterMethod'] = "get" . $relationInfo->getName();
$attributeInfo['relatedItemSetterMethod'] = "set" . $relationInfo->getName();
break;
case "ordinary":
case "primary-key":
break;
default:
// ignore
break;
}
} catch (\Propel\Runtime\Map\Exception\RelationNotFoundException $e) {
throw new \Exception(
"Could not find {$attributeInfo['type']} relation information for $modelClass->$attribute: " . $e->getMessage(
) . "\nAvailable relations for {$tableMap->getPhpName()}: \n - " . implode("\n - ", $relations)
. (empty($attributeInfo['db_column']) ? "\n\nHint: By setting the db_column property in the item type attribute metadata, the relation information can be determined without guessing" : "")
);
} catch (\Propel\Runtime\Map\Exception\ColumnNotFoundException $e) {
throw new \Exception(
"Could not find {$attributeInfo['type']} relation information for $modelClass->$attribute due to a column not found exception: " . $e->getMessage(
) . "\nAvailable relations for {$tableMap->getPhpName()}: \n - " . implode("\n - ", $relations)
. (empty($attributeInfo['db_column']) ? "\n\nHint: Make sure that the db_column property in the item type attribute metadata points to an existing column" : "")
);
}
}
}