forked from eonwhite/simplemongophp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDb.php
470 lines (435 loc) · 14.2 KB
/
Db.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
<?php
/**
* Class Db
*
* @package SimpleMongoPhp
* @author Ian White ([email protected])
* @version 1.2
*
* This is a simple library to wrap around the Mongo API and make it a little more convenient
* to use for a PHP web application.
*
* To set up, all you need to do is:
* - include() or require() this file
* - call Db::addConnection()
*
* Example usage:
* $mongo = new Mongo();
* Db::addConnection($mongo, 'lost');
*
* Db::drop('people');
* Db::batchInsert('people', array(
* array('name' => 'Jack', 'sex' => 'M', 'goodguy' => true),
* array('name' => 'Kate', 'sex' => 'F', 'goodguy' => true),
* array('name' => 'Locke', 'sex' => 'M', 'goodguy' => true),
* array('name' => 'Hurley', 'sex' => 'M', 'goodguy' => true),
* array('name' => 'Ben', 'sex' => 'M', 'goodguy' => false),
* ));
* foreach (Db::find('people', array('goodguy' => true), array('sort' => array('name' => 1))) as $p) {
* echo $p['name'] " is a good guy!\n";
* }
* $ben = Db::findOne('people', array('name' => 'Ben'));
* $locke = Db::findOne('people', array('name' => 'Locke'));
* $ben['enemy'] = Db::createRef('people', $locke);
* $ben['goodguy'] = null;
* Db::save('people', $ben);
*
* See the Dbo.php class for how you could do the same thing with data objects.
*
* This library may be freely distributed and modified for any purpose.
**/
class Db {
static $connections;
static $read_slave = false;
static function getConnectionInfo($collection = null, $read_only = false) {
$info = null;
// in read-only mode, check for a slave config if set to read slave
if ($read_only && self::$read_slave) {
if (isset(self::$connections["$collection/slave"])) {
$info = self::$connections["$collection/slave"];
} else if (isset(self::$connections['/slave'])) {
$info = self::$connections['/slave'];
}
}
if (!$info) {
if (isset(self::$connections[$collection])) {
$info = self::$connections[$collection];
} else if (isset(self::$connections[''])) {
$info = self::$connections[''];
} else if (isset($GLOBALS['mongo'])) {
$info = array($GLOBALS['mongo'], MONGODB_NAME); // backwards compat
} else {
throw new Exception('No connection configuration, call Db::addConnection()');
}
}
return $info;
}
static function getDb($collection, $read_only = false) {
$info = self::getConnectionInfo($collection, $read_only);
list($mongo, $db_name) = $info;
if (!$mongo->connected) {
$mongo->connect();
}
return $mongo->selectDB($db_name);
}
static function getCollection($collection, $read_only = false) {
$info = self::getConnectionInfo($collection, $read_only);
list($mongo, $db_name) = $info;
if (!$mongo->connected) {
$mongo->connect();
}
return $mongo->selectCollection($db_name, $collection);
}
static function addConnection($mongo, $db_name, $collections = null, $slave = false) {
$append = $slave ? '/slave' : '';
if (!$collections) {
self::$connections[$append] = array($mongo, $db_name);
} else {
foreach ($collections as $c) {
self::$connections["$c$append"] = array($mongo, $db_name);
}
}
}
static function addSlaveConnection($mongo, $db_name, $collections = null) {
self::addConnection($mongo, $db_name, $collections, true);
}
static function readSlave($setting = true) {
self::$read_slave = $setting;
}
/**
* Returns a MongoId from a string, MongoId, array, or Dbo object
*
* @param mixed $obj
* @return MongoId
**/
static function id($obj) {
if ($obj instanceof MongoId) {
return $obj;
}
if (is_string($obj)) {
return new MongoId($obj);
}
if (is_array($obj)) {
return $obj['_id'];
}
return new MongoId($obj->_id);
}
/**
* Returns true if the value passed appears to be a Mongo database reference
*
* @param mixed $obj
* @return boolean
**/
static function isRef($value) {
if (!is_array($value)) {
return false;
}
return MongoDBRef::isRef($value);
}
/**
* Returns a Mongo database reference created from a collection and an id
*
* @param string $collection
* @param mixed $id
* @return array
**/
static function createRef($collection, $id) {
return array('$ref' => $collection, '$id' => self::id($id));
}
/**
* Returns the Mongo object array that a database reference points to
*
* @param array $dbref
* @return array
**/
static function getRef($dbref) {
$db = self::getDb($dbref['$ref'], true);
return $db->getDBRef($dbref);
}
/**
* Recursively expands any database references found in an array of references,
* and returns the expanded object.
*
* @param mixed $value
* @return mixed
**/
static function expandRefs($value) {
if (is_array($value)) {
if (self::isRef($value)) {
return self::getRef($value);
} else {
foreach ($value as $k => $v) {
$value[$k] = self::expandRefs($v);
}
}
}
return $value;
}
/**
* Returns a database cursor for a Mongo find() query.
*
* Pass the query and options as array objects (this is more convenient than the standard
* Mongo API especially when caching)
*
* $options may contain:
* fields - the fields to retrieve
* sort - the criteria to sort by
* limit - the number of objects to return
* skip - the number of objects to skip
*
* @param string $collection
* @param array $query
* @param array $options
* @return MongoCursor
**/
static function find($collection, $query = array(), $options = array()) {
$col = self::getCollection($collection, true);
$fields = isset($options['fields']) ? $options['fields'] : array();
$result = $col->find($query, $fields);
if (isset($options['sort']) && $options['sort'] !== null) {
$result->sort($options['sort']);
}
if (isset($options['limit']) && $options['limit'] !== null) {
$result->limit($options['limit']);
}
if (isset($options['skip']) && $options['skip'] !== null) {
$result->skip($options['skip']);
}
return $result;
}
/**
* Just like find, but return the results as an array (of arrays)
*
* @param string $collection
* @param array $query
* @param array $options
* @return array
**/
static function finda($collection, $query = array(), $options = array()) {
$result = self::find($collection, $query, $options);
$array = array();
foreach ($result as $val) {
$array[] = $val;
}
return $array;
}
/**
* Do a find() but return an array populated with one field value only
*
* @param string $collection
* @param string $field
* @param array $query
* @param array $options
* @return array
**/
static function findField($collection, $field, $query = array(), $options = array()) {
$options['fields'] = array($field => 1);
$result = self::find($collection, $query, $options);
$array = array();
foreach ($result as $val) {
$array[] = $val[$field];
}
return $array;
}
/**
* Do a find() returned as an associative array mapping one field to another
*
* @param string $collection
* @param string $key_field
* @param string $value_field
* @param array $query
* @param array $options
* @return array
**/
static function findAssoc($collection, $key_field, $value_field, $query = array(), $options = array()) {
$options['fields'] = array($key_field => 1, $value_field => 1);
$result = self::find($collection, $query, $options);
$array = array();
foreach ($result as $val) {
$array[$val[$key_field]] = $val[$value_field];
}
return $array;
}
/**
* Find a single object -- like Mongo's findOne() but you can pass an id as a shortcut
*
* @param string $collection
* @param mixed $id
* @return array
**/
static function findOne($collection, $id) {
$col = self::getCollection($collection, true);
if (!is_array($id)) {
$id = array('_id' => self::id($id));
}
return $col->findOne($id);
}
/**
* Count the number of objects matching a query in a collection (or all objects)
*
* @param string $collection
* @param array $query
* @return integer
**/
static function count($collection, $query = array()) {
$col = self::getCollection($collection, true);
if ($query) {
$res = $col->find($query);
return $res->count();
} else {
return $col->count();
}
}
/**
* Save a Mongo object -- just a simple shortcut for MongoCollection's save()
*
* @param string $collection
* @param array $data
* @return boolean
**/
static function save($collection, $data) {
$col = self::getCollection($collection);
return $col->save($data);
}
static function insert($collection, $data) {
$col = self::getCollection($collection);
return $col->insert($data);
}
static function lastError($collection = null, $read_only = false) {
$db = self::getDb($collection, $read_only);
return $db->lastError();
}
/**
* Shortcut for MongoCollection's update() method
*
* @param string $collection
* @param array $criteria
* @param array $newobj
* @param boolean $upsert
* @return boolean
**/
static function update($collection, $criteria, $newobj, $options = array()) {
$col = self::getCollection($collection);
if ($options === true) {
$options = array('upsert' => true);
}
if (!isset($options['multiple'])) {
$options['multiple'] = false;
}
return $col->update($criteria, $newobj, $options);
}
static function updateConcurrent($collection, $criteria, $newobj, $options = array()) {
$col = self::getCollection($collection);
if (!isset($options['multiple'])) {
$options['multiple'] = false;
}
$i = 0;
foreach ($col->find($criteria, array('fields' => array('_id' => 1))) as $obj) {
$col->update(array('_id' => $obj['_id']), $newobj);
if (empty($options['multiple'])) {
return;
}
if (!empty($options['count_mod']) && $i % $options['count_mod'] == 0) {
if (!empty($options['count_callback'])) {
call_user_func($options['count_callback'], $i);
} else {
echo '.';
}
}
$i++;
}
}
/**
* Shortcut for MongoCollection's update() method, performing an upsert
*
* @param string $collection
* @param array $criteria
* @param array $newobj
* @return boolean
**/
static function upsert($collection, $criteria, $newobj) {
return self::update($collection, $criteria, $newobj, true);
}
/**
* Shortcut for MongoCollection's remove() method, with the option of passing an id string
*
* @param string $collection
* @param array $criteria
* @param boolean $just_one
* @return boolean
**/
static function remove($collection, $criteria, $just_one = false) {
$col = self::getCollection($collection);
if (!is_array($criteria)) {
$criteria = array('_id' => self::id($criteria));
}
return $col->remove($criteria, $just_one);
}
/**
* Shortcut for MongoCollection's drop() method
*
* @param string $collection
* @return boolean
**/
static function drop($collection) {
$col = self::getCollection($collection);
return $col->drop();
}
/**
* Shortcut for MongoCollection's batchInsert() method
*
* @param string $collection
* @param array $array
* @return boolean
**/
static function batchInsert($collection, $array) {
$col = self::getCollection($collection);
return $col->batchInsert($array);
}
static function group($collection, array $keys, array $initial, $reduce, array $condition = array()) {
$col = self::getCollection($collection, true);
return $col->group($keys, $initial, $reduce, $condition);
}
/**
* Shortcut for MongoCollection's ensureIndex() method
*
* @param string $collection
* @param array $keys
* @return boolean
**/
static function ensureIndex($collection, $keys, $options = array()) {
$col = self::getCollection($collection);
return $col->ensureIndex($keys, $options);
}
/**
* Ensure a unique index
*
* @param string $collection
* @param array $keys
* @return boolean
**/
static function ensureUniqueIndex($collection, $keys, $options = array()) {
$options['unique'] = true;
return self::ensureIndex($collection, $keys, $options);
}
/**
* Shortcut for MongoCollection's getIndexInfo() method
*
* @param string $collection
* @return array
**/
static function getIndexInfo($collection) {
$col = self::getCollection($collection, true);
return $col->getIndexInfo();
}
/**
* Shortcut for MongoCollection's deleteIndexes() method
*
* @param string $collection
* @return boolean
**/
static function deleteIndexes($collection) {
$col = self::getCollection($collection);
return $col->deleteIndexes();
}
}