-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathRecordQueryBuilder.php
More file actions
569 lines (465 loc) · 13.8 KB
/
Copy pathRecordQueryBuilder.php
File metadata and controls
569 lines (465 loc) · 13.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
<?php
namespace Alchemy\Phraseanet\Query;
use Alchemy\Phraseanet\Predicate\PredicateBuilder;
use PhraseanetSDK\Entity\DataboxCollection;
class RecordQueryBuilder
{
const RECORD_TYPE_AUDIO = 'audio';
const RECORD_TYPE_VIDEO = 'video';
const RECORD_TYPE_IMAGE = 'image';
const RECORD_TYPE_DOCUMENT = 'document';
const RECORD_TYPE_FLASH = 'flash';
const SEARCH_RECORDS = 0;
const SEARCH_STORIES = 1;
const SEARCH_STORIES_LIGHT = 2;
const SORT_RELEVANCE = 'relevance';
const SORT_CREATED_ON = 'created_on';
const SORT_RANDOM = 'random';
/**
* @var string
*/
private $query = '';
/**
* @var PredicateBuilder
*/
private $conditionBuilder;
/**
* @var int[] An array of collection ID's to search
*/
private $collections = array();
/**
* @var int Offset of the first record to return
*/
private $offsetStart = 0;
/**
* @var int Number of records to return
*/
private $recordsPerPage = 10;
/**
* @var string|null One of the RECORD_TYPE_* constant values to restrict the search to a specific document type
*/
private $recordType = null;
/**
* @var int One of the SEARCH_TYPE_* constant values to select the type of record to fetch
*/
private $searchType = self::SEARCH_RECORDS;
/**
* @var string|null Name of a date field to use as a date criterion
*/
private $dateCriterionField = null;
/**
* @var \DateTimeInterface|null
*/
private $dateCriterionMin = null;
/**
* @var \DateTimeInterface|null
*/
private $dateCriterionMax = null;
/**
* @var int[] An array of statuses to restrict the search to documents matching the given statuses
*/
private $statuses = array();
/**
* @var string[] An array of fields names to return in the search results
*/
private $fields = array();
/**
* @var bool Whether to sort in descending order
*/
private $sortDescending = false;
/**
* @var string Type of sort to use
*/
private $sortType = null;
/**
* @var bool Whether to activate truncation search mode
*/
private $enableTruncation = false;
/**
* Sets the record search query string. Format follows the same specification as the Phraseanet search
* engine.
*
* @param $query
* @return $this
*/
public function setQuery($query)
{
$this->query = $query;
return $this;
}
/**
* @return PredicateBuilder
*/
public function getConditionBuilder()
{
if ($this->conditionBuilder === null) {
$this->conditionBuilder = new PredicateBuilder();
}
return $this->conditionBuilder;
}
/**
* Add a collection to the search criteria.
*
* @param DataboxCollection|int $collection A collection or collection ID.
* @return $this
*/
public function addCollection($collection)
{
if ($collection instanceof DataboxCollection) {
$collection = $collection->getBaseId();
}
$this->collections[] = $collection;
return $this;
}
/**
* Adds a list of collections to the search criteria.
*
* @param array $collections An array of DataboxCollection instances or collection ID's.
* @return $this
*/
public function addCollections(array $collections)
{
foreach ($collections as $collection) {
$this->addCollection($collection);
}
return $this;
}
/**
* Sets the list of collections in which to search for records.
*
* @param array $collections An array of DataboxCollection instances or collection ID's. An empty array will clear
* the collection restriction.
*
* @return $this
*/
public function setCollections(array $collections)
{
$this->collections = array();
$this->addCollections($collections);
return $this;
}
/**
* Intersects the current list of collections with the given collections.
*
* @param array $collections
*/
public function intersectCollections(array $collections)
{
$this->collections = array_values(array_intersect($this->collections, $collections));
}
/**
* Sets the offset of the first record to return.
*
* @param int $offset Index of the first record to return. Defaults to 0 if an invalid value is provided.
*
* @return $this
*/
public function setOffset($offset)
{
$this->offsetStart = max(0, intval($offset));
return $this;
}
/**
* @param int $pageIndex The 0-based page index
*/
public function setPage($pageIndex)
{
$this->setOffset($pageIndex * $this->recordsPerPage);
}
/**
* Sets the sort type for the query
*
* @param string $sort One of the SORT_* constant values.
* @param bool $descending True to sort in descending order, false otherwise.
* @return $this
* @throws \InvalidArgumentException when the sort type is not of the SORT_* constant values..
*/
public function sortBy($sort, $descending = false)
{
$this->sortType = (string) $sort;
$this->sortDescending = (bool) $descending;
return $this;
}
/**
* Sets the maximum number of records to return.
*
* @param int $limit Maximum number of records to return. Defaults to 1 if an invalid value is provided.
*
* @return $this
*/
public function setLimit($limit)
{
$this->recordsPerPage = max(1, intval($limit));
return $this;
}
/**
* Filters the media type of records to return.
*
* @param string $recordType One of the QueryBuilder::RECORD_TYPE_* constant values.
* @return $this
* @throws \InvalidArgumentException when the record media type is not valid.
*/
public function setRecordType($recordType)
{
$allowedTypes = array(
self::RECORD_TYPE_AUDIO,
self::RECORD_TYPE_DOCUMENT,
self::RECORD_TYPE_FLASH,
self::RECORD_TYPE_IMAGE,
self::RECORD_TYPE_VIDEO
);
if (! in_array($recordType, $allowedTypes, true)) {
throw new \InvalidArgumentException(
sprintf('Record type must be one of the RECORD_TYPE_* values, %s given.', $recordType)
);
}
$this->recordType = $recordType;
return $this;
}
/**
* Sets the type of record to search for.
*
* @param int $searchType One of the QueryBuilder::SEARCH_* constant values.
* @return $this
* @throws \InvalidArgumentException when the the search type if not valid.
*/
public function setSearchType($searchType)
{
$allowedTypes = array(
self::SEARCH_RECORDS,
self::SEARCH_STORIES,
self::SEARCH_STORIES_LIGHT
);
if (! in_array($searchType, $allowedTypes, true)) {
throw new \InvalidArgumentException('Search type must be one of the SEARCH_* values');
}
$this->searchType = $searchType;
return $this;
}
/**
* Sets a date filter on the records to return. At least one of $minDate or $maxDate arguments
* must be specified.
*
* @param string $fieldName The name of the field on which to filter by date.
* @param \DateTimeInterface $minDate The lower date boundary.
* @param \DateTimeInterface $maxDate The upper date boundary.
* @return $this
* @throws \InvalidArgumentException when the field name is an invalid or empty string
* @throws \InvalidArgumentException when both min and max date values are null.
*/
public function setDateCriterion($fieldName, \DateTimeInterface $minDate = null, \DateTimeInterface $maxDate = null)
{
$this->validateFieldName($fieldName, 'Field name is required and must be a non-empty string.');
if ($minDate == null && $maxDate == null) {
throw new \InvalidArgumentException('At least one of min or max date must be provided');
}
$this->dateCriterionField = $fieldName;
$this->dateCriterionMin = $minDate;
$this->dateCriterionMax = $maxDate;
return $this;
}
/**
* Adds a status filter to the search
*
* @param mixed $status
* @param $value
* @return $this
*/
public function addStatus($status, $value)
{
$this->statuses[$status] = $value;
return $this;
}
/**
* Adds a list of status filters to the search.
*
* @param array $statuses
* @return $this
*/
public function addStatuses(array $statuses)
{
foreach ($statuses as $status => $value) {
$this->addStatus($status, $value);
}
return $this;
}
/**
* Sets the status filter to the given list. An empty list clears the filter.
*
* @param array $statuses
* @return $this
*/
public function setStatuses(array $statuses)
{
$this->statuses = array();
$this->addStatuses($statuses);
return $this;
}
/**
* Adds a field to the list of requested fields.
*
* @param string $fieldName
* @return $this
* @throws \InvalidArgumentException when the field name is an invalid or empty string
*/
public function addField($fieldName)
{
$this->validateFieldName($fieldName, 'Field name is required and must be a non-empty string.');
$this->fields[] = $fieldName;
return $this;
}
private function validateFieldName($fieldName, $errorMessage)
{
if (! is_string($fieldName) || trim($fieldName) === '') {
throw new \InvalidArgumentException($errorMessage);
}
}
/**
* Adds a list of fields to the list of requested fields.
*
* @param array $fields
* @return $this
* @throws \InvalidArgumentException when one of the field names is an invalid or empty string
*/
public function addFields(array $fields)
{
foreach ($fields as $field) {
$this->addField($field);
}
return $this;
}
/**
* Sets the list of requested fields. An empty clears the filter and all fields will be returned.
*
* @param array $fields
* @return $this
* @throws \InvalidArgumentException when one of the field names is an invalid or empty string
*/
public function setFields(array $fields)
{
$this->fields = array();
$this->addFields($fields);
return $this;
}
/**
* Enables truncation search mode.
*/
public function enableTruncation()
{
$this->enableTruncation = true;
}
/**
* Disables truncation search mode
*/
public function disableTruncation()
{
$this->enableTruncation = false;
}
/**
* @return bool
*/
public function isTruncationEnabled()
{
return $this->enableTruncation;
}
/**
* Returns the built query.
*
* @return RecordQuery
*/
public function getQuery()
{
$query = array(
'query' => $this->buildQueryTerm(),
'bases' => array_unique($this->collections),
'offset_start' => $this->offsetStart,
'per_page' => $this->recordsPerPage,
'search_type' => $this->searchType,
'truncation' => $this->enableTruncation ? 1 : 0
);
$query = $this->appendRecordType($query);
$query = $this->appendDates($query);
$query = $this->appendStatuses($query);
$query = $this->appendFields($query);
$query = $this->appendSort($query);
return new RecordQuery($query, $this->searchType);
}
private function buildQueryTerm()
{
if (! $this->conditionBuilder) {
return $this->query;
}
$compiler = new QueryPredicateVisitor();
$this->conditionBuilder->endAllGroups();
$this->conditionBuilder->andWhere($this->query);
return $compiler->compile($this->conditionBuilder->getPredicate());
}
/**
* @param $query
* @return mixed
*/
private function appendRecordType($query)
{
if ($this->recordType !== null) {
$query['record_type'] = $this->recordType;
return $query;
}
return $query;
}
/**
* @param $query
* @return mixed
*/
private function appendDates($query)
{
if ($this->dateCriterionField !== null) {
$query['date_field'] = $this->dateCriterionField;
if ($this->dateCriterionMin) {
$query['date_min'] = $this->dateCriterionMin->format('Y/m/d');
}
if ($this->dateCriterionMax) {
$query['date_max'] = $this->dateCriterionMax->format('Y/m/d');
return $query;
}
return $query;
}
return $query;
}
/**
* @param $query
* @return mixed
*/
private function appendStatuses($query)
{
if (!empty($this->statuses)) {
$query['status'] = $this->statuses;
return $query;
}
return $query;
}
/**
* @param $query
* @return mixed
*/
private function appendFields($query)
{
if (!empty($this->fields)) {
$query['fields'] = $this->fields;
return $query;
}
return $query;
}
/**
* @param $query
* @return mixed
*/
private function appendSort($query)
{
if ($this->sortType !== null) {
$query['sort'] = $this->sortType;
$query['ord'] = $this->sortDescending ? 'desc' : 'asc';
return $query;
}
return $query;
}
}