Skip to content

Commit 0d999a5

Browse files
committed
Merge pull request #28 from jakalofnaar/exec-query-builders
Query builders usable by Collection methods
2 parents 50ed37a + d5e689f commit 0d999a5

File tree

2 files changed

+68
-25
lines changed

2 files changed

+68
-25
lines changed

src/League/Monga/Collection.php

+37-25
Original file line numberDiff line numberDiff line change
@@ -220,21 +220,25 @@ public function listIndexes()
220220
public function remove($criteria, $options = [])
221221
{
222222
if ($criteria instanceof Closure) {
223+
$callback = $criteria;
224+
223225
// Create new Remove query
224-
$query = new Query\Remove();
226+
$criteria = new Query\Remove();
225227

226228
// Set the given options
227-
$query->setOptions($options);
229+
$criteria->setOptions($options);
228230

229231
// Execute the callback
230-
$criteria($query);
231-
232-
// Retrieve the where filter
233-
$criteria = $query->getWhere();
232+
$callback($criteria);
233+
}
234234

235+
if ($criteria instanceof Query\Remove) {
235236
// Retrieve the options, these might
236237
// have been altered in the closure.
237-
$options = $query->getOptions();
238+
$options = $criteria->getOptions();
239+
240+
// Retrieve the where filter
241+
$criteria = $criteria->getWhere();
238242
}
239243

240244
if (! is_array($criteria)) {
@@ -271,7 +275,7 @@ public function remove($criteria, $options = [])
271275
/**
272276
* Finds documents.
273277
*
274-
* @param mixed $query configuration closure, raw mongo conditions array
278+
* @param mixed $query find query, configuration closure, raw mongo conditions array
275279
* @param array $fields associative array for field exclusion/inclusion
276280
* @param boolean $findOne whether to find one or multiple
277281
*
@@ -282,17 +286,21 @@ public function find($query = [], $fields = [], $findOne = false)
282286
$postFind = false;
283287

284288
if ($query instanceof Closure) {
285-
$find = new Query\Find();
289+
$callback = $query;
290+
291+
$query = new Query\Find();
286292

287293
// set the fields to select
288-
$find->fields($fields);
289-
$find->one($findOne);
290-
$query($find);
291-
292-
$findOne = $find->getFindOne();
293-
$fields = $find->getFields();
294-
$query = $find->getWhere();
295-
$postFind = $find->getPostFindActions();
294+
$query->fields($fields);
295+
$query->one($findOne);
296+
$callback($query);
297+
}
298+
299+
if ($query instanceof Query\Find) {
300+
$findOne = $query->getFindOne();
301+
$fields = $query->getFields();
302+
$postFind = $query->getPostFindActions();
303+
$query = $query->getWhere();
296304
}
297305

298306
if (! is_array($query) || ! is_array($fields)) {
@@ -334,7 +342,7 @@ public function find($query = [], $fields = [], $findOne = false)
334342
/**
335343
* Finds a single documents.
336344
*
337-
* @param mixed $query configuration closure, raw mongo conditions array
345+
* @param mixed $query find query, configuration closure, raw mongo conditions array
338346
* @param array $fields associative array for field exclusion/inclusion
339347
*
340348
* @return array|null document array when found, null when not found
@@ -427,7 +435,7 @@ public function insert(array $data, $options = [])
427435
/**
428436
* Updates a collection
429437
*
430-
* @param mixed $values update array or callback
438+
* @param mixed $values update query, array or callback
431439
* @param mixed $query update filter
432440
* @param array $options update options
433441
*
@@ -436,13 +444,17 @@ public function insert(array $data, $options = [])
436444
public function update($values = [], $query = null, $options = [])
437445
{
438446
if ($values instanceof Closure) {
439-
$query = new Query\Update();
440-
$query->setOptions($options);
441-
$values($query);
447+
$callback = $values;
442448

443-
$options = $query->getOptions();
444-
$values = $query->getUpdate();
445-
$query = $query->getWhere();
449+
$values = new Query\Update();
450+
$values->setOptions($options);
451+
$callback($values);
452+
}
453+
454+
if ($values instanceof Query\Update) {
455+
$options = $values->getOptions();
456+
$query = $values->getWhere();
457+
$values = $values->getUpdate();
446458
}
447459

448460
if (! is_array($values) || ! is_array($options)) {

tests/CollectionTests.php

+31
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,19 @@ public function testRemoveWhereClosure()
151151
$this->assertEquals(0, $this->collection->count());
152152
}
153153

154+
public function testRemoveWithQuery()
155+
{
156+
$where = new League\Monga\Query\Remove();
157+
158+
$where->where('name', 'Frank');
159+
160+
$this->collection->getCollection()->insert(['name' => 'Frank']);
161+
$this->assertEquals(1, $this->collection->count());
162+
$result = $this->collection->remove($where);
163+
$this->assertTrue($result);
164+
$this->assertEquals(0, $this->collection->count());
165+
}
166+
154167
/**
155168
* @expectedException InvalidArgumentException
156169
*/
@@ -243,6 +256,14 @@ public function testFind()
243256
$this->assertInstanceOf('League\Monga\Cursor', $result);
244257
}
245258

259+
public function testFindWithQuery()
260+
{
261+
$query = new League\Monga\Query\Find();
262+
$result = $this->collection->find($query);
263+
264+
$this->assertInstanceOf('League\Monga\Cursor', $result);
265+
}
266+
246267
public function testFindOneEmpty()
247268
{
248269
$result = $this->collection->findOne();
@@ -371,6 +392,16 @@ public function testUpdateClosure()
371392
$this->assertTrue($result);
372393
}
373394

395+
public function testUpdateWithQuery()
396+
{
397+
$query = new League\Monga\Query\Update();
398+
399+
$query->set('name', 'changed');
400+
401+
$result = $this->collection->update($query);
402+
$this->assertTrue($result);
403+
}
404+
374405
/**
375406
* @expectedException InvalidArgumentException
376407
*/

0 commit comments

Comments
 (0)