-
Notifications
You must be signed in to change notification settings - Fork 339
Expand file tree
/
Copy pathDocument.php
More file actions
592 lines (505 loc) · 18.8 KB
/
Document.php
File metadata and controls
592 lines (505 loc) · 18.8 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
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
<?php
/*
* This file is part of the DataGridBundle.
*
* (c) Abhoryo <abhoryo@free.fr>
* (c) Stanislav Turza
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
*
*/
namespace APY\DataGridBundle\Grid\Source;
use APY\DataGridBundle\Grid\Column\Column;
use APY\DataGridBundle\Grid\Helper\ColumnsIterator;
use APY\DataGridBundle\Grid\Row;
use APY\DataGridBundle\Grid\Rows;
use Doctrine\ODM\MongoDB\Query\Builder as QueryBuilder;
use MongoDB\BSON\Regex;
class Document extends Source
{
/**
* @var \Doctrine\ODM\MongoDB\Query\Builder;
*/
protected $query;
/**
* @var \Doctrine\ODM\MongoDB\DocumentManager
*/
protected $manager;
/**
* e.g. Base\Cms\Document\Page.
*/
protected $class;
/**
* @var \Doctrine\ODM\MongoDB\Mapping\ClassMetadata
*/
protected $odmMetadata;
/**
* e.g. Cms:Page.
*/
protected $documentName;
/**
* @var \APY\DataGridBundle\Grid\Mapping\Metadata\Metadata
*/
protected $metadata;
/**
* @var int Items count
*/
protected $count;
/**
* @var string
*/
protected $group;
/**
* @var array
*/
protected $referencedColumns = [];
/**
* @var array
*/
protected $referencedMappings = [];
/**
* @var array
*/
protected $embedColumns = [];
/**
* @var array
*/
protected $embedMappings = [];
/**
* @param string $documentName e.g. "Cms:Page"
*/
public function __construct($documentName, $group = 'default')
{
$this->documentName = $documentName;
$this->group = $group;
}
public function initialise($container)
{
$this->manager = $container->get('doctrine.odm.mongodb.document_manager');
$this->odmMetadata = $this->manager->getClassMetadata($this->documentName);
$this->class = $this->odmMetadata->getReflectionClass()->getName();
$mapping = $container->get('grid.mapping.manager');
$mapping->addDriver($this, -1);
$this->metadata = $mapping->getMetadata($this->class, $this->group);
}
/**
* @param \APY\DataGridBundle\Grid\Columns $columns
*/
public function getColumns($columns)
{
foreach ($this->metadata->getColumnsFromMapping($columns) as $column) {
$columns->addColumn($column);
}
}
protected function normalizeOperator($operator)
{
switch ($operator) {
// For case insensitive
case Column::OPERATOR_EQ:
case Column::OPERATOR_LIKE:
case Column::OPERATOR_NLIKE:
case Column::OPERATOR_RLIKE:
case Column::OPERATOR_LLIKE:
case Column::OPERATOR_SLIKE:
case Column::OPERATOR_NSLIKE:
case Column::OPERATOR_RSLIKE:
case Column::OPERATOR_LSLIKE:
case Column::OPERATOR_NEQ:
return 'equals';
case Column::OPERATOR_ISNULL:
case Column::OPERATOR_ISNOTNULL:
return 'exists';
default:
return $operator;
}
}
protected function normalizeValue($operator, $value)
{
switch ($operator) {
case Column::OPERATOR_NEQ:
return new Regex('^(?!' . $value . '$).*$', 'i');
case Column::OPERATOR_LIKE:
return new Regex($value, 'i');
case Column::OPERATOR_NLIKE:
return new Regex('^((?!' . $value . ').)*$', 'i');
case Column::OPERATOR_RLIKE:
return new Regex('^' . $value, 'i');
case Column::OPERATOR_LLIKE:
return new Regex($value . '$', 'i');
case Column::OPERATOR_SLIKE:
return new Regex($value, '');
case Column::OPERATOR_RSLIKE:
return new Regex('^' . $value, '');
case Column::OPERATOR_LSLIKE:
return new Regex($value . '$', '');
case Column::OPERATOR_ISNULL:
return false;
case Column::OPERATOR_ISNOTNULL:
return true;
default:
return $value;
}
}
/**
* Sets the initial QueryBuilder for this DataGrid.
*
* @param QueryBuilder $queryBuilder
*/
public function initQueryBuilder(QueryBuilder $queryBuilder)
{
$this->query = clone $queryBuilder;
}
/**
* @return QueryBuilder
*/
protected function getQueryBuilder()
{
//If a custom QB has been provided, use that
//Otherwise create our own basic one
if ($this->query instanceof QueryBuilder) {
$qb = $this->query;
} else {
$qb = $this->query = $this->manager->createQueryBuilder($this->documentName);
}
return $qb;
}
/**
* @param ColumnsIterator $columns
* @param int $page Page Number
* @param int $limit Rows Per Page
* @param int $gridDataJunction Grid data junction
*
* @return \APY\DataGridBundle\Grid\Rows
*/
public function execute($columns, $page = 0, $limit = 0, $maxResults = null, $gridDataJunction = Column::DATA_CONJUNCTION)
{
$this->query = $this->getQueryBuilder();
$validColumns = [];
foreach ($columns as $column) {
//checks if exists '.' notation on referenced columns and build query if it's filtered
$subColumn = explode('.', $column->getId());
if (count($subColumn) > 1) {
if (isset($this->referencedMappings[$subColumn[0]])) {
$this->addReferencedColumn($subColumn, $column);
} elseif (isset($this->embedMappings[$subColumn[0]])) {
$this->addEmbedColumn($subColumn, $column);
}
continue;
}
$this->query->select($column->getField());
if ($column->isSorted()) {
$this->query->sort($column->getField(), $column->getOrder());
}
if ($column->isPrimary()) {
$column->setFilterable(false);
} elseif ($column->isFiltered()) {
// Some attributes of the column can be changed in this function
$filters = $column->getFilters('document');
foreach ($filters as $filter) {
//normalize values
$operator = $this->normalizeOperator($filter->getOperator());
$value = $this->normalizeValue($filter->getOperator(), $filter->getValue());
if ($column->getDataJunction() === Column::DATA_DISJUNCTION) {
$this->query->addOr($this->query->expr()->field($column->getField())->$operator($value));
} else {
$this->query->field($column->getField())->$operator($value);
}
}
}
$validColumns[] = $column;
}
if ($page > 0) {
$this->query->skip($page * $limit);
}
if ($limit > 0) {
if ($maxResults !== null && ($maxResults - $page * $limit < $limit)) {
$limit = $maxResults - $page * $limit;
}
$this->query->limit($limit);
} elseif ($maxResults !== null) {
$this->query->limit($maxResults);
}
//call overridden prepareQuery or associated closure
$this->prepareQuery($this->query);
//execute and get results
$result = new Rows();
// I really don't know if Cursor is the right type returned (I mean, every single type).
// As I didn't find out this information, I'm gonna test it with Cursor returned only.
$cursor = $this->query->getQuery()->execute();
$this->count = $cursor->count();
foreach ($cursor as $resource) {
$row = new Row();
$properties = $this->getClassProperties($resource);
foreach ($validColumns as $column) {
if (isset($properties[strtolower($column->getId())])) {
$row->setField($column->getId(), $properties[strtolower($column->getId())]);
}
}
$this->addReferencedFields($row, $resource);
$this->addEmbedFields($row, $resource);
//call overridden prepareRow or associated closure
if (($modifiedRow = $this->prepareRow($row)) !== null) {
$result->addRow($modifiedRow);
}
}
return $result;
}
protected function addReferencedColumn(array $subColumn, Column $column)
{
$this->referencedColumns[$subColumn[0]][] = $subColumn[1];
if ($column->isFiltered()) {
$helperQuery = $this->manager->createQueryBuilder($this->referencedMappings[$subColumn[0]]);
$filters = $column->getFilters('document');
foreach ($filters as $filter) {
$operator = $this->normalizeOperator($filter->getOperator());
$value = $this->normalizeValue($filter->getOperator(), $filter->getValue());
$helperQuery->field($subColumn[1])->$operator($value);
$this->prepareQuery($this->query);
$cursor = $helperQuery->getQuery()->execute();
foreach ($cursor as $resource) {
// Is this case possible? I don't think so
if ($cursor->count() > 0) {
$this->query->select($subColumn[0]);
}
if ($cursor->count() === 1) {
$this->query->field($subColumn[0])->references($resource);
} else {
$this->query->addOr($this->query->expr()->field($subColumn[0])->references($resource));
}
}
}
}
}
protected function addEmbedColumn(array $subColumn, Column $column)
{
$this->embedColumns[$subColumn[0]][] = $subColumn[1];
if ($column->isFiltered()) {
$filters = $column->getFilters('document');
foreach ($filters as $filter) {
$operator = $this->normalizeOperator($filter->getOperator());
$value = $this->normalizeValue($operator, $filter->getValue());
if ($column->getDataJunction() === Column::DATA_DISJUNCTION) {
$this->query->addOr($this->query->expr()->field($column->getField())->$operator($value));
} else {
$this->query->field($column->getField())->$operator($value);
}
}
}
if ($column->isSorted()) {
$this->query->sort($column->getField(), $column->getOrder());
}
}
/**
* @param Row $row
* @param Document $resource
*
* @throws \Exception if getter for field does not exists
*/
protected function addReferencedFields(Row $row, $resource)
{
foreach ($this->referencedColumns as $parent => $subColumns) {
$this->addSubfield($row, $resource, $parent, $subColumns);
}
}
protected function addEmbedFields(Row $row, $resource)
{
foreach ($this->embedColumns as $parent => $subColumns) {
$this->addSubfield($row, $resource, $parent, $subColumns);
}
}
protected function addSubfield(Row $row, $resource, $parent, array $subColumns)
{
$node = $this->getClassProperties($resource);
if (isset($node[strtolower($parent)])) {
$node = $node[strtolower($parent)];
foreach ($subColumns as $field) {
$getter = 'get' . ucfirst($field);
if (method_exists($node, $getter)) {
$row->setField($parent . '.' . $field, $node->$getter());
} else {
throw new \Exception(sprintf('Method %s for Document %s not exists', $getter, $this->referencedMappings[$parent]));
}
}
}
}
public function getTotalCount($maxResults = null)
{
if ($maxResults !== null) {
return min([$maxResults, $this->count]);
}
return $this->count;
}
protected function getClassProperties($obj)
{
$reflect = new \ReflectionClass($obj);
$props = $reflect->getProperties();
$result = [];
foreach ($props as $property) {
$property->setAccessible(true);
$result[strtolower($property->getName())] = $property->getValue($obj);
}
return $result;
}
/**
* @param string $class
* @param string $group
*
* @return array
*/
public function getFieldsMetadata($class, $group = 'default')
{
$result = [];
foreach ($this->odmMetadata->getReflectionProperties() as $property) {
$name = $property->getName();
$mapping = $this->odmMetadata->getFieldMapping($name);
$values = ['title' => $name, 'source' => true];
if (isset($mapping['fieldName'])) {
$values['field'] = $mapping['fieldName'];
$values['id'] = $mapping['fieldName'];
}
if (isset($mapping['id']) && $mapping['id'] == 'id') {
$values['primary'] = true;
}
switch ($mapping['type']) {
case 'id':
case 'string':
case 'bin_custom':
case 'bin_func':
case 'bin_md5':
case 'bin':
case 'bin_uuid':
case 'file':
case 'key':
case 'increment':
$values['type'] = 'text';
break;
case 'int':
case 'float':
$values['type'] = 'number';
break;
/*case 'hash':
$values['type'] = 'array';*/
case 'boolean':
$values['type'] = 'boolean';
break;
case 'date':
case 'timestamp':
$values['type'] = 'date';
break;
case 'collection':
case 'many':
$values['type'] = 'array';
break;
case 'one':
$values['type'] = 'array';
if (isset($mapping['reference']) && true === $mapping['reference']) {
$this->referencedMappings[$name] = $mapping['targetDocument'];
} elseif (isset($mapping['embedded']) && true === $mapping['embedded']) {
$this->embedMappings[$name] = $mapping['targetDocument'];
}
break;
default:
$values['type'] = 'text';
}
$result[$name] = $values;
}
return $result;
}
public function populateSelectFilters($columns, $loop = false)
{
$queryFromSource = $this->getQueryBuilder();
$queryFromQuery = clone $this->query;
// Clean the select fields from the query
foreach ($columns as $column) {
$queryFromQuery->exclude($column->getField());
}
/* @var $column Column */
foreach ($columns as $column) {
$selectFrom = $column->getSelectFrom();
if ($column->getFilterType() === 'select' && ($selectFrom === 'source' || $selectFrom === 'query')) {
// For negative operators, show all values
if ($selectFrom === 'query') {
foreach ($column->getFilters('document') as $filter) {
if (in_array($filter->getOperator(), [Column::OPERATOR_NEQ, Column::OPERATOR_NLIKE, Column::OPERATOR_NSLIKE])) {
$selectFrom = 'source';
break;
}
}
}
// Dynamic from query or not ?
$query = ($selectFrom === 'source') ? clone $queryFromSource : clone $queryFromQuery;
$result = $query->select($column->getField())
->distinct($column->getField())
->sort($column->getField(), 'asc')
->skip(null)
->limit(null)
->getQuery()
->execute();
$values = [];
foreach ($result as $value) {
switch ($column->getType()) {
case 'number':
$values[$value] = $column->getDisplayedValue($value);
break;
case 'datetime':
case 'date':
case 'time':
if ($value instanceof \MongoDate || $value instanceof \MongoTimestamp) {
$value = $value->sec;
}
// Mongodb bug ? timestamp value is on the key 'i' instead of the key 't'
if (is_array($value) && array_keys($value) == ['t', 'i']) {
$value = $value['i'];
}
$displayedValue = $column->getDisplayedValue($value);
$values[$displayedValue] = $displayedValue;
break;
default:
$values[$value] = $value;
}
}
// It avoids to have no result when the other columns are filtered
if ($selectFrom === 'query' && empty($values) && $loop === false) {
$column->setSelectFrom('source');
$this->populateSelectFilters($columns, true);
} else {
$values = $this->prepareColumnValues($column, $values);
$column->setValues($values);
}
}
}
}
/**
* @param array $ids
*
* @throws \Exception
*/
public function delete(array $ids)
{
$repository = $this->getRepository();
foreach ($ids as $id) {
$object = $repository->find($id);
if (!$object) {
throw new \Exception(sprintf('No %s found for id %s', $this->documentName, $id));
}
$this->manager->remove($object);
}
$this->manager->flush();
}
/**
* @return \Doctrine\ODM\MongoDB\DocumentRepository
*/
public function getRepository()
{
return $this->manager->getRepository($this->documentName);
}
/**
* @return string
*/
public function getHash()
{
return $this->documentName;
}
}