Completed
Pull Request — 4.3 (#149)
by Dorian
13:16
created
src/Mouf/Database/TDBM/Utils/BeanDescriptor.php 2 patches
Indentation   +625 added lines, -625 removed lines patch added patch discarded remove patch
@@ -16,241 +16,241 @@  discard block
 block discarded – undo
16 16
  */
17 17
 class BeanDescriptor implements BeanDescriptorInterface
18 18
 {
19
-    /**
20
-     * @var Table
21
-     */
22
-    private $table;
23
-
24
-    /**
25
-     * @var SchemaAnalyzer
26
-     */
27
-    private $schemaAnalyzer;
28
-
29
-    /**
30
-     * @var Schema
31
-     */
32
-    private $schema;
33
-
34
-    /**
35
-     * @var AbstractBeanPropertyDescriptor[]
36
-     */
37
-    private $beanPropertyDescriptors = [];
38
-
39
-    /**
40
-     * @var TDBMSchemaAnalyzer
41
-     */
42
-    private $tdbmSchemaAnalyzer;
43
-
44
-    /**
45
-     * @var NamingStrategyInterface
46
-     */
47
-    private $namingStrategy;
48
-
49
-    /**
50
-     * @param Table $table
51
-     * @param SchemaAnalyzer $schemaAnalyzer
52
-     * @param Schema $schema
53
-     * @param TDBMSchemaAnalyzer $tdbmSchemaAnalyzer
54
-     * @param NamingStrategyInterface $namingStrategy
55
-     */
56
-    public function __construct(Table $table, SchemaAnalyzer $schemaAnalyzer, Schema $schema, TDBMSchemaAnalyzer $tdbmSchemaAnalyzer, NamingStrategyInterface $namingStrategy)
57
-    {
58
-        $this->table = $table;
59
-        $this->schemaAnalyzer = $schemaAnalyzer;
60
-        $this->schema = $schema;
61
-        $this->tdbmSchemaAnalyzer = $tdbmSchemaAnalyzer;
62
-        $this->namingStrategy = $namingStrategy;
63
-        $this->initBeanPropertyDescriptors();
64
-    }
65
-
66
-    private function initBeanPropertyDescriptors()
67
-    {
68
-        $this->beanPropertyDescriptors = $this->getProperties($this->table);
69
-    }
70
-
71
-    /**
72
-     * Returns the foreign-key the column is part of, if any. null otherwise.
73
-     *
74
-     * @param Table  $table
75
-     * @param Column $column
76
-     *
77
-     * @return ForeignKeyConstraint|null
78
-     */
79
-    private function isPartOfForeignKey(Table $table, Column $column)
80
-    {
81
-        $localColumnName = $column->getName();
82
-        foreach ($table->getForeignKeys() as $foreignKey) {
83
-            foreach ($foreignKey->getColumns() as $columnName) {
84
-                if ($columnName === $localColumnName) {
85
-                    return $foreignKey;
86
-                }
87
-            }
88
-        }
89
-
90
-        return;
91
-    }
92
-
93
-    /**
94
-     * @return AbstractBeanPropertyDescriptor[]
95
-     */
96
-    public function getBeanPropertyDescriptors()
97
-    {
98
-        return $this->beanPropertyDescriptors;
99
-    }
100
-
101
-    /**
102
-     * Returns the list of columns that are not nullable and not autogenerated for a given table and its parent.
103
-     *
104
-     * @return AbstractBeanPropertyDescriptor[]
105
-     */
106
-    public function getConstructorProperties()
107
-    {
108
-        $constructorProperties = array_filter($this->beanPropertyDescriptors, function (AbstractBeanPropertyDescriptor $property) {
109
-            return $property->isCompulsory();
110
-        });
111
-
112
-        return $constructorProperties;
113
-    }
114
-
115
-    /**
116
-     * Returns the list of columns that have default values for a given table.
117
-     *
118
-     * @return AbstractBeanPropertyDescriptor[]
119
-     */
120
-    public function getPropertiesWithDefault()
121
-    {
122
-        $properties = $this->getPropertiesForTable($this->table);
123
-        $defaultProperties = array_filter($properties, function (AbstractBeanPropertyDescriptor $property) {
124
-            return $property->hasDefault();
125
-        });
126
-
127
-        return $defaultProperties;
128
-    }
129
-
130
-    /**
131
-     * Returns the list of properties exposed as getters and setters in this class.
132
-     *
133
-     * @return AbstractBeanPropertyDescriptor[]
134
-     */
135
-    public function getExposedProperties(): array
136
-    {
137
-        $exposedProperties = array_filter($this->beanPropertyDescriptors, function (AbstractBeanPropertyDescriptor $property) {
138
-            return $property->getTable()->getName() == $this->table->getName();
139
-        });
140
-
141
-        return $exposedProperties;
142
-    }
143
-
144
-    /**
145
-     * Returns the list of properties for this table (including parent tables).
146
-     *
147
-     * @param Table $table
148
-     *
149
-     * @return AbstractBeanPropertyDescriptor[]
150
-     */
151
-    private function getProperties(Table $table)
152
-    {
153
-        $parentRelationship = $this->schemaAnalyzer->getParentRelationship($table->getName());
154
-        if ($parentRelationship) {
155
-            $parentTable = $this->schema->getTable($parentRelationship->getForeignTableName());
156
-            $properties = $this->getProperties($parentTable);
157
-            // we merge properties by overriding property names.
158
-            $localProperties = $this->getPropertiesForTable($table);
159
-            foreach ($localProperties as $name => $property) {
160
-                // We do not override properties if this is a primary key!
161
-                if ($property->isPrimaryKey()) {
162
-                    continue;
163
-                }
164
-                $properties[$name] = $property;
165
-            }
166
-        } else {
167
-            $properties = $this->getPropertiesForTable($table);
168
-        }
169
-
170
-        return $properties;
171
-    }
172
-
173
-    /**
174
-     * Returns the list of properties for this table (ignoring parent tables).
175
-     *
176
-     * @param Table $table
177
-     *
178
-     * @return AbstractBeanPropertyDescriptor[]
179
-     */
180
-    private function getPropertiesForTable(Table $table)
181
-    {
182
-        $parentRelationship = $this->schemaAnalyzer->getParentRelationship($table->getName());
183
-        if ($parentRelationship) {
184
-            $ignoreColumns = $parentRelationship->getLocalColumns();
185
-        } else {
186
-            $ignoreColumns = [];
187
-        }
188
-
189
-        $beanPropertyDescriptors = [];
190
-
191
-        foreach ($table->getColumns() as $column) {
192
-            if (array_search($column->getName(), $ignoreColumns) !== false) {
193
-                continue;
194
-            }
195
-
196
-            $fk = $this->isPartOfForeignKey($table, $column);
197
-            if ($fk !== null) {
198
-                // Check that previously added descriptors are not added on same FK (can happen with multi key FK).
199
-                foreach ($beanPropertyDescriptors as $beanDescriptor) {
200
-                    if ($beanDescriptor instanceof ObjectBeanPropertyDescriptor && $beanDescriptor->getForeignKey() === $fk) {
201
-                        continue 2;
202
-                    }
203
-                }
204
-                // Check that this property is not an inheritance relationship
205
-                $parentRelationship = $this->schemaAnalyzer->getParentRelationship($table->getName());
206
-                if ($parentRelationship === $fk) {
207
-                    continue;
208
-                }
209
-
210
-                $beanPropertyDescriptors[] = new ObjectBeanPropertyDescriptor($table, $fk, $this->schemaAnalyzer, $this->namingStrategy);
211
-            } else {
212
-                $beanPropertyDescriptors[] = new ScalarBeanPropertyDescriptor($table, $column, $this->namingStrategy);
213
-            }
214
-        }
215
-
216
-        // Now, let's get the name of all properties and let's check there is no duplicate.
217
-        /** @var $names AbstractBeanPropertyDescriptor[] */
218
-        $names = [];
219
-        foreach ($beanPropertyDescriptors as $beanDescriptor) {
220
-            $name = $beanDescriptor->getUpperCamelCaseName();
221
-            if (isset($names[$name])) {
222
-                $names[$name]->useAlternativeName();
223
-                $beanDescriptor->useAlternativeName();
224
-            } else {
225
-                $names[$name] = $beanDescriptor;
226
-            }
227
-        }
228
-
229
-        // Final check (throw exceptions if problem arises)
230
-        $names = [];
231
-        foreach ($beanPropertyDescriptors as $beanDescriptor) {
232
-            $name = $beanDescriptor->getUpperCamelCaseName();
233
-            if (isset($names[$name])) {
234
-                throw new TDBMException('Unsolvable name conflict while generating method name');
235
-            } else {
236
-                $names[$name] = $beanDescriptor;
237
-            }
238
-        }
239
-
240
-        // Last step, let's rebuild the list with a map:
241
-        $beanPropertyDescriptorsMap = [];
242
-        foreach ($beanPropertyDescriptors as $beanDescriptor) {
243
-            $beanPropertyDescriptorsMap[$beanDescriptor->getLowerCamelCaseName()] = $beanDescriptor;
244
-        }
245
-
246
-        return $beanPropertyDescriptorsMap;
247
-    }
248
-
249
-    private function generateBeanConstructor() : string
250
-    {
251
-        $constructorProperties = $this->getConstructorProperties();
252
-
253
-        $constructorCode = '    /**
19
+	/**
20
+	 * @var Table
21
+	 */
22
+	private $table;
23
+
24
+	/**
25
+	 * @var SchemaAnalyzer
26
+	 */
27
+	private $schemaAnalyzer;
28
+
29
+	/**
30
+	 * @var Schema
31
+	 */
32
+	private $schema;
33
+
34
+	/**
35
+	 * @var AbstractBeanPropertyDescriptor[]
36
+	 */
37
+	private $beanPropertyDescriptors = [];
38
+
39
+	/**
40
+	 * @var TDBMSchemaAnalyzer
41
+	 */
42
+	private $tdbmSchemaAnalyzer;
43
+
44
+	/**
45
+	 * @var NamingStrategyInterface
46
+	 */
47
+	private $namingStrategy;
48
+
49
+	/**
50
+	 * @param Table $table
51
+	 * @param SchemaAnalyzer $schemaAnalyzer
52
+	 * @param Schema $schema
53
+	 * @param TDBMSchemaAnalyzer $tdbmSchemaAnalyzer
54
+	 * @param NamingStrategyInterface $namingStrategy
55
+	 */
56
+	public function __construct(Table $table, SchemaAnalyzer $schemaAnalyzer, Schema $schema, TDBMSchemaAnalyzer $tdbmSchemaAnalyzer, NamingStrategyInterface $namingStrategy)
57
+	{
58
+		$this->table = $table;
59
+		$this->schemaAnalyzer = $schemaAnalyzer;
60
+		$this->schema = $schema;
61
+		$this->tdbmSchemaAnalyzer = $tdbmSchemaAnalyzer;
62
+		$this->namingStrategy = $namingStrategy;
63
+		$this->initBeanPropertyDescriptors();
64
+	}
65
+
66
+	private function initBeanPropertyDescriptors()
67
+	{
68
+		$this->beanPropertyDescriptors = $this->getProperties($this->table);
69
+	}
70
+
71
+	/**
72
+	 * Returns the foreign-key the column is part of, if any. null otherwise.
73
+	 *
74
+	 * @param Table  $table
75
+	 * @param Column $column
76
+	 *
77
+	 * @return ForeignKeyConstraint|null
78
+	 */
79
+	private function isPartOfForeignKey(Table $table, Column $column)
80
+	{
81
+		$localColumnName = $column->getName();
82
+		foreach ($table->getForeignKeys() as $foreignKey) {
83
+			foreach ($foreignKey->getColumns() as $columnName) {
84
+				if ($columnName === $localColumnName) {
85
+					return $foreignKey;
86
+				}
87
+			}
88
+		}
89
+
90
+		return;
91
+	}
92
+
93
+	/**
94
+	 * @return AbstractBeanPropertyDescriptor[]
95
+	 */
96
+	public function getBeanPropertyDescriptors()
97
+	{
98
+		return $this->beanPropertyDescriptors;
99
+	}
100
+
101
+	/**
102
+	 * Returns the list of columns that are not nullable and not autogenerated for a given table and its parent.
103
+	 *
104
+	 * @return AbstractBeanPropertyDescriptor[]
105
+	 */
106
+	public function getConstructorProperties()
107
+	{
108
+		$constructorProperties = array_filter($this->beanPropertyDescriptors, function (AbstractBeanPropertyDescriptor $property) {
109
+			return $property->isCompulsory();
110
+		});
111
+
112
+		return $constructorProperties;
113
+	}
114
+
115
+	/**
116
+	 * Returns the list of columns that have default values for a given table.
117
+	 *
118
+	 * @return AbstractBeanPropertyDescriptor[]
119
+	 */
120
+	public function getPropertiesWithDefault()
121
+	{
122
+		$properties = $this->getPropertiesForTable($this->table);
123
+		$defaultProperties = array_filter($properties, function (AbstractBeanPropertyDescriptor $property) {
124
+			return $property->hasDefault();
125
+		});
126
+
127
+		return $defaultProperties;
128
+	}
129
+
130
+	/**
131
+	 * Returns the list of properties exposed as getters and setters in this class.
132
+	 *
133
+	 * @return AbstractBeanPropertyDescriptor[]
134
+	 */
135
+	public function getExposedProperties(): array
136
+	{
137
+		$exposedProperties = array_filter($this->beanPropertyDescriptors, function (AbstractBeanPropertyDescriptor $property) {
138
+			return $property->getTable()->getName() == $this->table->getName();
139
+		});
140
+
141
+		return $exposedProperties;
142
+	}
143
+
144
+	/**
145
+	 * Returns the list of properties for this table (including parent tables).
146
+	 *
147
+	 * @param Table $table
148
+	 *
149
+	 * @return AbstractBeanPropertyDescriptor[]
150
+	 */
151
+	private function getProperties(Table $table)
152
+	{
153
+		$parentRelationship = $this->schemaAnalyzer->getParentRelationship($table->getName());
154
+		if ($parentRelationship) {
155
+			$parentTable = $this->schema->getTable($parentRelationship->getForeignTableName());
156
+			$properties = $this->getProperties($parentTable);
157
+			// we merge properties by overriding property names.
158
+			$localProperties = $this->getPropertiesForTable($table);
159
+			foreach ($localProperties as $name => $property) {
160
+				// We do not override properties if this is a primary key!
161
+				if ($property->isPrimaryKey()) {
162
+					continue;
163
+				}
164
+				$properties[$name] = $property;
165
+			}
166
+		} else {
167
+			$properties = $this->getPropertiesForTable($table);
168
+		}
169
+
170
+		return $properties;
171
+	}
172
+
173
+	/**
174
+	 * Returns the list of properties for this table (ignoring parent tables).
175
+	 *
176
+	 * @param Table $table
177
+	 *
178
+	 * @return AbstractBeanPropertyDescriptor[]
179
+	 */
180
+	private function getPropertiesForTable(Table $table)
181
+	{
182
+		$parentRelationship = $this->schemaAnalyzer->getParentRelationship($table->getName());
183
+		if ($parentRelationship) {
184
+			$ignoreColumns = $parentRelationship->getLocalColumns();
185
+		} else {
186
+			$ignoreColumns = [];
187
+		}
188
+
189
+		$beanPropertyDescriptors = [];
190
+
191
+		foreach ($table->getColumns() as $column) {
192
+			if (array_search($column->getName(), $ignoreColumns) !== false) {
193
+				continue;
194
+			}
195
+
196
+			$fk = $this->isPartOfForeignKey($table, $column);
197
+			if ($fk !== null) {
198
+				// Check that previously added descriptors are not added on same FK (can happen with multi key FK).
199
+				foreach ($beanPropertyDescriptors as $beanDescriptor) {
200
+					if ($beanDescriptor instanceof ObjectBeanPropertyDescriptor && $beanDescriptor->getForeignKey() === $fk) {
201
+						continue 2;
202
+					}
203
+				}
204
+				// Check that this property is not an inheritance relationship
205
+				$parentRelationship = $this->schemaAnalyzer->getParentRelationship($table->getName());
206
+				if ($parentRelationship === $fk) {
207
+					continue;
208
+				}
209
+
210
+				$beanPropertyDescriptors[] = new ObjectBeanPropertyDescriptor($table, $fk, $this->schemaAnalyzer, $this->namingStrategy);
211
+			} else {
212
+				$beanPropertyDescriptors[] = new ScalarBeanPropertyDescriptor($table, $column, $this->namingStrategy);
213
+			}
214
+		}
215
+
216
+		// Now, let's get the name of all properties and let's check there is no duplicate.
217
+		/** @var $names AbstractBeanPropertyDescriptor[] */
218
+		$names = [];
219
+		foreach ($beanPropertyDescriptors as $beanDescriptor) {
220
+			$name = $beanDescriptor->getUpperCamelCaseName();
221
+			if (isset($names[$name])) {
222
+				$names[$name]->useAlternativeName();
223
+				$beanDescriptor->useAlternativeName();
224
+			} else {
225
+				$names[$name] = $beanDescriptor;
226
+			}
227
+		}
228
+
229
+		// Final check (throw exceptions if problem arises)
230
+		$names = [];
231
+		foreach ($beanPropertyDescriptors as $beanDescriptor) {
232
+			$name = $beanDescriptor->getUpperCamelCaseName();
233
+			if (isset($names[$name])) {
234
+				throw new TDBMException('Unsolvable name conflict while generating method name');
235
+			} else {
236
+				$names[$name] = $beanDescriptor;
237
+			}
238
+		}
239
+
240
+		// Last step, let's rebuild the list with a map:
241
+		$beanPropertyDescriptorsMap = [];
242
+		foreach ($beanPropertyDescriptors as $beanDescriptor) {
243
+			$beanPropertyDescriptorsMap[$beanDescriptor->getLowerCamelCaseName()] = $beanDescriptor;
244
+		}
245
+
246
+		return $beanPropertyDescriptorsMap;
247
+	}
248
+
249
+	private function generateBeanConstructor() : string
250
+	{
251
+		$constructorProperties = $this->getConstructorProperties();
252
+
253
+		$constructorCode = '    /**
254 254
      * The constructor takes all compulsory arguments.
255 255
      *
256 256
 %s
@@ -260,110 +260,110 @@  discard block
 block discarded – undo
260 260
 %s%s    }
261 261
     ';
262 262
 
263
-        $paramAnnotations = [];
264
-        $arguments = [];
265
-        $assigns = [];
266
-        $parentConstructorArguments = [];
267
-
268
-        foreach ($constructorProperties as $property) {
269
-            $className = $property->getClassName();
270
-            if ($className) {
271
-                $arguments[] = $className.' '.$property->getVariableName();
272
-            } else {
273
-                $arguments[] = $property->getVariableName();
274
-            }
275
-            $paramAnnotations[] = $property->getParamAnnotation();
276
-            if ($property->getTable()->getName() === $this->table->getName()) {
277
-                $assigns[] = $property->getConstructorAssignCode()."\n";
278
-            } else {
279
-                $parentConstructorArguments[] = $property->getVariableName();
280
-            }
281
-        }
282
-
283
-        $parentConstructorCode = sprintf("        parent::__construct(%s);\n", implode(', ', $parentConstructorArguments));
284
-
285
-        foreach ($this->getPropertiesWithDefault() as $property) {
286
-            $assigns[] = $property->assignToDefaultCode()."\n";
287
-        }
288
-
289
-        return sprintf($constructorCode, implode("\n", $paramAnnotations), implode(', ', $arguments), $parentConstructorCode, implode('', $assigns));
290
-    }
291
-
292
-    public function getDirectForeignKeysDescriptors(): array
293
-    {
294
-        $fks = $this->tdbmSchemaAnalyzer->getIncomingForeignKeys($this->table->getName());
295
-
296
-        $descriptors = [];
297
-
298
-        foreach ($fks as $fk) {
299
-            $descriptors[] = new DirectForeignKeyMethodDescriptor($fk, $this->table, $this->namingStrategy);
300
-        }
301
-
302
-        return $descriptors;
303
-    }
304
-
305
-    private function getPivotTableDescriptors(): array
306
-    {
307
-        $descs = [];
308
-        foreach ($this->schemaAnalyzer->detectJunctionTables(true) as $table) {
309
-            // There are exactly 2 FKs since this is a pivot table.
310
-            $fks = array_values($table->getForeignKeys());
311
-
312
-            if ($fks[0]->getForeignTableName() === $this->table->getName()) {
313
-                list($localFk, $remoteFk) = $fks;
314
-            } elseif ($fks[1]->getForeignTableName() === $this->table->getName()) {
315
-                list($remoteFk, $localFk) = $fks;
316
-            } else {
317
-                continue;
318
-            }
319
-
320
-            $descs[] = new PivotTableMethodsDescriptor($table, $localFk, $remoteFk, $this->namingStrategy);
321
-        }
322
-
323
-        return $descs;
324
-    }
325
-
326
-    /**
327
-     * Returns the list of method descriptors (and applies the alternative name if needed).
328
-     *
329
-     * @return MethodDescriptorInterface[]
330
-     */
331
-    private function getMethodDescriptors(): array
332
-    {
333
-        $directForeignKeyDescriptors = $this->getDirectForeignKeysDescriptors();
334
-        $pivotTableDescriptors = $this->getPivotTableDescriptors();
335
-
336
-        $descriptors = array_merge($directForeignKeyDescriptors, $pivotTableDescriptors);
337
-
338
-        // Descriptors by method names
339
-        $descriptorsByMethodName = [];
340
-
341
-        foreach ($descriptors as $descriptor) {
342
-            $descriptorsByMethodName[$descriptor->getName()][] = $descriptor;
343
-        }
344
-
345
-        foreach ($descriptorsByMethodName as $descriptorsForMethodName) {
346
-            if (count($descriptorsForMethodName) > 1) {
347
-                foreach ($descriptorsForMethodName as $descriptor) {
348
-                    $descriptor->useAlternativeName();
349
-                }
350
-            }
351
-        }
352
-
353
-        return $descriptors;
354
-    }
355
-
356
-    public function generateJsonSerialize(): string
357
-    {
358
-        $tableName = $this->table->getName();
359
-        $parentFk = $this->schemaAnalyzer->getParentRelationship($tableName);
360
-        if ($parentFk !== null) {
361
-            $initializer = '$array = parent::jsonSerialize($stopRecursion);';
362
-        } else {
363
-            $initializer = '$array = [];';
364
-        }
365
-
366
-        $str = '
263
+		$paramAnnotations = [];
264
+		$arguments = [];
265
+		$assigns = [];
266
+		$parentConstructorArguments = [];
267
+
268
+		foreach ($constructorProperties as $property) {
269
+			$className = $property->getClassName();
270
+			if ($className) {
271
+				$arguments[] = $className.' '.$property->getVariableName();
272
+			} else {
273
+				$arguments[] = $property->getVariableName();
274
+			}
275
+			$paramAnnotations[] = $property->getParamAnnotation();
276
+			if ($property->getTable()->getName() === $this->table->getName()) {
277
+				$assigns[] = $property->getConstructorAssignCode()."\n";
278
+			} else {
279
+				$parentConstructorArguments[] = $property->getVariableName();
280
+			}
281
+		}
282
+
283
+		$parentConstructorCode = sprintf("        parent::__construct(%s);\n", implode(', ', $parentConstructorArguments));
284
+
285
+		foreach ($this->getPropertiesWithDefault() as $property) {
286
+			$assigns[] = $property->assignToDefaultCode()."\n";
287
+		}
288
+
289
+		return sprintf($constructorCode, implode("\n", $paramAnnotations), implode(', ', $arguments), $parentConstructorCode, implode('', $assigns));
290
+	}
291
+
292
+	public function getDirectForeignKeysDescriptors(): array
293
+	{
294
+		$fks = $this->tdbmSchemaAnalyzer->getIncomingForeignKeys($this->table->getName());
295
+
296
+		$descriptors = [];
297
+
298
+		foreach ($fks as $fk) {
299
+			$descriptors[] = new DirectForeignKeyMethodDescriptor($fk, $this->table, $this->namingStrategy);
300
+		}
301
+
302
+		return $descriptors;
303
+	}
304
+
305
+	private function getPivotTableDescriptors(): array
306
+	{
307
+		$descs = [];
308
+		foreach ($this->schemaAnalyzer->detectJunctionTables(true) as $table) {
309
+			// There are exactly 2 FKs since this is a pivot table.
310
+			$fks = array_values($table->getForeignKeys());
311
+
312
+			if ($fks[0]->getForeignTableName() === $this->table->getName()) {
313
+				list($localFk, $remoteFk) = $fks;
314
+			} elseif ($fks[1]->getForeignTableName() === $this->table->getName()) {
315
+				list($remoteFk, $localFk) = $fks;
316
+			} else {
317
+				continue;
318
+			}
319
+
320
+			$descs[] = new PivotTableMethodsDescriptor($table, $localFk, $remoteFk, $this->namingStrategy);
321
+		}
322
+
323
+		return $descs;
324
+	}
325
+
326
+	/**
327
+	 * Returns the list of method descriptors (and applies the alternative name if needed).
328
+	 *
329
+	 * @return MethodDescriptorInterface[]
330
+	 */
331
+	private function getMethodDescriptors(): array
332
+	{
333
+		$directForeignKeyDescriptors = $this->getDirectForeignKeysDescriptors();
334
+		$pivotTableDescriptors = $this->getPivotTableDescriptors();
335
+
336
+		$descriptors = array_merge($directForeignKeyDescriptors, $pivotTableDescriptors);
337
+
338
+		// Descriptors by method names
339
+		$descriptorsByMethodName = [];
340
+
341
+		foreach ($descriptors as $descriptor) {
342
+			$descriptorsByMethodName[$descriptor->getName()][] = $descriptor;
343
+		}
344
+
345
+		foreach ($descriptorsByMethodName as $descriptorsForMethodName) {
346
+			if (count($descriptorsForMethodName) > 1) {
347
+				foreach ($descriptorsForMethodName as $descriptor) {
348
+					$descriptor->useAlternativeName();
349
+				}
350
+			}
351
+		}
352
+
353
+		return $descriptors;
354
+	}
355
+
356
+	public function generateJsonSerialize(): string
357
+	{
358
+		$tableName = $this->table->getName();
359
+		$parentFk = $this->schemaAnalyzer->getParentRelationship($tableName);
360
+		if ($parentFk !== null) {
361
+			$initializer = '$array = parent::jsonSerialize($stopRecursion);';
362
+		} else {
363
+			$initializer = '$array = [];';
364
+		}
365
+
366
+		$str = '
367 367
     /**
368 368
      * Serializes the object for JSON encoding.
369 369
      *
@@ -379,77 +379,77 @@  discard block
 block discarded – undo
379 379
     }
380 380
 ';
381 381
 
382
-        $propertiesCode = '';
383
-        foreach ($this->beanPropertyDescriptors as $beanPropertyDescriptor) {
384
-            $propertiesCode .= $beanPropertyDescriptor->getJsonSerializeCode();
385
-        }
386
-
387
-        // Many2many relationships
388
-        $methodsCode = '';
389
-        foreach ($this->getMethodDescriptors() as $methodDescriptor) {
390
-            $methodsCode .= $methodDescriptor->getJsonSerializeCode();
391
-        }
392
-
393
-        return sprintf($str, $initializer, $propertiesCode, $methodsCode);
394
-    }
395
-
396
-    /**
397
-     * Returns as an array the class we need to extend from and the list of use statements.
398
-     *
399
-     * @param ForeignKeyConstraint|null $parentFk
400
-     * @return array
401
-     */
402
-    private function generateExtendsAndUseStatements(ForeignKeyConstraint $parentFk = null): array
403
-    {
404
-        $classes = [];
405
-        if ($parentFk !== null) {
406
-            $extends = $this->namingStrategy->getBeanClassName($parentFk->getForeignTableName());
407
-            $classes[] = $extends;
408
-        }
409
-
410
-        foreach ($this->getBeanPropertyDescriptors() as $beanPropertyDescriptor) {
411
-            $className = $beanPropertyDescriptor->getClassName();
412
-            if (null !== $className) {
413
-                $classes[] = $beanPropertyDescriptor->getClassName();
414
-            }
415
-        }
416
-
417
-        foreach ($this->getMethodDescriptors() as $descriptor) {
418
-            $classes = array_merge($classes, $descriptor->getUsedClasses());
419
-        }
420
-
421
-        $classes = array_unique($classes);
422
-
423
-        return $classes;
424
-    }
425
-
426
-    /**
427
-     * Writes the PHP bean file with all getters and setters from the table passed in parameter.
428
-     *
429
-     * @param string $beannamespace The namespace of the bean
430
-     * @return string
431
-     */
432
-    public function generatePhpCode($beannamespace): string
433
-    {
434
-        $tableName = $this->table->getName();
435
-        $baseClassName = $this->namingStrategy->getBaseBeanClassName($tableName);
436
-        $className = $this->namingStrategy->getBeanClassName($tableName);
437
-        $parentFk = $this->schemaAnalyzer->getParentRelationship($this->table->getName());
438
-
439
-        $classes = $this->generateExtendsAndUseStatements($parentFk);
440
-
441
-        $uses = array_map(function ($className) use ($beannamespace) {
442
-            return 'use '.$beannamespace.'\\'.$className.";\n";
443
-        }, $classes);
444
-        $use = implode('', $uses);
445
-
446
-        $extends = $this->getExtendedBeanClassName();
447
-        if ($extends === null) {
448
-            $extends = 'AbstractTDBMObject';
449
-            $use .= "use Mouf\\Database\\TDBM\\AbstractTDBMObject;\n";
450
-        }
451
-
452
-        $str = "<?php
382
+		$propertiesCode = '';
383
+		foreach ($this->beanPropertyDescriptors as $beanPropertyDescriptor) {
384
+			$propertiesCode .= $beanPropertyDescriptor->getJsonSerializeCode();
385
+		}
386
+
387
+		// Many2many relationships
388
+		$methodsCode = '';
389
+		foreach ($this->getMethodDescriptors() as $methodDescriptor) {
390
+			$methodsCode .= $methodDescriptor->getJsonSerializeCode();
391
+		}
392
+
393
+		return sprintf($str, $initializer, $propertiesCode, $methodsCode);
394
+	}
395
+
396
+	/**
397
+	 * Returns as an array the class we need to extend from and the list of use statements.
398
+	 *
399
+	 * @param ForeignKeyConstraint|null $parentFk
400
+	 * @return array
401
+	 */
402
+	private function generateExtendsAndUseStatements(ForeignKeyConstraint $parentFk = null): array
403
+	{
404
+		$classes = [];
405
+		if ($parentFk !== null) {
406
+			$extends = $this->namingStrategy->getBeanClassName($parentFk->getForeignTableName());
407
+			$classes[] = $extends;
408
+		}
409
+
410
+		foreach ($this->getBeanPropertyDescriptors() as $beanPropertyDescriptor) {
411
+			$className = $beanPropertyDescriptor->getClassName();
412
+			if (null !== $className) {
413
+				$classes[] = $beanPropertyDescriptor->getClassName();
414
+			}
415
+		}
416
+
417
+		foreach ($this->getMethodDescriptors() as $descriptor) {
418
+			$classes = array_merge($classes, $descriptor->getUsedClasses());
419
+		}
420
+
421
+		$classes = array_unique($classes);
422
+
423
+		return $classes;
424
+	}
425
+
426
+	/**
427
+	 * Writes the PHP bean file with all getters and setters from the table passed in parameter.
428
+	 *
429
+	 * @param string $beannamespace The namespace of the bean
430
+	 * @return string
431
+	 */
432
+	public function generatePhpCode($beannamespace): string
433
+	{
434
+		$tableName = $this->table->getName();
435
+		$baseClassName = $this->namingStrategy->getBaseBeanClassName($tableName);
436
+		$className = $this->namingStrategy->getBeanClassName($tableName);
437
+		$parentFk = $this->schemaAnalyzer->getParentRelationship($this->table->getName());
438
+
439
+		$classes = $this->generateExtendsAndUseStatements($parentFk);
440
+
441
+		$uses = array_map(function ($className) use ($beannamespace) {
442
+			return 'use '.$beannamespace.'\\'.$className.";\n";
443
+		}, $classes);
444
+		$use = implode('', $uses);
445
+
446
+		$extends = $this->getExtendedBeanClassName();
447
+		if ($extends === null) {
448
+			$extends = 'AbstractTDBMObject';
449
+			$use .= "use Mouf\\Database\\TDBM\\AbstractTDBMObject;\n";
450
+		}
451
+
452
+		$str = "<?php
453 453
 namespace {$beannamespace}\\Generated;
454 454
 
455 455
 use Mouf\\Database\\TDBM\\ResultIterator;
@@ -469,125 +469,125 @@  discard block
 block discarded – undo
469 469
 {
470 470
 ";
471 471
 
472
-        $str .= $this->generateBeanConstructor();
472
+		$str .= $this->generateBeanConstructor();
473 473
 
474
-        foreach ($this->getExposedProperties() as $property) {
475
-            $str .= $property->getGetterSetterCode();
476
-        }
474
+		foreach ($this->getExposedProperties() as $property) {
475
+			$str .= $property->getGetterSetterCode();
476
+		}
477 477
 
478
-        foreach ($this->getMethodDescriptors() as $methodDescriptor) {
479
-            $str .= $methodDescriptor->getCode();
480
-        }
481
-        $str .= $this->generateJsonSerialize();
478
+		foreach ($this->getMethodDescriptors() as $methodDescriptor) {
479
+			$str .= $methodDescriptor->getCode();
480
+		}
481
+		$str .= $this->generateJsonSerialize();
482 482
 
483
-        $str .= $this->generateGetUsedTablesCode();
483
+		$str .= $this->generateGetUsedTablesCode();
484 484
 
485
-        $str .= $this->generateOnDeleteCode();
485
+		$str .= $this->generateOnDeleteCode();
486 486
 
487
-        $str .= '}
487
+		$str .= '}
488 488
 ';
489 489
 
490
-        return $str;
491
-    }
492
-
493
-    /**
494
-     * @param string $beanNamespace
495
-     * @param string $beanClassName
496
-     *
497
-     * @return array first element: list of used beans, second item: PHP code as a string
498
-     */
499
-    public function generateFindByDaoCode($beanNamespace, $beanClassName)
500
-    {
501
-        $code = '';
502
-        $usedBeans = [];
503
-        foreach ($this->table->getIndexes() as $index) {
504
-            if (!$index->isPrimary()) {
505
-                list($usedBeansForIndex, $codeForIndex) = $this->generateFindByDaoCodeForIndex($index, $beanNamespace, $beanClassName);
506
-                $code .= $codeForIndex;
507
-                $usedBeans = array_merge($usedBeans, $usedBeansForIndex);
508
-            }
509
-        }
510
-
511
-        return [$usedBeans, $code];
512
-    }
513
-
514
-    /**
515
-     * @param Index  $index
516
-     * @param string $beanNamespace
517
-     * @param string $beanClassName
518
-     *
519
-     * @return array first element: list of used beans, second item: PHP code as a string
520
-     */
521
-    private function generateFindByDaoCodeForIndex(Index $index, $beanNamespace, $beanClassName)
522
-    {
523
-        $columns = $index->getColumns();
524
-        $usedBeans = [];
525
-
526
-        /*
490
+		return $str;
491
+	}
492
+
493
+	/**
494
+	 * @param string $beanNamespace
495
+	 * @param string $beanClassName
496
+	 *
497
+	 * @return array first element: list of used beans, second item: PHP code as a string
498
+	 */
499
+	public function generateFindByDaoCode($beanNamespace, $beanClassName)
500
+	{
501
+		$code = '';
502
+		$usedBeans = [];
503
+		foreach ($this->table->getIndexes() as $index) {
504
+			if (!$index->isPrimary()) {
505
+				list($usedBeansForIndex, $codeForIndex) = $this->generateFindByDaoCodeForIndex($index, $beanNamespace, $beanClassName);
506
+				$code .= $codeForIndex;
507
+				$usedBeans = array_merge($usedBeans, $usedBeansForIndex);
508
+			}
509
+		}
510
+
511
+		return [$usedBeans, $code];
512
+	}
513
+
514
+	/**
515
+	 * @param Index  $index
516
+	 * @param string $beanNamespace
517
+	 * @param string $beanClassName
518
+	 *
519
+	 * @return array first element: list of used beans, second item: PHP code as a string
520
+	 */
521
+	private function generateFindByDaoCodeForIndex(Index $index, $beanNamespace, $beanClassName)
522
+	{
523
+		$columns = $index->getColumns();
524
+		$usedBeans = [];
525
+
526
+		/*
527 527
          * The list of elements building this index (expressed as columns or foreign keys)
528 528
          * @var AbstractBeanPropertyDescriptor[]
529 529
          */
530
-        $elements = [];
531
-
532
-        foreach ($columns as $column) {
533
-            $fk = $this->isPartOfForeignKey($this->table, $this->table->getColumn($column));
534
-            if ($fk !== null) {
535
-                if (!in_array($fk, $elements)) {
536
-                    $elements[] = new ObjectBeanPropertyDescriptor($this->table, $fk, $this->schemaAnalyzer, $this->namingStrategy);
537
-                }
538
-            } else {
539
-                $elements[] = new ScalarBeanPropertyDescriptor($this->table, $this->table->getColumn($column), $this->namingStrategy);
540
-            }
541
-        }
542
-
543
-        // If the index is actually only a foreign key, let's bypass it entirely.
544
-        if (count($elements) === 1 && $elements[0] instanceof ObjectBeanPropertyDescriptor) {
545
-            return [[], ''];
546
-        }
547
-
548
-        $methodNameComponent = [];
549
-        $functionParameters = [];
550
-        $first = true;
551
-        foreach ($elements as $element) {
552
-            $methodNameComponent[] = $element->getUpperCamelCaseName();
553
-            $functionParameter = $element->getClassName();
554
-            if ($functionParameter) {
555
-                $usedBeans[] = $beanNamespace.'\\'.$functionParameter;
556
-                $functionParameter .= ' ';
557
-            }
558
-            $functionParameter .= $element->getVariableName();
559
-            if ($first) {
560
-                $first = false;
561
-            } else {
562
-                $functionParameter .= ' = null';
563
-            }
564
-            $functionParameters[] = $functionParameter;
565
-        }
566
-
567
-        $functionParametersString = implode(', ', $functionParameters);
568
-
569
-        $count = 0;
570
-
571
-        $params = [];
572
-        $filterArrayCode = '';
573
-        $commentArguments = [];
574
-        foreach ($elements as $element) {
575
-            $params[] = $element->getParamAnnotation();
576
-            if ($element instanceof ScalarBeanPropertyDescriptor) {
577
-                $filterArrayCode .= '            '.var_export($element->getColumnName(), true).' => '.$element->getVariableName().",\n";
578
-            } else {
579
-                ++$count;
580
-                $filterArrayCode .= '            '.$count.' => '.$element->getVariableName().",\n";
581
-            }
582
-            $commentArguments[] = substr($element->getVariableName(), 1);
583
-        }
584
-        $paramsString = implode("\n", $params);
585
-
586
-        if ($index->isUnique()) {
587
-            $methodName = 'findOneBy'.implode('And', $methodNameComponent);
588
-            $returnType = "{$beanClassName}";
589
-
590
-            $code = "
530
+		$elements = [];
531
+
532
+		foreach ($columns as $column) {
533
+			$fk = $this->isPartOfForeignKey($this->table, $this->table->getColumn($column));
534
+			if ($fk !== null) {
535
+				if (!in_array($fk, $elements)) {
536
+					$elements[] = new ObjectBeanPropertyDescriptor($this->table, $fk, $this->schemaAnalyzer, $this->namingStrategy);
537
+				}
538
+			} else {
539
+				$elements[] = new ScalarBeanPropertyDescriptor($this->table, $this->table->getColumn($column), $this->namingStrategy);
540
+			}
541
+		}
542
+
543
+		// If the index is actually only a foreign key, let's bypass it entirely.
544
+		if (count($elements) === 1 && $elements[0] instanceof ObjectBeanPropertyDescriptor) {
545
+			return [[], ''];
546
+		}
547
+
548
+		$methodNameComponent = [];
549
+		$functionParameters = [];
550
+		$first = true;
551
+		foreach ($elements as $element) {
552
+			$methodNameComponent[] = $element->getUpperCamelCaseName();
553
+			$functionParameter = $element->getClassName();
554
+			if ($functionParameter) {
555
+				$usedBeans[] = $beanNamespace.'\\'.$functionParameter;
556
+				$functionParameter .= ' ';
557
+			}
558
+			$functionParameter .= $element->getVariableName();
559
+			if ($first) {
560
+				$first = false;
561
+			} else {
562
+				$functionParameter .= ' = null';
563
+			}
564
+			$functionParameters[] = $functionParameter;
565
+		}
566
+
567
+		$functionParametersString = implode(', ', $functionParameters);
568
+
569
+		$count = 0;
570
+
571
+		$params = [];
572
+		$filterArrayCode = '';
573
+		$commentArguments = [];
574
+		foreach ($elements as $element) {
575
+			$params[] = $element->getParamAnnotation();
576
+			if ($element instanceof ScalarBeanPropertyDescriptor) {
577
+				$filterArrayCode .= '            '.var_export($element->getColumnName(), true).' => '.$element->getVariableName().",\n";
578
+			} else {
579
+				++$count;
580
+				$filterArrayCode .= '            '.$count.' => '.$element->getVariableName().",\n";
581
+			}
582
+			$commentArguments[] = substr($element->getVariableName(), 1);
583
+		}
584
+		$paramsString = implode("\n", $params);
585
+
586
+		if ($index->isUnique()) {
587
+			$methodName = 'findOneBy'.implode('And', $methodNameComponent);
588
+			$returnType = "{$beanClassName}";
589
+
590
+			$code = "
591 591
     /**
592 592
      * Get a $beanClassName filtered by ".implode(', ', $commentArguments).".
593 593
      *
@@ -602,11 +602,11 @@  discard block
 block discarded – undo
602 602
         return \$this->findOne(\$filter, [], \$additionalTablesFetch);
603 603
     }
604 604
 ";
605
-        } else {
606
-            $methodName = 'findBy'.implode('And', $methodNameComponent);
607
-            $returnType = "{$beanClassName}[]|ResultIterator|ResultArray";
605
+		} else {
606
+			$methodName = 'findBy'.implode('And', $methodNameComponent);
607
+			$returnType = "{$beanClassName}[]|ResultIterator|ResultArray";
608 608
 
609
-            $code = "
609
+			$code = "
610 610
     /**
611 611
      * Get a list of $beanClassName filtered by ".implode(', ', $commentArguments).".
612 612
      *
@@ -623,29 +623,29 @@  discard block
 block discarded – undo
623 623
         return \$this->find(\$filter, [], \$orderBy, \$additionalTablesFetch, \$mode);
624 624
     }
625 625
 ";
626
-        }
627
-
628
-        return [$usedBeans, $code];
629
-    }
630
-
631
-    /**
632
-     * Generates the code for the getUsedTable protected method.
633
-     *
634
-     * @return string
635
-     */
636
-    private function generateGetUsedTablesCode()
637
-    {
638
-        $hasParentRelationship = $this->schemaAnalyzer->getParentRelationship($this->table->getName()) !== null;
639
-        if ($hasParentRelationship) {
640
-            $code = sprintf('        $tables = parent::getUsedTables();
626
+		}
627
+
628
+		return [$usedBeans, $code];
629
+	}
630
+
631
+	/**
632
+	 * Generates the code for the getUsedTable protected method.
633
+	 *
634
+	 * @return string
635
+	 */
636
+	private function generateGetUsedTablesCode()
637
+	{
638
+		$hasParentRelationship = $this->schemaAnalyzer->getParentRelationship($this->table->getName()) !== null;
639
+		if ($hasParentRelationship) {
640
+			$code = sprintf('        $tables = parent::getUsedTables();
641 641
         $tables[] = %s;
642 642
 
643 643
         return $tables;', var_export($this->table->getName(), true));
644
-        } else {
645
-            $code = sprintf('        return [ %s ];', var_export($this->table->getName(), true));
646
-        }
644
+		} else {
645
+			$code = sprintf('        return [ %s ];', var_export($this->table->getName(), true));
646
+		}
647 647
 
648
-        return sprintf('
648
+		return sprintf('
649 649
     /**
650 650
      * Returns an array of used tables by this bean (from parent to child relationship).
651 651
      *
@@ -656,20 +656,20 @@  discard block
 block discarded – undo
656 656
 %s
657 657
     }
658 658
 ', $code);
659
-    }
660
-
661
-    private function generateOnDeleteCode()
662
-    {
663
-        $code = '';
664
-        $relationships = $this->getPropertiesForTable($this->table);
665
-        foreach ($relationships as $relationship) {
666
-            if ($relationship instanceof ObjectBeanPropertyDescriptor) {
667
-                $code .= sprintf('        $this->setRef('.var_export($relationship->getForeignKey()->getName(), true).', null, '.var_export($this->table->getName(), true).");\n");
668
-            }
669
-        }
670
-
671
-        if ($code) {
672
-            return sprintf('
659
+	}
660
+
661
+	private function generateOnDeleteCode()
662
+	{
663
+		$code = '';
664
+		$relationships = $this->getPropertiesForTable($this->table);
665
+		foreach ($relationships as $relationship) {
666
+			if ($relationship instanceof ObjectBeanPropertyDescriptor) {
667
+				$code .= sprintf('        $this->setRef('.var_export($relationship->getForeignKey()->getName(), true).', null, '.var_export($this->table->getName(), true).");\n");
668
+			}
669
+		}
670
+
671
+		if ($code) {
672
+			return sprintf('
673 673
     /**
674 674
      * Method called when the bean is removed from database.
675 675
      *
@@ -679,73 +679,73 @@  discard block
 block discarded – undo
679 679
         parent::onDelete();
680 680
 %s    }
681 681
 ', $code);
682
-        }
683
-
684
-        return '';
685
-    }
686
-
687
-    /**
688
-     * Returns the bean class name (without the namespace).
689
-     *
690
-     * @return string
691
-     */
692
-    public function getBeanClassName() : string
693
-    {
694
-        return $this->namingStrategy->getBeanClassName($this->table->getName());
695
-    }
696
-
697
-    /**
698
-     * Returns the base bean class name (without the namespace).
699
-     *
700
-     * @return string
701
-     */
702
-    public function getBaseBeanClassName() : string
703
-    {
704
-        return $this->namingStrategy->getBaseBeanClassName($this->table->getName());
705
-    }
706
-
707
-    /**
708
-     * Returns the DAO class name (without the namespace).
709
-     *
710
-     * @return string
711
-     */
712
-    public function getDaoClassName() : string
713
-    {
714
-        return $this->namingStrategy->getDaoClassName($this->table->getName());
715
-    }
716
-
717
-    /**
718
-     * Returns the base DAO class name (without the namespace).
719
-     *
720
-     * @return string
721
-     */
722
-    public function getBaseDaoClassName() : string
723
-    {
724
-        return $this->namingStrategy->getBaseDaoClassName($this->table->getName());
725
-    }
726
-
727
-    /**
728
-     * Returns the table used to build this bean.
729
-     *
730
-     * @return Table
731
-     */
732
-    public function getTable(): Table
733
-    {
734
-        return $this->table;
735
-    }
736
-
737
-    /**
738
-     * Returns the extended bean class name (without the namespace), or null if the bean is not extended.
739
-     *
740
-     * @return string
741
-     */
742
-    public function getExtendedBeanClassName(): ?string
743
-    {
744
-        $parentFk = $this->schemaAnalyzer->getParentRelationship($this->table->getName());
745
-        if ($parentFk !== null) {
746
-            return $this->namingStrategy->getBeanClassName($parentFk->getForeignTableName());
747
-        } else {
748
-            return null;
749
-        }
750
-    }
682
+		}
683
+
684
+		return '';
685
+	}
686
+
687
+	/**
688
+	 * Returns the bean class name (without the namespace).
689
+	 *
690
+	 * @return string
691
+	 */
692
+	public function getBeanClassName() : string
693
+	{
694
+		return $this->namingStrategy->getBeanClassName($this->table->getName());
695
+	}
696
+
697
+	/**
698
+	 * Returns the base bean class name (without the namespace).
699
+	 *
700
+	 * @return string
701
+	 */
702
+	public function getBaseBeanClassName() : string
703
+	{
704
+		return $this->namingStrategy->getBaseBeanClassName($this->table->getName());
705
+	}
706
+
707
+	/**
708
+	 * Returns the DAO class name (without the namespace).
709
+	 *
710
+	 * @return string
711
+	 */
712
+	public function getDaoClassName() : string
713
+	{
714
+		return $this->namingStrategy->getDaoClassName($this->table->getName());
715
+	}
716
+
717
+	/**
718
+	 * Returns the base DAO class name (without the namespace).
719
+	 *
720
+	 * @return string
721
+	 */
722
+	public function getBaseDaoClassName() : string
723
+	{
724
+		return $this->namingStrategy->getBaseDaoClassName($this->table->getName());
725
+	}
726
+
727
+	/**
728
+	 * Returns the table used to build this bean.
729
+	 *
730
+	 * @return Table
731
+	 */
732
+	public function getTable(): Table
733
+	{
734
+		return $this->table;
735
+	}
736
+
737
+	/**
738
+	 * Returns the extended bean class name (without the namespace), or null if the bean is not extended.
739
+	 *
740
+	 * @return string
741
+	 */
742
+	public function getExtendedBeanClassName(): ?string
743
+	{
744
+		$parentFk = $this->schemaAnalyzer->getParentRelationship($this->table->getName());
745
+		if ($parentFk !== null) {
746
+			return $this->namingStrategy->getBeanClassName($parentFk->getForeignTableName());
747
+		} else {
748
+			return null;
749
+		}
750
+	}
751 751
 }
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
      */
106 106
     public function getConstructorProperties()
107 107
     {
108
-        $constructorProperties = array_filter($this->beanPropertyDescriptors, function (AbstractBeanPropertyDescriptor $property) {
108
+        $constructorProperties = array_filter($this->beanPropertyDescriptors, function(AbstractBeanPropertyDescriptor $property) {
109 109
             return $property->isCompulsory();
110 110
         });
111 111
 
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
     public function getPropertiesWithDefault()
121 121
     {
122 122
         $properties = $this->getPropertiesForTable($this->table);
123
-        $defaultProperties = array_filter($properties, function (AbstractBeanPropertyDescriptor $property) {
123
+        $defaultProperties = array_filter($properties, function(AbstractBeanPropertyDescriptor $property) {
124 124
             return $property->hasDefault();
125 125
         });
126 126
 
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
      */
135 135
     public function getExposedProperties(): array
136 136
     {
137
-        $exposedProperties = array_filter($this->beanPropertyDescriptors, function (AbstractBeanPropertyDescriptor $property) {
137
+        $exposedProperties = array_filter($this->beanPropertyDescriptors, function(AbstractBeanPropertyDescriptor $property) {
138 138
             return $property->getTable()->getName() == $this->table->getName();
139 139
         });
140 140
 
@@ -343,7 +343,7 @@  discard block
 block discarded – undo
343 343
         }
344 344
 
345 345
         foreach ($descriptorsByMethodName as $descriptorsForMethodName) {
346
-            if (count($descriptorsForMethodName) > 1) {
346
+            if (count($descriptorsForMethodName)>1) {
347 347
                 foreach ($descriptorsForMethodName as $descriptor) {
348 348
                     $descriptor->useAlternativeName();
349 349
                 }
@@ -438,7 +438,7 @@  discard block
 block discarded – undo
438 438
 
439 439
         $classes = $this->generateExtendsAndUseStatements($parentFk);
440 440
 
441
-        $uses = array_map(function ($className) use ($beannamespace) {
441
+        $uses = array_map(function($className) use ($beannamespace) {
442 442
             return 'use '.$beannamespace.'\\'.$className.";\n";
443 443
         }, $classes);
444 444
         $use = implode('', $uses);
@@ -739,7 +739,7 @@  discard block
 block discarded – undo
739 739
      *
740 740
      * @return string
741 741
      */
742
-    public function getExtendedBeanClassName(): ?string
742
+    public function getExtendedBeanClassName(): ? string
743 743
     {
744 744
         $parentFk = $this->schemaAnalyzer->getParentRelationship($this->table->getName());
745 745
         if ($parentFk !== null) {
Please login to merge, or discard this patch.
src/Mouf/Database/TDBM/Utils/BeanDescriptorInterface.php 2 patches
Indentation   +48 added lines, -48 removed lines patch added patch discarded remove patch
@@ -9,52 +9,52 @@
 block discarded – undo
9 9
  */
10 10
 interface BeanDescriptorInterface
11 11
 {
12
-    /**
13
-     * Returns the table used to build this bean.
14
-     *
15
-     * @return Table
16
-     */
17
-    public function getTable() : Table;
18
-
19
-    /**
20
-     * Returns the bean class name (without the namespace).
21
-     *
22
-     * @return string
23
-     */
24
-    public function getBeanClassName(): string;
25
-
26
-    /**
27
-     * Returns the base bean class name (without the namespace).
28
-     *
29
-     * @return string
30
-     */
31
-    public function getBaseBeanClassName(): string;
32
-
33
-    /**
34
-     * Returns the extended bean class name (without the namespace), or null if the bean is not extended.
35
-     *
36
-     * @return null|string
37
-     */
38
-    public function getExtendedBeanClassName(): ?string;
39
-
40
-    /**
41
-     * Returns the DAO class name (without the namespace).
42
-     *
43
-     * @return string
44
-     */
45
-    public function getDaoClassName(): string;
46
-
47
-    /**
48
-     * Returns the base DAO class name (without the namespace).
49
-     *
50
-     * @return string
51
-     */
52
-    public function getBaseDaoClassName(): string;
53
-
54
-    /**
55
-     * Returns the list of properties exposed as getters and setters in this class.
56
-     *
57
-     * @return AbstractBeanPropertyDescriptor[]
58
-     */
59
-    public function getExposedProperties(): array;
12
+	/**
13
+	 * Returns the table used to build this bean.
14
+	 *
15
+	 * @return Table
16
+	 */
17
+	public function getTable() : Table;
18
+
19
+	/**
20
+	 * Returns the bean class name (without the namespace).
21
+	 *
22
+	 * @return string
23
+	 */
24
+	public function getBeanClassName(): string;
25
+
26
+	/**
27
+	 * Returns the base bean class name (without the namespace).
28
+	 *
29
+	 * @return string
30
+	 */
31
+	public function getBaseBeanClassName(): string;
32
+
33
+	/**
34
+	 * Returns the extended bean class name (without the namespace), or null if the bean is not extended.
35
+	 *
36
+	 * @return null|string
37
+	 */
38
+	public function getExtendedBeanClassName(): ?string;
39
+
40
+	/**
41
+	 * Returns the DAO class name (without the namespace).
42
+	 *
43
+	 * @return string
44
+	 */
45
+	public function getDaoClassName(): string;
46
+
47
+	/**
48
+	 * Returns the base DAO class name (without the namespace).
49
+	 *
50
+	 * @return string
51
+	 */
52
+	public function getBaseDaoClassName(): string;
53
+
54
+	/**
55
+	 * Returns the list of properties exposed as getters and setters in this class.
56
+	 *
57
+	 * @return AbstractBeanPropertyDescriptor[]
58
+	 */
59
+	public function getExposedProperties(): array;
60 60
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
      *
36 36
      * @return null|string
37 37
      */
38
-    public function getExtendedBeanClassName(): ?string;
38
+    public function getExtendedBeanClassName(): ? string;
39 39
 
40 40
     /**
41 41
      * Returns the DAO class name (without the namespace).
Please login to merge, or discard this patch.
src/Mouf/Database/TDBM/Utils/NamingStrategyInterface.php 1 patch
Indentation   +34 added lines, -34 removed lines patch added patch discarded remove patch
@@ -8,42 +8,42 @@
 block discarded – undo
8 8
  */
9 9
 interface NamingStrategyInterface
10 10
 {
11
-    /**
12
-     * Returns the bean class name from the table name (excluding the namespace).
13
-     *
14
-     * @param string $tableName
15
-     * @return string
16
-     */
17
-    public function getBeanClassName(string $tableName) : string;
11
+	/**
12
+	 * Returns the bean class name from the table name (excluding the namespace).
13
+	 *
14
+	 * @param string $tableName
15
+	 * @return string
16
+	 */
17
+	public function getBeanClassName(string $tableName) : string;
18 18
 
19
-    /**
20
-     * Returns the base bean class name from the table name (excluding the namespace).
21
-     *
22
-     * @param string $tableName
23
-     * @return string
24
-     */
25
-    public function getBaseBeanClassName(string $tableName) : string;
19
+	/**
20
+	 * Returns the base bean class name from the table name (excluding the namespace).
21
+	 *
22
+	 * @param string $tableName
23
+	 * @return string
24
+	 */
25
+	public function getBaseBeanClassName(string $tableName) : string;
26 26
 
27
-    /**
28
-     * Returns the name of the DAO class from the table name (excluding the namespace).
29
-     *
30
-     * @param string $tableName
31
-     * @return string
32
-     */
33
-    public function getDaoClassName(string $tableName) : string;
27
+	/**
28
+	 * Returns the name of the DAO class from the table name (excluding the namespace).
29
+	 *
30
+	 * @param string $tableName
31
+	 * @return string
32
+	 */
33
+	public function getDaoClassName(string $tableName) : string;
34 34
 
35
-    /**
36
-     * Returns the name of the base DAO class from the table name (excluding the namespace).
37
-     *
38
-     * @param string $tableName
39
-     * @return string
40
-     */
41
-    public function getBaseDaoClassName(string $tableName) : string;
35
+	/**
36
+	 * Returns the name of the base DAO class from the table name (excluding the namespace).
37
+	 *
38
+	 * @param string $tableName
39
+	 * @return string
40
+	 */
41
+	public function getBaseDaoClassName(string $tableName) : string;
42 42
 
43
-    /**
44
-     * Returns the class name for the DAO factory.
45
-     *
46
-     * @return string
47
-     */
48
-    public function getDaoFactoryClassName() : string;
43
+	/**
44
+	 * Returns the class name for the DAO factory.
45
+	 *
46
+	 * @return string
47
+	 */
48
+	public function getDaoFactoryClassName() : string;
49 49
 }
Please login to merge, or discard this patch.
src/Mouf/Database/TDBM/Utils/GeneratorListenerInterface.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -10,9 +10,9 @@
 block discarded – undo
10 10
  */
11 11
 interface GeneratorListenerInterface
12 12
 {
13
-    /**
14
-     * @param ConfigurationInterface $configuration
15
-     * @param BeanDescriptorInterface[] $beanDescriptors
16
-     */
17
-    public function onGenerate(ConfigurationInterface $configuration, array $beanDescriptors) : void;
13
+	/**
14
+	 * @param ConfigurationInterface $configuration
15
+	 * @param BeanDescriptorInterface[] $beanDescriptors
16
+	 */
17
+	public function onGenerate(ConfigurationInterface $configuration, array $beanDescriptors) : void;
18 18
 }
Please login to merge, or discard this patch.
src/Mouf/Database/TDBM/MoufConfiguration.php 1 patch
Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -17,21 +17,21 @@
 block discarded – undo
17 17
  */
18 18
 class MoufConfiguration extends Configuration
19 19
 {
20
-    private $daoFactoryInstanceName = 'daoFactory';
20
+	private $daoFactoryInstanceName = 'daoFactory';
21 21
 
22
-    /**
23
-     * @return string
24
-     */
25
-    public function getDaoFactoryInstanceName() : string
26
-    {
27
-        return $this->daoFactoryInstanceName;
28
-    }
22
+	/**
23
+	 * @return string
24
+	 */
25
+	public function getDaoFactoryInstanceName() : string
26
+	{
27
+		return $this->daoFactoryInstanceName;
28
+	}
29 29
 
30
-    /**
31
-     * @param string $daoFactoryInstanceName
32
-     */
33
-    public function setDaoFactoryInstanceName(string $daoFactoryInstanceName)
34
-    {
35
-        $this->daoFactoryInstanceName = $daoFactoryInstanceName;
36
-    }
30
+	/**
31
+	 * @param string $daoFactoryInstanceName
32
+	 */
33
+	public function setDaoFactoryInstanceName(string $daoFactoryInstanceName)
34
+	{
35
+		$this->daoFactoryInstanceName = $daoFactoryInstanceName;
36
+	}
37 37
 }
Please login to merge, or discard this patch.
src/Mouf/Database/TDBM/TDBMObject.php 1 patch
Indentation   +34 added lines, -34 removed lines patch added patch discarded remove patch
@@ -33,42 +33,42 @@
 block discarded – undo
33 33
  */
34 34
 class TDBMObject extends AbstractTDBMObject
35 35
 {
36
-    public function getProperty($var, $tableName = null)
37
-    {
38
-        return $this->get($var, $tableName);
39
-    }
36
+	public function getProperty($var, $tableName = null)
37
+	{
38
+		return $this->get($var, $tableName);
39
+	}
40 40
 
41
-    public function setProperty($var, $value, $tableName = null)
42
-    {
43
-        $this->set($var, $value, $tableName);
44
-    }
41
+	public function setProperty($var, $value, $tableName = null)
42
+	{
43
+		$this->set($var, $value, $tableName);
44
+	}
45 45
 
46
-    /**
47
-     * Specify data which should be serialized to JSON.
48
-     *
49
-     * @link http://php.net/manual/en/jsonserializable.jsonserialize.php
50
-     *
51
-     * @return mixed data which can be serialized by <b>json_encode</b>,
52
-     *               which is a value of any type other than a resource
53
-     *
54
-     * @since 5.4.0
55
-     */
56
-    public function jsonSerialize()
57
-    {
58
-        throw new TDBMException('Json serialization is only implemented for generated beans.');
59
-    }
46
+	/**
47
+	 * Specify data which should be serialized to JSON.
48
+	 *
49
+	 * @link http://php.net/manual/en/jsonserializable.jsonserialize.php
50
+	 *
51
+	 * @return mixed data which can be serialized by <b>json_encode</b>,
52
+	 *               which is a value of any type other than a resource
53
+	 *
54
+	 * @since 5.4.0
55
+	 */
56
+	public function jsonSerialize()
57
+	{
58
+		throw new TDBMException('Json serialization is only implemented for generated beans.');
59
+	}
60 60
 
61
-    /**
62
-     * Returns an array of used tables by this bean (from parent to child relationship).
63
-     *
64
-     * @return string[]
65
-     */
66
-    protected function getUsedTables() : array
67
-    {
68
-        $tableNames = array_keys($this->dbRows);
69
-        $tableNames = $this->tdbmService->_getLinkBetweenInheritedTables($tableNames);
70
-        $tableNames = array_reverse($tableNames);
61
+	/**
62
+	 * Returns an array of used tables by this bean (from parent to child relationship).
63
+	 *
64
+	 * @return string[]
65
+	 */
66
+	protected function getUsedTables() : array
67
+	{
68
+		$tableNames = array_keys($this->dbRows);
69
+		$tableNames = $this->tdbmService->_getLinkBetweenInheritedTables($tableNames);
70
+		$tableNames = array_reverse($tableNames);
71 71
 
72
-        return $tableNames;
73
-    }
72
+		return $tableNames;
73
+	}
74 74
 }
Please login to merge, or discard this patch.
src/Mouf/Database/TDBM/ConfigurationInterface.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
     /**
45 45
      * @return LoggerInterface
46 46
      */
47
-    public function getLogger(): ?LoggerInterface;
47
+    public function getLogger(): ? LoggerInterface;
48 48
 
49 49
     /**
50 50
      * @return GeneratorListenerInterface
Please login to merge, or discard this patch.
Indentation   +47 added lines, -47 removed lines patch added patch discarded remove patch
@@ -13,51 +13,51 @@
 block discarded – undo
13 13
 
14 14
 interface ConfigurationInterface
15 15
 {
16
-    /**
17
-     * @return string
18
-     */
19
-    public function getBeanNamespace(): string;
20
-
21
-    /**
22
-     * @return string
23
-     */
24
-    public function getDaoNamespace(): string;
25
-
26
-    /**
27
-     * @return Connection
28
-     */
29
-    public function getConnection(): Connection;
30
-
31
-    /**
32
-     * @return Cache
33
-     */
34
-    public function getCache(): Cache;
35
-
36
-    /**
37
-     * @return NamingStrategyInterface
38
-     */
39
-    public function getNamingStrategy(): NamingStrategyInterface;
40
-
41
-    /**
42
-     * @return SchemaAnalyzer
43
-     */
44
-    public function getSchemaAnalyzer(): SchemaAnalyzer;
45
-
46
-    /**
47
-     * @return LoggerInterface
48
-     */
49
-    public function getLogger(): ?LoggerInterface;
50
-
51
-    /**
52
-     * @return GeneratorListenerInterface
53
-     */
54
-    public function getGeneratorEventDispatcher(): GeneratorListenerInterface;
55
-
56
-    /**
57
-     * Returns a class able to find the place of a PHP file based on the class name.
58
-     * Useful to find the path where DAOs and beans should be written to.
59
-     *
60
-     * @return PathFinderInterface
61
-     */
62
-    public function getPathFinder() : PathFinderInterface;
16
+	/**
17
+	 * @return string
18
+	 */
19
+	public function getBeanNamespace(): string;
20
+
21
+	/**
22
+	 * @return string
23
+	 */
24
+	public function getDaoNamespace(): string;
25
+
26
+	/**
27
+	 * @return Connection
28
+	 */
29
+	public function getConnection(): Connection;
30
+
31
+	/**
32
+	 * @return Cache
33
+	 */
34
+	public function getCache(): Cache;
35
+
36
+	/**
37
+	 * @return NamingStrategyInterface
38
+	 */
39
+	public function getNamingStrategy(): NamingStrategyInterface;
40
+
41
+	/**
42
+	 * @return SchemaAnalyzer
43
+	 */
44
+	public function getSchemaAnalyzer(): SchemaAnalyzer;
45
+
46
+	/**
47
+	 * @return LoggerInterface
48
+	 */
49
+	public function getLogger(): ?LoggerInterface;
50
+
51
+	/**
52
+	 * @return GeneratorListenerInterface
53
+	 */
54
+	public function getGeneratorEventDispatcher(): GeneratorListenerInterface;
55
+
56
+	/**
57
+	 * Returns a class able to find the place of a PHP file based on the class name.
58
+	 * Useful to find the path where DAOs and beans should be written to.
59
+	 *
60
+	 * @return PathFinderInterface
61
+	 */
62
+	public function getPathFinder() : PathFinderInterface;
63 63
 }
Please login to merge, or discard this patch.
src/Mouf/Database/TDBM/Controllers/TdbmController.php 4 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -135,7 +135,7 @@
 block discarded – undo
135 135
         return $configuration->getProperty($property)->getValue();
136 136
     }
137 137
 
138
-    private static function setInConfiguration(MoufManager $moufManager, string $tdbmInstanceName, string $property, ?string $value)
138
+    private static function setInConfiguration(MoufManager $moufManager, string $tdbmInstanceName, string $property, ? string $value)
139 139
     {
140 140
         $configuration = self::getConfigurationDescriptor($moufManager, $tdbmInstanceName);
141 141
         if ($configuration === null) {
Please login to merge, or discard this patch.
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
      * @Action
83 83
      *
84 84
      * @param string $name
85
-     * @param bool   $selfedit
85
+     * @param string|boolean   $selfedit
86 86
      */
87 87
     public function generate($name, $daonamespace, $beannamespace, $daofactoryinstancename, /*$storeInUtc = 0,*/ $selfedit = 'false', $useCustomComposer = false, $composerFile = '')
88 88
     {
@@ -102,6 +102,8 @@  discard block
 block discarded – undo
102 102
      * @param string      $daonamespace
103 103
      * @param string      $beannamespace
104 104
      * @param string      $selfedit
105
+     * @param boolean $useCustomComposer
106
+     * @param string $composerFile
105 107
      *
106 108
      * @throws \Mouf\MoufException
107 109
      */
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
 use Mouf\Controllers\AbstractMoufInstanceController;
7 7
 use Mouf\Database\TDBM\TDBMService;
8 8
 use Mouf\Database\TDBM\Utils\PathFinder\PathFinder;
9
-use Mouf\Database\TDBM\Utils\TDBMDaoGenerator;
10 9
 use Mouf\Html\HtmlElement\HtmlBlock;
11 10
 use Mouf\MoufManager;
12 11
 use Mouf\InstanceProxy;
Please login to merge, or discard this patch.
Indentation   +130 added lines, -130 removed lines patch added patch discarded remove patch
@@ -19,134 +19,134 @@
 block discarded – undo
19 19
  */
20 20
 class TdbmController extends AbstractMoufInstanceController
21 21
 {
22
-    /**
23
-     * @var HtmlBlock
24
-     */
25
-    public $content;
26
-
27
-    protected $daoNamespace;
28
-    protected $beanNamespace;
29
-    protected $daoFactoryInstanceName;
30
-    protected $autoloadDetected;
31
-    ///protected $storeInUtc;
32
-    protected $useCustomComposer;
33
-    protected $composerFile;
34
-
35
-    /**
36
-     * Admin page used to display the DAO generation form.
37
-     *
38
-     * @Action
39
-     */
40
-    public function defaultAction($name, $selfedit = 'false')
41
-    {
42
-        $this->initController($name, $selfedit);
43
-
44
-        // Fill variables
45
-        $this->daoNamespace = self::getFromConfiguration($this->moufManager, $name, 'daoNamespace');
46
-        $this->beanNamespace = self::getFromConfiguration($this->moufManager, $name, 'beanNamespace');
47
-        $this->daoFactoryInstanceName = self::getFromConfiguration($this->moufManager, $name, 'daoFactoryInstanceName');
48
-        //$this->storeInUtc = self::getFromConfiguration($this->moufManager, $name, 'storeInUtc');
49
-        $pathFinder = self::getFromConfiguration($this->moufManager, $name, 'pathFinder');
50
-        if ($pathFinder !== null) {
51
-            $this->composerFile = $pathFinder->getConstructorArgumentProperty('composerFile')->getValue();
52
-        } else {
53
-            $this->composerFile = null;
54
-        }
55
-        $this->useCustomComposer = $this->composerFile ? true : false;
56
-
57
-        if ($this->daoNamespace == null && $this->beanNamespace == null) {
58
-            $classNameMapper = ClassNameMapper::createFromComposerFile(__DIR__.'/../../../../../../../../composer.json');
59
-
60
-            $autoloadNamespaces = $classNameMapper->getManagedNamespaces();
61
-            if ($autoloadNamespaces) {
62
-                $this->autoloadDetected = true;
63
-                $rootNamespace = $autoloadNamespaces[0];
64
-                $this->daoNamespace = $rootNamespace.'Dao';
65
-                $this->beanNamespace = $rootNamespace.'Dao\\Bean';
66
-            } else {
67
-                $this->autoloadDetected = false;
68
-                $this->daoNamespace = 'YourApplication\\Dao';
69
-                $this->beanNamespace = 'YourApplication\\Dao\\Bean';
70
-            }
71
-        } else {
72
-            $this->autoloadDetected = true;
73
-        }
74
-
75
-        $this->content->addFile(__DIR__.'/../../../../views/tdbmGenerate.php', $this);
76
-        $this->template->toHtml();
77
-    }
78
-
79
-    /**
80
-     * This action generates the DAOs and Beans for the TDBM service passed in parameter.
81
-     *
82
-     * @Action
83
-     *
84
-     * @param string $name
85
-     * @param bool   $selfedit
86
-     */
87
-    public function generate($name, $daonamespace, $beannamespace, $daofactoryinstancename, /*$storeInUtc = 0,*/ $selfedit = 'false', $useCustomComposer = false, $composerFile = '')
88
-    {
89
-        $this->initController($name, $selfedit);
90
-
91
-        self::generateDaos($this->moufManager, $name, $daonamespace, $beannamespace, $daofactoryinstancename, $selfedit, /*$storeInUtc,*/ $useCustomComposer, $composerFile);
92
-
93
-        // TODO: better: we should redirect to a screen that list the number of DAOs generated, etc...
94
-        header('Location: '.ROOT_URL.'ajaxinstance/?name='.urlencode($name).'&selfedit='.$selfedit);
95
-    }
96
-
97
-    /**
98
-     * This function generates the DAOs and Beans for the TDBM service passed in parameter.
99
-     *
100
-     * @param MoufManager $moufManager
101
-     * @param string      $name
102
-     * @param string      $daonamespace
103
-     * @param string      $beannamespace
104
-     * @param string      $selfedit
105
-     *
106
-     * @throws \Mouf\MoufException
107
-     */
108
-    public static function generateDaos(MoufManager $moufManager, $name, $daonamespace, $beannamespace, $daofactoryinstancename, $selfedit = 'false', /*$storeInUtc = null,*/ $useCustomComposer = null, $composerFile = null)
109
-    {
110
-        self::setInConfiguration($moufManager, $name, 'daoNamespace', $daonamespace);
111
-        self::setInConfiguration($moufManager, $name, 'beanNamespace', $beannamespace);
112
-        self::setInConfiguration($moufManager, $name, 'daoFactoryInstanceName', $daofactoryinstancename);
113
-        //self::setInConfiguration($moufManager, $name, 'storeInUtc', $storeInUtc);
114
-        if ($useCustomComposer) {
115
-            $pathFinder = $moufManager->createInstance(PathFinder::class);
116
-            $pathFinder->getConstructorArgumentProperty('composerFile')->setValue($composerFile);
117
-            self::setInConfiguration($moufManager, $name, 'pathFinder', $pathFinder);
118
-        } else {
119
-            self::setInConfiguration($moufManager, $name, 'pathFinder', null);
120
-        }
121
-        // Let's rewrite before calling the DAO generator
122
-        $moufManager->rewriteMouf();
123
-
124
-
125
-        $tdbmService = new InstanceProxy($name);
126
-        /* @var $tdbmService TDBMService */
127
-        $tdbmService->generateAllDaosAndBeans();
128
-    }
129
-
130
-    private static function getConfigurationDescriptor(MoufManager $moufManager, string $tdbmInstanceName)
131
-    {
132
-        return $moufManager->getInstanceDescriptor($tdbmInstanceName)->getConstructorArgumentProperty('configuration')->getValue();
133
-    }
134
-
135
-    private static function getFromConfiguration(MoufManager $moufManager, string $tdbmInstanceName, string $property)
136
-    {
137
-        $configuration = self::getConfigurationDescriptor($moufManager, $tdbmInstanceName);
138
-        if ($configuration === null) {
139
-            throw new \RuntimeException('Unable to find the configuration object linked to TDBMService.');
140
-        }
141
-        return $configuration->getProperty($property)->getValue();
142
-    }
143
-
144
-    private static function setInConfiguration(MoufManager $moufManager, string $tdbmInstanceName, string $property, ?string $value)
145
-    {
146
-        $configuration = self::getConfigurationDescriptor($moufManager, $tdbmInstanceName);
147
-        if ($configuration === null) {
148
-            throw new \RuntimeException('Unable to find the configuration object linked to TDBMService.');
149
-        }
150
-        $configuration->getProperty($property)->setValue($value);
151
-    }
22
+	/**
23
+	 * @var HtmlBlock
24
+	 */
25
+	public $content;
26
+
27
+	protected $daoNamespace;
28
+	protected $beanNamespace;
29
+	protected $daoFactoryInstanceName;
30
+	protected $autoloadDetected;
31
+	///protected $storeInUtc;
32
+	protected $useCustomComposer;
33
+	protected $composerFile;
34
+
35
+	/**
36
+	 * Admin page used to display the DAO generation form.
37
+	 *
38
+	 * @Action
39
+	 */
40
+	public function defaultAction($name, $selfedit = 'false')
41
+	{
42
+		$this->initController($name, $selfedit);
43
+
44
+		// Fill variables
45
+		$this->daoNamespace = self::getFromConfiguration($this->moufManager, $name, 'daoNamespace');
46
+		$this->beanNamespace = self::getFromConfiguration($this->moufManager, $name, 'beanNamespace');
47
+		$this->daoFactoryInstanceName = self::getFromConfiguration($this->moufManager, $name, 'daoFactoryInstanceName');
48
+		//$this->storeInUtc = self::getFromConfiguration($this->moufManager, $name, 'storeInUtc');
49
+		$pathFinder = self::getFromConfiguration($this->moufManager, $name, 'pathFinder');
50
+		if ($pathFinder !== null) {
51
+			$this->composerFile = $pathFinder->getConstructorArgumentProperty('composerFile')->getValue();
52
+		} else {
53
+			$this->composerFile = null;
54
+		}
55
+		$this->useCustomComposer = $this->composerFile ? true : false;
56
+
57
+		if ($this->daoNamespace == null && $this->beanNamespace == null) {
58
+			$classNameMapper = ClassNameMapper::createFromComposerFile(__DIR__.'/../../../../../../../../composer.json');
59
+
60
+			$autoloadNamespaces = $classNameMapper->getManagedNamespaces();
61
+			if ($autoloadNamespaces) {
62
+				$this->autoloadDetected = true;
63
+				$rootNamespace = $autoloadNamespaces[0];
64
+				$this->daoNamespace = $rootNamespace.'Dao';
65
+				$this->beanNamespace = $rootNamespace.'Dao\\Bean';
66
+			} else {
67
+				$this->autoloadDetected = false;
68
+				$this->daoNamespace = 'YourApplication\\Dao';
69
+				$this->beanNamespace = 'YourApplication\\Dao\\Bean';
70
+			}
71
+		} else {
72
+			$this->autoloadDetected = true;
73
+		}
74
+
75
+		$this->content->addFile(__DIR__.'/../../../../views/tdbmGenerate.php', $this);
76
+		$this->template->toHtml();
77
+	}
78
+
79
+	/**
80
+	 * This action generates the DAOs and Beans for the TDBM service passed in parameter.
81
+	 *
82
+	 * @Action
83
+	 *
84
+	 * @param string $name
85
+	 * @param bool   $selfedit
86
+	 */
87
+	public function generate($name, $daonamespace, $beannamespace, $daofactoryinstancename, /*$storeInUtc = 0,*/ $selfedit = 'false', $useCustomComposer = false, $composerFile = '')
88
+	{
89
+		$this->initController($name, $selfedit);
90
+
91
+		self::generateDaos($this->moufManager, $name, $daonamespace, $beannamespace, $daofactoryinstancename, $selfedit, /*$storeInUtc,*/ $useCustomComposer, $composerFile);
92
+
93
+		// TODO: better: we should redirect to a screen that list the number of DAOs generated, etc...
94
+		header('Location: '.ROOT_URL.'ajaxinstance/?name='.urlencode($name).'&selfedit='.$selfedit);
95
+	}
96
+
97
+	/**
98
+	 * This function generates the DAOs and Beans for the TDBM service passed in parameter.
99
+	 *
100
+	 * @param MoufManager $moufManager
101
+	 * @param string      $name
102
+	 * @param string      $daonamespace
103
+	 * @param string      $beannamespace
104
+	 * @param string      $selfedit
105
+	 *
106
+	 * @throws \Mouf\MoufException
107
+	 */
108
+	public static function generateDaos(MoufManager $moufManager, $name, $daonamespace, $beannamespace, $daofactoryinstancename, $selfedit = 'false', /*$storeInUtc = null,*/ $useCustomComposer = null, $composerFile = null)
109
+	{
110
+		self::setInConfiguration($moufManager, $name, 'daoNamespace', $daonamespace);
111
+		self::setInConfiguration($moufManager, $name, 'beanNamespace', $beannamespace);
112
+		self::setInConfiguration($moufManager, $name, 'daoFactoryInstanceName', $daofactoryinstancename);
113
+		//self::setInConfiguration($moufManager, $name, 'storeInUtc', $storeInUtc);
114
+		if ($useCustomComposer) {
115
+			$pathFinder = $moufManager->createInstance(PathFinder::class);
116
+			$pathFinder->getConstructorArgumentProperty('composerFile')->setValue($composerFile);
117
+			self::setInConfiguration($moufManager, $name, 'pathFinder', $pathFinder);
118
+		} else {
119
+			self::setInConfiguration($moufManager, $name, 'pathFinder', null);
120
+		}
121
+		// Let's rewrite before calling the DAO generator
122
+		$moufManager->rewriteMouf();
123
+
124
+
125
+		$tdbmService = new InstanceProxy($name);
126
+		/* @var $tdbmService TDBMService */
127
+		$tdbmService->generateAllDaosAndBeans();
128
+	}
129
+
130
+	private static function getConfigurationDescriptor(MoufManager $moufManager, string $tdbmInstanceName)
131
+	{
132
+		return $moufManager->getInstanceDescriptor($tdbmInstanceName)->getConstructorArgumentProperty('configuration')->getValue();
133
+	}
134
+
135
+	private static function getFromConfiguration(MoufManager $moufManager, string $tdbmInstanceName, string $property)
136
+	{
137
+		$configuration = self::getConfigurationDescriptor($moufManager, $tdbmInstanceName);
138
+		if ($configuration === null) {
139
+			throw new \RuntimeException('Unable to find the configuration object linked to TDBMService.');
140
+		}
141
+		return $configuration->getProperty($property)->getValue();
142
+	}
143
+
144
+	private static function setInConfiguration(MoufManager $moufManager, string $tdbmInstanceName, string $property, ?string $value)
145
+	{
146
+		$configuration = self::getConfigurationDescriptor($moufManager, $tdbmInstanceName);
147
+		if ($configuration === null) {
148
+			throw new \RuntimeException('Unable to find the configuration object linked to TDBMService.');
149
+		}
150
+		$configuration->getProperty($property)->setValue($value);
151
+	}
152 152
 }
Please login to merge, or discard this patch.
src/views/installStep2.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 <input type="hidden" id="selfedit" name="selfedit" value="<?php echo plainstring_to_htmlprotected($this->selfedit) ?>" />
9 9
 
10 10
 <?php if (!$this->autoloadDetected) {
11
-    ?>
11
+	?>
12 12
 <div class="alert">Warning! TDBM could not detect the autoload section of your composer.json file.
13 13
 Unless you are developing your own autoload system, you should configure <strong>composer.json</strong> to <a href="http://getcomposer.org/doc/01-basic-usage.md#autoloading" target="_blank">define a source directory and a root namespace using PSR-0</a>.</div>
14 14
 <?php
Please login to merge, or discard this patch.