-
Notifications
You must be signed in to change notification settings - Fork 12
/
Query.php
567 lines (500 loc) · 12.3 KB
/
Query.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
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
<?php
namespace sammaye\mongoyii;
use MongoDB\BSON\Regex;
use MongoDB\Driver\Cursor as MongoCursor;
use MongoDB\Database as MongoDatabase;
use Yii;
use CComponent;
use CMap;
use sammaye\mongoyii\Client;
use sammaye\mongoyii\Database;
use sammaye\mongoyii\Document;
use sammaye\mongoyii\Cursor;
use sammaye\mongoyii\Exception;
/**
* This is the extensions version of CDbCriteria.
*
* This class is by no means required however it can help in your programming.
*
* @property array $condition
* @property array $sort
* @property int $skip
* @property int $limit
* @property array $project
*/
class Query extends CComponent
{
public static $db;
/**
* Holds information for what should be projected from the cursor
* into active models. The reason for this obscure name is because this
* is what it is called in MongoDB, basically it is SELECT though.
* @var array
*/
private $_select = [];
private $_from;
/**
* @var array
*/
private $_condition = [];
/**
* @var array
*/
private $_sort = [];
/**
* @var int
*/
private $_skip = 0;
/**
* @var int
*/
private $_limit = 0;
private $_options = ['modifiers' => []];
private $_modelClass;
private $databaseName;
/**
* Constructor.
* @param array $data - criteria initial property values (indexed by property name)
*/
public function __construct($data = [])
{
foreach($data as $name => $value){
$this->$name = $value;
}
}
/**
* Sets the projection (SELECT in MongoDB Lingo) of the criteria
* @param array $document - The document specification for projection
* @return EMongoCriteria
*/
public function setSelect($document)
{
$this->_select = $document;
return $this;
}
/**
* This means that the getters and setters for projection will be access like:
* $c->project(array('c'=>1,'d'=>0));
* @return array
*/
public function getSelect()
{
return $this->_select;
}
public function setFrom($name)
{
$this->_from = $name;
return $this;
}
public function getFrom()
{
if(!$this->_from && $this->model){
// Try and decipher from model if there is one
$this->_from = $this->model->collectionName();
}
return $this->_from;
}
/**
* Sets the condition
* @param array $condition
* @return EMongoCriteria
*/
public function setCondition(array $condition = [])
{
$this->_condition = $condition;
return $this;
}
public function getCondition()
{
return $this->_condition;
}
public function andCondition($condition)
{
$this->_condition = CMap::mergeArray($condition, $this->_condition);
return $this;
}
/**
* Append condition to previous ones using the column name as the index
* This will overwrite columns of the same name
* @param string $column
* @param mixed $value
* @param string $operator
* @return EMongoCriteria
*/
public function addCondition($column, $value, $operator = null)
{
$this->_condition[$column] = $operator === null ? $value : array($operator => $value);
return $this;
}
/**
* Adds an $or condition to the criteria, will overwrite other $or conditions
* @param array $condition
* @return EMongoCriteria
*/
public function addOrCondition($condition)
{
$this->_condition['$and'][] = array('$or' => $condition);
return $this;
}
/**
* Sets the sort
* @param array $sort
* @return EMongoCriteria
*/
public function setSort(array $sort)
{
foreach($sort as $field => $order){
if($order === 'asc'){
$sort[$field] = 1;
}elseif($order === 'desc'){
$sort[$field] = -1;
}
}
$this->_sort = CMap::mergeArray($this->_sort, $sort);
return $this;
}
/**
* Gets the sort
* @return array
*/
public function getSort()
{
return $this->_sort;
}
/**
* Sets the skip
* @param int $skip
* @return EMongoCriteria
*/
public function setSkip($skip)
{
$this->_skip = (int)$skip;
return $this;
}
/**
* Gets the skip
* @return int
*/
public function getSkip()
{
return $this->_skip;
}
/**
* Sets the limit
* @param int $limit
* @return EMongoCriteria
*/
public function setLimit($limit)
{
$this->_limit = (int)$limit;
return $this;
}
/**
* Gets the limit
* @return int
*/
public function getLimit()
{
return $this->_limit;
}
public function setOptions($options)
{
$this->_options = $options;
return $this;
}
public function addOption($name, $value)
{
$this->_options[$name] = $value;
}
public function addModifier($name, $value)
{
$this->_options['modifiers'][$name] = $value;
}
public function getOptions()
{
return CMap::mergeArray([
'projection' => $this->select,
'sort' => $this->sort,
'skip' => $this->skip,
'limit' => $this->limit
], $this->_options);
}
/**
* This function allows you to take a raw options
* parameter from the driver and parse it into this object
* could be useful for some cases
*/
public function parseOptions($options)
{
if(isset($options['projection'])){
$this->select = $options['projection'];
}
if(isset($options['sort'])){
$this->sort = $options['sort'];
}
if(isset($options['skip'])){
$this->skip = $options['skip'];
}
if(isset($options['limit'])){
$this->limit = $options['limit'];
}
if(isset($options['modifiers'])){
foreach($options['modifiers'] as $k => $v){
$this->addModifier($k, $v);
}
}
unset(
$options['projection'],
$options['sort'],
$options['skip'],
$options['limit'],
$options['modifiers']
);
foreach($options as $k => $v){
$this->addOption($k, $v);
}
}
public function setModel($modelClass)
{
if(is_string($modelClass)){
$this->_modelClass = $modelClass;
}elseif($modelClass instanceof Document){
$this->_modelClass = get_class($modelClass);
}
}
public function getModel()
{
if($this->_modelClass){
$cName = $this->_modelClass;
return $cName::model();
}
return null;
}
public function getDbConnection()
{
if(self::$db !== null){
return self::$db;
}
if($this->model){
self::$db = $this->model->getDbConnection();
}else{
self::$db = Yii::app()->mongodb;
}
if(self::$db instanceof Client){
return self::$db;
}
throw new Exception(Yii::t(
'yii',
'MongoDB Active Query requires a "mongodb" mongoyii\Client application component.'
));
}
public function setDb($db)
{
if($db instanceof Database){
$this->databaseName = $db->getDatabaseName();
}elseif($db instanceof MongoDatabase){
$this->databaseName = $db->getDatabaseName();
}else{
$this->databaseName = $db;
}
}
public function getDb()
{
$name = $this->databaseName;
if($this->model){
// Get DB name from model
$name = $this->model->getCollection()->getDatabaseName();
}
// Will select default database if name is null
return $this->getDbConnection()->selectDatabase($name);
}
/**
* Base search functionality
* @param string $column
* @param string|null $value
* @param boolean $partialMatch
* @return EMongoCriteria
*/
public function compare($column, $value = null, $partialMatch = false)
{
$query = array();
if($value === null){
$query[$column] = null;
}elseif(is_array($value)){
$query[$column] = array('$in' => $value);
}elseif(is_object($value)){
$query[$column] = $value;
}elseif(is_bool($value)){
$query[$column] = $value;
}elseif(preg_match('/^(?:\s*(<>|<=|>=|<|>|=))?(.*)$/', $value, $matches)){
$value = $matches[2];
$op = $matches[1];
if($partialMatch === true){
$value = new Regex("$value", 'i');
}else{
if(
!is_bool($value) && !is_array($value) && preg_match('/^([0-9]|[1-9]{1}\d+)$/' /* Will only match real integers, unsigned */, $value) > 0
&& (
(PHP_INT_MAX > 2147483647 && (string)$value < '9223372036854775807') /* If it is a 64 bit system and the value is under the long max */
|| (string)$value < '2147483647' /* value is under 32bit limit */
)
){
$value = (int)$value;
} elseif(preg_match('@[0-9]*(\.[0-9]+)?@si',$value)){
$value=(float)$value;
}
}
switch($op){
case "<>":
$query[$column] = array('$ne' => $value);
break;
case "<=":
$query[$column] = array('$lte' => $value);
break;
case ">=":
$query[$column] = array('$gte' => $value);
break;
case "<":
$query[$column] = array('$lt' => $value);
break;
case ">":
$query[$column] = array('$gt' => $value);
break;
case "=":
default:
$query[$column] = $value;
break;
}
}
if(!$query){
$query[$column] = $value;
}
$this->addCondition($column, $query[$column]);
return $this;
}
/**
* Merges either an array of criteria or another criteria object with this one
* @param array|EMongoCriteria $criteria
* @return EMongoCriteria
*/
public function mergeWith($criteria)
{
if($criteria instanceof static){
return $this->mergeWith($criteria->toArray());
}
if(is_array($criteria)){
if(isset($criteria['condition']) && is_array($criteria['condition'])){
$this->setCondition(CMap::mergeArray($this->condition, $criteria['condition']));
}
if(isset($criteria['sort']) && is_array($criteria['sort'])){
$this->setSort(CMap::mergeArray($this->sort, $criteria['sort']));
}
if(isset($criteria['skip']) && is_numeric($criteria['skip'])){
$this->setSkip($criteria['skip']);
}
if(isset($criteria['limit']) && is_numeric($criteria['limit'])){
$this->setLimit($criteria['limit']);
}
if(isset($criteria['select']) && is_array($criteria['select'])){
$this->setSelect(CMap::mergeArray($this->select, $criteria['select']));
}
}
return $this;
}
public function one($db = null)
{
return $this->queryInternal($db, 'findOne');
}
public function all($db = null)
{
return $this->queryInternal($db);
}
protected function queryInternal($db = null, $function = 'find')
{
if($db !== null){
self::$db = $db;
}
$cursor = null;
if(
$this->getDbConnection()->queryCachingCount > 0
&& $this->getDbConnection()->queryCachingDuration > 0
&& $this->getDbConnection()->queryCacheID !== false
&& ($cache = Yii::app()->getComponent($this->getDbConnection()->queryCacheID)) !== null
){
$this->getDbConnection()->queryCachingCount--;
$cacheKey = $cacheKey =
'yii:dbquery:' . $function . ':' .
$this->getDbConnection()->uri . ':' .
$this->getDb()->getDatabaseName() . ':' .
$this->getDbConnection()->getSerialisedQuery(
$this->condition,
$this->select,
$this->sort,
$this->skip,
$this->limit
) . ':' .
$this->from;
if(($result = $cache->get($cacheKey)) !== false){
Yii::trace('Query result found in cache', 'extensions.MongoYii.EMongoDocument');
if($function === 'find'){
$cursor = new Cursor($this->model, $result[0], ['partial' => $this->select ? true : false]);
}elseif($function === 'findOne'){
$cursor = $this->model->populateRecord($result[0], true, $this->select ? true : false);
}else{
$cursor = $result[0];
}
}
}
if(!$cursor){
$res = $this->getDb()->{$this->from}->$function($this->condition, $this->options);
if($function === 'find'){
$cursor = new Cursor(
$this->model,
$res,
['partial' => $this->select ? true : false]
);
}elseif($function === 'findOne'){
$cursor = $this->model->populateRecord($res, true, $this->select ? true : false);
}else{
$cursor = $res;
}
}
if(isset($cache, $cacheKey)){
$cache->set(
$cacheKey,
$cursor instanceof static ? iterator_to_array($cursor) : $cursor,
$this->getDbConnection()->queryCachingDuration,
$this->getDbConnection()->queryCachingDependency
);
}
return $cursor;
}
public function __debugInfo()
{
return CMap::mergeArray(
['condition' => $this->condition],
$this->options
);
}
public function __toArray($onlyCondition = false)
{
return $this->toArray($onlyCondition);
}
/**
* @param boolean $onlyCondition - indicates whether to return only condition part or criteria.
* Should be "true" if the criteria is used in EMongoDocument::find() and other common find methods.
* @return array - native representation of the criteria
*/
public function toArray($onlyCondition = false)
{
$result = array();
if($onlyCondition === true){
$result = $this->condition;
}else{
foreach(array('_condition', '_limit', '_skip', '_sort', '_select') as $name){
$result[substr($name, 1)] = $this->$name;
}
}
return $result;
}
}