Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Fix the issues #65 and #78 by adding FETCH_OBJ like support #79

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 32 additions & 3 deletions src/Jenssegers/Mongodb/Builder.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
use MongoDate;
use DateTime;
use Closure;
use Illuminate\Database\Query\Processors\Processor;

class Builder extends \Illuminate\Database\Query\Builder {

Expand All @@ -15,6 +16,13 @@ class Builder extends \Illuminate\Database\Query\Builder {
*/
protected $collection;

/**
* The database query post processor instance.
*
* @var \Illuminate\Database\Query\Processors\Processor
*/
protected $processor;

/**
* All of the available operators.
*
Expand All @@ -36,9 +44,10 @@ class Builder extends \Illuminate\Database\Query\Builder {
* @param Connection $connection
* @return void
*/
public function __construct(Connection $connection)
public function __construct(Connection $connection, Processor $processor = null)
{
$this->connection = $connection;
$this->processor = $processor;
}

/**
Expand Down Expand Up @@ -147,8 +156,15 @@ public function getFresh($columns = array('*'))
$this->from . '.aggregate(' . json_encode($pipeline) . ')',
array(), $this->connection->getElapsedTime($start));

//Post process the data
$result = $results['result'];
if($this->processor !== null)
{
$result = $this->processor->processSelect($this, $result);
}

// Return results
return $results['result'];
return $result;
}

// Distinct query
Expand All @@ -165,6 +181,12 @@ public function getFresh($columns = array('*'))
$this->from . '.distinct("' . $column . '", ' . json_encode($wheres) . ')',
array(), $this->connection->getElapsedTime($start));

//Post process the data
if($this->processor !== null)
{
$result = $this->processor->processSelect($this, $result);
}

return $result;
}

Expand All @@ -190,8 +212,15 @@ public function getFresh($columns = array('*'))
$this->from . '.find(' . json_encode($wheres) . ', ' . json_encode($columns) . ')',
array(), $this->connection->getElapsedTime($start));

//Post process the data
$result = iterator_to_array($cursor, false);
if($this->processor !== null)
{
$result = $this->processor->processSelect($this, $result);
}

// Return results as an array with numeric keys
return iterator_to_array($cursor, false);
return $result;
}
}

Expand Down
9 changes: 8 additions & 1 deletion src/Jenssegers/Mongodb/Connection.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php namespace Jenssegers\Mongodb;

use Jenssegers\Mongodb\Builder as QueryBuilder;
use Jenssegers\Mongodb\Query\Processors\ConvertToObjectsPostProcessor;
use MongoClient;

class Connection extends \Illuminate\Database\Connection {
Expand Down Expand Up @@ -40,6 +41,12 @@ public function __construct(array $config)

// Select database
$this->db = $this->connection->{$config['database']};

// If the ConvertApplicableObjects options is set, use the convertToObjectsPostProcessor
if(array_key_exists('convertToObjectsPostProcessor', $config) && $config['convertToObjectsPostProcessor'] == true)
{
$this->setPostProcessor(new ConvertToObjectsPostProcessor());
}
}

/**
Expand All @@ -50,7 +57,7 @@ public function __construct(array $config)
*/
public function collection($collection)
{
$query = new QueryBuilder($this);
$query = new QueryBuilder($this, $this->getPostProcessor());

return $query->from($collection);
}
Expand Down
3 changes: 2 additions & 1 deletion src/Jenssegers/Mongodb/Model.php
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,8 @@ public function belongsToMany($related, $collection = null, $foreignKey = null,
*/
protected function newBaseQueryBuilder()
{
return new QueryBuilder($this->getConnection());
$conn = $this->getConnection();
return new QueryBuilder($conn, $conn->getPostProcessor());
}

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
<?php namespace Jenssegers\Mongodb\Query\Processors;

use Illuminate\Database\Query\Builder;
use Illuminate\Database\Query\Processors\Processor;

class ConvertToObjectsPostProcessor extends Processor {

/**
* Process the results of a "select" query into objects when applicable.
* This will obviously have an impact on processing large results but will
* fix the issues described in:
*
* https://github.com/jenssegers/Laravel-MongoDB/issues/65
* https://github.com/jenssegers/Laravel-MongoDB/issues/78
*
* @param \Jenssegers\Mongodb\Builder $query
* @param array $results
* @return array
*/
public function processSelect(Builder $query, $results)
{

//Walk each result as a possible source of convertible data
foreach($results as &$resultingItem)
{
$this->recursiveTransform($resultingItem);
}

//Return the transformed results
return $results;
}

public function recursiveTransform(&$data)
{

//If the data is an array and doesn't contains only numeric keys
//Filter out keys that are not numeric, if none, abort, they are a collection of sub items, not a sub document
if(is_array($data) && count(array_filter(array_keys($data), function($item){
return !is_numeric($item);
})) > 0)
{

//Recursively process the sub items
foreach($data as &$subdata)
{
$this->recursiveTransform($subdata);
}

//Now that it is processed, convert it
$data = (Object)$data;

}
}

}