This repository was archived by the owner on Feb 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 239
Expand file tree
/
Copy pathColumnBuilder.php
More file actions
432 lines (374 loc) · 10.6 KB
/
Copy pathColumnBuilder.php
File metadata and controls
432 lines (374 loc) · 10.6 KB
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
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
<?php
/**
* This file is part of the SgDatatablesBundle package.
*
* (c) stwe <https://github.com/stwe/DatatablesBundle>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Sg\DatatablesBundle\Datatable\Column;
use Sg\DatatablesBundle\Datatable\Factory;
use Doctrine\Common\Persistence\Mapping\ClassMetadata;
use Doctrine\ORM\Mapping\MappingException;
use Doctrine\ORM\EntityManagerInterface;
use Symfony\Component\DependencyInjection\ContainerAwareTrait;
use Symfony\Component\Routing\RouterInterface;
use Twig_Environment;
use Exception;
/**
* Class ColumnBuilder
*
* @package Sg\DatatablesBundle\Datatable\Column
*/
class ColumnBuilder
{
use ContainerAwareTrait;
/**
* The class metadata.
*
* @var ClassMetadata
*/
private $metadata;
/**
* The Twig Environment.
*
* @var Twig_Environment
*/
private $twig;
/**
* The router.
*
* @var RouterInterface
*/
private $router;
/**
* The name of the associated Datatable.
*
* @var string
*/
private $datatableName;
/**
* The doctrine orm entity manager service.
*
* @var EntityManagerInterface
*/
private $em;
/**
* The generated Columns.
*
* @var array
*/
private $columns;
/**
* This variable stores the array of column names as keys and column ids as values
* in order to perform search column id by name.
*
* @var array
*/
private $columnNames;
/**
* Unique Columns.
*
* @var array
*/
private $uniqueColumns;
/**
* The fully-qualified class name of the entity (e.g. AppBundle\Entity\Post).
*
* @var string
*/
private $entityClassName;
//-------------------------------------------------
// Ctor.
//-------------------------------------------------
/**
* ColumnBuilder constructor.
*
* @param ClassMetadata $metadata
* @param Twig_Environment $twig
* @param RouterInterface $router
* @param string $datatableName
* @param EntityManagerInterface $em
*/
public function __construct(ClassMetadata $metadata, Twig_Environment $twig, RouterInterface $router, $datatableName, EntityManagerInterface $em)
{
$this->metadata = $metadata;
$this->twig = $twig;
$this->router = $router;
$this->datatableName = $datatableName;
$this->em = $em;
$this->columns = array();
$this->columnNames = array();
$this->uniqueColumns = array();
$this->entityClassName = $metadata->getName();
}
//-------------------------------------------------
// Builder
//-------------------------------------------------
/**
* Add Column.
*
* @param null|string $dql
* @param string|ColumnInterface $class
* @param array $options
*
* @return $this
* @throws Exception
*/
public function add($dql, $class, array $options = array())
{
$column = Factory::create($this->container, $class, ColumnInterface::class);
$column->initOptions();
$this->handleDqlProperties($dql, $options, $column);
$this->setEnvironmentProperties($column);
$column->set($options);
$this->setTypeProperties($dql, $column);
$this->addColumn($dql, $column);
$this->checkUnique();
return $this;
}
/**
* Remove Column.
*
* @param null|string $dql
*
* @return $this
*/
public function remove($dql)
{
foreach ($this->columns as $column) {
if ($column->getDql() == $dql) {
$this->removeColumn($dql, $column);
break;
}
}
return $this;
}
//-------------------------------------------------
// Getters && Setters
//-------------------------------------------------
/**
* Get columns.
*
* @return array
*/
public function getColumns()
{
return $this->columns;
}
/**
* Get columnNames.
*
* @return array
*/
public function getColumnNames()
{
return $this->columnNames;
}
/**
* Get a unique Column by his type.
*
* @param string $columnType
*
* @return mixed|null
*/
public function getUniqueColumn($columnType)
{
return array_key_exists($columnType, $this->uniqueColumns) ? $this->uniqueColumns[$columnType] : null;
}
//-------------------------------------------------
// Helper
//-------------------------------------------------
/**
* Get metadata.
*
* @param string $entityName
*
* @return ClassMetadata
* @throws Exception
*/
private function getMetadata($entityName)
{
try {
$metadata = $this->em->getMetadataFactory()->getMetadataFor($entityName);
} catch (MappingException $e) {
throw new Exception('DatatableQueryBuilder::getMetadata(): Given object '.$entityName.' is not a Doctrine Entity.');
}
return $metadata;
}
/**
* Get metadata from association.
*
* @param string $association
* @param ClassMetadata $metadata
*
* @return ClassMetadata
*/
private function getMetadataFromAssociation($association, ClassMetadata $metadata)
{
$targetClass = $metadata->getAssociationTargetClass($association);
$targetMetadata = $this->getMetadata($targetClass);
return $targetMetadata;
}
/**
* Set typeOfField.
*
* @param ClassMetadata $metadata
* @param AbstractColumn $column
* @param string $field
*
* @return $this
*/
private function setTypeOfField(ClassMetadata $metadata, AbstractColumn $column, $field)
{
if (null === $column->getTypeOfField()) {
$column->setTypeOfField($metadata->getTypeOfField($field));
}
$column->setOriginalTypeOfField($metadata->getTypeOfField($field));
return $this;
}
/**
* Handle dql properties.
*
* @param string $dql
* @param array $options
* @param AbstractColumn $column
*
* @return $this
*/
private function handleDqlProperties($dql, array $options, AbstractColumn $column)
{
// the Column 'data' property has normally the same value as 'dql'
$column->setData($dql);
if (!isset($options['dql'])) {
$column->setCustomDql(false);
$column->setDql($dql);
} else {
$column->setCustomDql(true);
}
return $this;
}
/**
* Set environment properties.
*
* @param AbstractColumn $column
*
* @return $this
*/
private function setEnvironmentProperties(AbstractColumn $column)
{
$column->setDatatableName($this->datatableName);
$column->setEntityClassName($this->entityClassName);
$column->setTwig($this->twig);
$column->setRouter($this->router);
return $this;
}
/**
* Sets some types.
*
* @param string $dql
* @param AbstractColumn $column
*
* @return $this
*/
private function setTypeProperties($dql, AbstractColumn $column)
{
if (true === $column->isSelectColumn() && false === $column->isCustomDql()) {
$metadata = $this->metadata;
$parts = explode('.', $dql);
// add associations types
if (true === $column->isAssociation()) {
while (count($parts) > 1) {
$currentPart = array_shift($parts);
/** @noinspection PhpUndefinedMethodInspection */
$column->addTypeOfAssociation($metadata->getAssociationMapping($currentPart)['type']);
$metadata = $this->getMetadataFromAssociation($currentPart, $metadata);
}
} else {
$column->setTypeOfAssociation(null);
}
// set the type of the field
$this->setTypeOfField($metadata, $column, $parts[0]);
} else {
$column->setTypeOfAssociation(null);
$column->setOriginalTypeOfField(null);
}
return $this;
}
/**
* Adds a Column.
*
* @param string $dql
* @param AbstractColumn $column
*
* @return $this
*/
private function addColumn($dql, AbstractColumn $column)
{
if (true === $column->callAddIfClosure()) {
$this->columns[] = $column;
$index = count($this->columns) - 1;
$this->columnNames[$dql] = $index;
$column->setIndex($index);
// Use the Column-Index as data source for Columns with 'dql' === null
if (null === $column->getDql() && null === $column->getData()) {
$column->setData($index);
}
if (true === $column->isUnique()) {
$this->uniqueColumns[$column->getColumnType()] = $column;
}
}
return $this;
}
/**
* Removes a Column.
*
* @param string $dql
* @param AbstractColumn $column
*
* @return $this
*/
private function removeColumn($dql, AbstractColumn $column)
{
// Remove column from columns
foreach ($this->columns as $k => $c) {
if ($c == $column) {
unset($this->columns[$k]);
$this->columns = array_values($this->columns);
break;
}
}
// Remove column from columnNames
if (array_key_exists($dql, $this->columnNames)) {
unset($this->columnNames[$dql]);
}
// Reindex columnNames
foreach ($this->columns as $k => $c) {
$this->columnNames[$c->getDql()] = $k;
}
// Remove column from uniqueColumns
foreach ($this->uniqueColumns as $k => $c) {
if ($c == $column) {
unset($this->uniqueColumns[$k]);
$this->uniqueColumns = array_values($this->uniqueColumns);
break;
}
}
return $this;
}
/**
* Check unique.
*
* @return $this
* @throws Exception
*/
private function checkUnique()
{
$unique = $this->uniqueColumns;
if (count(array_unique($unique)) < count($unique)) {
throw new Exception('ColumnBuilder::checkUnique(): Unique columns are only allowed once.');
}
return $this;
}
}