You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					344 lines
				
				10 KiB
			
		
		
			
		
	
	
					344 lines
				
				10 KiB
			| 
								 
											12 years ago
										 
									 | 
							
								<?php
							 | 
						||
| 
								 | 
							
								/**
							 | 
						||
| 
								 | 
							
								 * @link http://www.yiiframework.com/
							 | 
						||
| 
								 | 
							
								 * @copyright Copyright (c) 2008 Yii Software LLC
							 | 
						||
| 
								 | 
							
								 * @license http://www.yiiframework.com/license/
							 | 
						||
| 
								 | 
							
								 */
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
								namespace yii\mongodb;
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
								
							 | 
						||
| 
								 | 
							
								use yii\base\Component;
							 | 
						||
| 
								 | 
							
								use yii\db\QueryInterface;
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
								use yii\db\QueryTrait;
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
								use yii\helpers\Json;
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
								use Yii;
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
								
							 | 
						||
| 
								 | 
							
								/**
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
								 * Query represents Mongo "find" operation.
							 | 
						||
| 
								 | 
							
								 *
							 | 
						||
| 
								 | 
							
								 * Query provides a set of methods to facilitate the specification of "find" command.
							 | 
						||
| 
								 | 
							
								 * These methods can be chained together.
							 | 
						||
| 
								 | 
							
								 *
							 | 
						||
| 
								 | 
							
								 * For example,
							 | 
						||
| 
								 | 
							
								 *
							 | 
						||
| 
								 | 
							
								 * ~~~
							 | 
						||
| 
								 | 
							
								 * $query = new Query;
							 | 
						||
| 
								 | 
							
								 * // compose the query
							 | 
						||
| 
								 | 
							
								 * $query->select(['name', 'status'])
							 | 
						||
| 
								 | 
							
								 *     ->from('customer')
							 | 
						||
| 
								 | 
							
								 *     ->limit(10);
							 | 
						||
| 
								 | 
							
								 * // execute the query
							 | 
						||
| 
								 | 
							
								 * $rows = $query->all();
							 | 
						||
| 
								 | 
							
								 * ~~~
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
								 *
							 | 
						||
| 
								 | 
							
								 * @author Paul Klimov <klimov.paul@gmail.com>
							 | 
						||
| 
								 | 
							
								 * @since 2.0
							 | 
						||
| 
								 | 
							
								 */
							 | 
						||
| 
								 | 
							
								class Query extends Component implements QueryInterface
							 | 
						||
| 
								 | 
							
								{
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									use QueryTrait;
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
								
							 | 
						||
| 
								 | 
							
									/**
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * @var array the fields of the results to return. For example, `['name', 'group_id']`.
							 | 
						||
| 
								 | 
							
									 * The "_id" field is always returned. If not set, if means selecting all columns.
							 | 
						||
| 
								 | 
							
									 * @see select()
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 */
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									public $select = [];
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									/**
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * @var string|array the collection to be selected from. If string considered as  the name of the collection
							 | 
						||
| 
								 | 
							
									 * inside the default database. If array - first element considered as the name of the database,
							 | 
						||
| 
								 | 
							
									 * second - as name of collection inside that database
							 | 
						||
| 
								 | 
							
									 * @see from()
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 */
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									public $from;
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
								
							 | 
						||
| 
								 | 
							
									/**
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * Returns the Mongo collection for this query.
							 | 
						||
| 
								 | 
							
									 * @param Connection $db Mongo connection.
							 | 
						||
| 
								 | 
							
									 * @return Collection collection instance.
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 */
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									public function getCollection($db = null)
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									{
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
										if ($db === null) {
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
											$db = Yii::$app->getComponent('mongodb');
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
										}
							 | 
						||
| 
								 | 
							
										return $db->getCollection($this->from);
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
									/**
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * Sets the list of fields of the results to return.
							 | 
						||
| 
								 | 
							
									 * @param array $fields fields of the results to return.
							 | 
						||
| 
								 | 
							
									 * @return static the query object itself.
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 */
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									public function select(array $fields)
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									{
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
										$this->select = $fields;
							 | 
						||
| 
								 | 
							
										return $this;
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
									/**
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * Sets the collection to be selected from.
							 | 
						||
| 
								 | 
							
									 * @param string|array the collection to be selected from. If string considered as  the name of the collection
							 | 
						||
| 
								 | 
							
									 * inside the default database. If array - first element considered as the name of the database,
							 | 
						||
| 
								 | 
							
									 * second - as name of collection inside that database
							 | 
						||
| 
								 | 
							
									 * @return static the query object itself.
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 */
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									public function from($collection)
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									{
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
										$this->from = $collection;
							 | 
						||
| 
								 | 
							
										return $this;
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
									/**
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * Builds the Mongo cursor for this query.
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * @param Connection $db the database connection used to execute the query.
							 | 
						||
| 
								 | 
							
									 * @return \MongoCursor mongo cursor instance.
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 */
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									protected function buildCursor($db = null)
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									{
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
										if ($this->where === null) {
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
											$where = [];
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
										} else {
							 | 
						||
| 
								 | 
							
											$where = $this->where;
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
										}
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
										$selectFields = [];
							 | 
						||
| 
								 | 
							
										if (!empty($this->select)) {
							 | 
						||
| 
								 | 
							
											foreach ($this->select as $fieldName) {
							 | 
						||
| 
								 | 
							
												$selectFields[$fieldName] = true;
							 | 
						||
| 
								 | 
							
											}
							 | 
						||
| 
								 | 
							
										}
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
										$cursor = $this->getCollection($db)->find($where, $selectFields);
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
										if (!empty($this->orderBy)) {
							 | 
						||
| 
								 | 
							
											$sort = [];
							 | 
						||
| 
								 | 
							
											foreach ($this->orderBy as $fieldName => $sortOrder) {
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
												$sort[$fieldName] = $sortOrder === SORT_DESC ? \MongoCollection::DESCENDING : \MongoCollection::ASCENDING;
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
											}
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
											$cursor->sort($sort);
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
										}
							 | 
						||
| 
								 | 
							
										$cursor->limit($this->limit);
							 | 
						||
| 
								 | 
							
										$cursor->skip($this->offset);
							 | 
						||
| 
								 | 
							
										return $cursor;
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
									/**
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * Fetches rows from the given Mongo cursor.
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * @param \MongoCursor $cursor Mongo cursor instance to fetch data from.
							 | 
						||
| 
								 | 
							
									 * @param boolean $all whether to fetch all rows or only first one.
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * @param string|callable $indexBy the column name or PHP callback,
							 | 
						||
| 
								 | 
							
									 * by which the query results should be indexed by.
							 | 
						||
| 
								 | 
							
									 * @throws Exception on failure.
							 | 
						||
| 
								 | 
							
									 * @return array|boolean result.
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 */
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									protected function fetchRows($cursor, $all = true, $indexBy = null)
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									{
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
										$token = 'find(' . Json::encode($cursor->info()) . ')';
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
										Yii::info($token, __METHOD__);
							 | 
						||
| 
								 | 
							
										try {
							 | 
						||
| 
								 | 
							
											Yii::beginProfile($token, __METHOD__);
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
											$result = $this->fetchRowsInternal($cursor, $all, $indexBy);
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
											Yii::endProfile($token, __METHOD__);
							 | 
						||
| 
								 | 
							
											return $result;
							 | 
						||
| 
								 | 
							
										} catch (\Exception $e) {
							 | 
						||
| 
								 | 
							
											Yii::endProfile($token, __METHOD__);
							 | 
						||
| 
								 | 
							
											throw new Exception($e->getMessage(), (int)$e->getCode(), $e);
							 | 
						||
| 
								 | 
							
										}
							 | 
						||
| 
								 | 
							
									}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
									/**
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * @param \MongoCursor $cursor Mongo cursor instance to fetch data from.
							 | 
						||
| 
								 | 
							
									 * @param boolean $all whether to fetch all rows or only first one.
							 | 
						||
| 
								 | 
							
									 * @param string|callable $indexBy value to index by.
							 | 
						||
| 
								 | 
							
									 * @return array|boolean result.
							 | 
						||
| 
								 | 
							
									 * @see Query::fetchRows()
							 | 
						||
| 
								 | 
							
									 */
							 | 
						||
| 
								 | 
							
									protected function fetchRowsInternal($cursor, $all, $indexBy)
							 | 
						||
| 
								 | 
							
									{
							 | 
						||
| 
								 | 
							
										$result = [];
							 | 
						||
| 
								 | 
							
										if ($all) {
							 | 
						||
| 
								 | 
							
											foreach ($cursor as $row) {
							 | 
						||
| 
								 | 
							
												if ($indexBy !== null) {
							 | 
						||
| 
								 | 
							
													if (is_string($indexBy)) {
							 | 
						||
| 
								 | 
							
														$key = $row[$indexBy];
							 | 
						||
| 
								 | 
							
													} else {
							 | 
						||
| 
								 | 
							
														$key = call_user_func($indexBy, $row);
							 | 
						||
| 
								 | 
							
													}
							 | 
						||
| 
								 | 
							
													$result[$key] = $row;
							 | 
						||
| 
								 | 
							
												} else {
							 | 
						||
| 
								 | 
							
													$result[] = $row;
							 | 
						||
| 
								 | 
							
												}
							 | 
						||
| 
								 | 
							
											}
							 | 
						||
| 
								 | 
							
										} else {
							 | 
						||
| 
								 | 
							
											if ($cursor->hasNext()) {
							 | 
						||
| 
								 | 
							
												$result = $cursor->getNext();
							 | 
						||
| 
								 | 
							
											} else {
							 | 
						||
| 
								 | 
							
												$result = false;
							 | 
						||
| 
								 | 
							
											}
							 | 
						||
| 
								 | 
							
										}
							 | 
						||
| 
								 | 
							
										return $result;
							 | 
						||
| 
								 | 
							
									}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
									/**
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * Executes the query and returns all results as an array.
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * @param Connection $db the Mongo connection used to execute the query.
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * If this parameter is not given, the `mongodb` application component will be used.
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * @return array the query results. If the query results in nothing, an empty array will be returned.
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 */
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									public function all($db = null)
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									{
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
										$cursor = $this->buildCursor($db);
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
										return $this->fetchRows($cursor, true, $this->indexBy);
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
									/**
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * Executes the query and returns a single row of result.
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * @param Connection $db the Mongo connection used to execute the query.
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * If this parameter is not given, the `mongodb` application component will be used.
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * @return array|boolean the first row (in terms of an array) of the query result. False is returned if the query
							 | 
						||
| 
								 | 
							
									 * results in nothing.
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 */
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									public function one($db = null)
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									{
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
										$cursor = $this->buildCursor($db);
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
										return $this->fetchRows($cursor, false);
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
									/**
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * Returns the number of records.
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * @param string $q kept to match [[QueryInterface]], its value is ignored.
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * @param Connection $db the Mongo connection used to execute the query.
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * If this parameter is not given, the `mongodb` application component will be used.
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * @return integer number of records
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * @throws Exception on failure.
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 */
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									public function count($q = '*', $db = null)
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									{
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
										$cursor = $this->buildCursor($db);
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
										$token = 'find.count(' . Json::encode($cursor->info()) . ')';
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
										Yii::info($token, __METHOD__);
							 | 
						||
| 
								 | 
							
										try {
							 | 
						||
| 
								 | 
							
											Yii::beginProfile($token, __METHOD__);
							 | 
						||
| 
								 | 
							
											$result = $cursor->count();
							 | 
						||
| 
								 | 
							
											Yii::endProfile($token, __METHOD__);
							 | 
						||
| 
								 | 
							
											return $result;
							 | 
						||
| 
								 | 
							
										} catch (\Exception $e) {
							 | 
						||
| 
								 | 
							
											Yii::endProfile($token, __METHOD__);
							 | 
						||
| 
								 | 
							
											throw new Exception($e->getMessage(), (int)$e->getCode(), $e);
							 | 
						||
| 
								 | 
							
										}
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
									/**
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * Returns a value indicating whether the query result contains any row of data.
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * @param Connection $db the Mongo connection used to execute the query.
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * If this parameter is not given, the `mongodb` application component will be used.
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * @return boolean whether the query result contains any row of data.
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 */
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									public function exists($db = null)
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									{
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
										return $this->one($db) !== null;
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									}
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
								
							 | 
						||
| 
								 | 
							
									/**
							 | 
						||
| 
								 | 
							
									 * Returns the sum of the specified column values.
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * @param string $q the column name.
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * Make sure you properly quote column names in the expression.
							 | 
						||
| 
								 | 
							
									 * @param Connection $db the Mongo connection used to execute the query.
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * If this parameter is not given, the `mongodb` application component will be used.
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * @return integer the sum of the specified column values
							 | 
						||
| 
								 | 
							
									 */
							 | 
						||
| 
								 | 
							
									public function sum($q, $db = null)
							 | 
						||
| 
								 | 
							
									{
							 | 
						||
| 
								 | 
							
										return $this->aggregate($q, 'sum', $db);
							 | 
						||
| 
								 | 
							
									}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
									/**
							 | 
						||
| 
								 | 
							
									 * Returns the average of the specified column values.
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * @param string $q the column name.
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * Make sure you properly quote column names in the expression.
							 | 
						||
| 
								 | 
							
									 * @param Connection $db the Mongo connection used to execute the query.
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * If this parameter is not given, the `mongodb` application component will be used.
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * @return integer the average of the specified column values.
							 | 
						||
| 
								 | 
							
									 */
							 | 
						||
| 
								 | 
							
									public function average($q, $db = null)
							 | 
						||
| 
								 | 
							
									{
							 | 
						||
| 
								 | 
							
										return $this->aggregate($q, 'avg', $db);
							 | 
						||
| 
								 | 
							
									}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
									/**
							 | 
						||
| 
								 | 
							
									 * Returns the minimum of the specified column values.
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * @param string $q the column name.
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * Make sure you properly quote column names in the expression.
							 | 
						||
| 
								 | 
							
									 * @param Connection $db the database connection used to generate the SQL statement.
							 | 
						||
| 
								 | 
							
									 * If this parameter is not given, the `db` application component will be used.
							 | 
						||
| 
								 | 
							
									 * @return integer the minimum of the specified column values.
							 | 
						||
| 
								 | 
							
									 */
							 | 
						||
| 
								 | 
							
									public function min($q, $db = null)
							 | 
						||
| 
								 | 
							
									{
							 | 
						||
| 
								 | 
							
										return $this->aggregate($q, 'min', $db);
							 | 
						||
| 
								 | 
							
									}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
									/**
							 | 
						||
| 
								 | 
							
									 * Returns the maximum of the specified column values.
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * @param string $q the column name.
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * Make sure you properly quote column names in the expression.
							 | 
						||
| 
								 | 
							
									 * @param Connection $db the Mongo connection used to execute the query.
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * If this parameter is not given, the `mongodb` application component will be used.
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * @return integer the maximum of the specified column values.
							 | 
						||
| 
								 | 
							
									 */
							 | 
						||
| 
								 | 
							
									public function max($q, $db = null)
							 | 
						||
| 
								 | 
							
									{
							 | 
						||
| 
								 | 
							
										return $this->aggregate($q, 'max', $db);
							 | 
						||
| 
								 | 
							
									}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
									/**
							 | 
						||
| 
								 | 
							
									 * Performs the aggregation for the given column.
							 | 
						||
| 
								 | 
							
									 * @param string $column column name.
							 | 
						||
| 
								 | 
							
									 * @param string $operator aggregation operator.
							 | 
						||
| 
								 | 
							
									 * @param Connection $db the database connection used to execute the query.
							 | 
						||
| 
								 | 
							
									 * @return integer aggregation result.
							 | 
						||
| 
								 | 
							
									 */
							 | 
						||
| 
								 | 
							
									protected function aggregate($column, $operator, $db)
							 | 
						||
| 
								 | 
							
									{
							 | 
						||
| 
								 | 
							
										$collection = $this->getCollection($db);
							 | 
						||
| 
								 | 
							
										$pipelines = [];
							 | 
						||
| 
								 | 
							
										if ($this->where !== null) {
							 | 
						||
| 
								 | 
							
											$pipelines[] = ['$match' => $collection->buildCondition($this->where)];
							 | 
						||
| 
								 | 
							
										}
							 | 
						||
| 
								 | 
							
										$pipelines[] = [
							 | 
						||
| 
								 | 
							
											'$group' => [
							 | 
						||
| 
								 | 
							
												'_id' => '1',
							 | 
						||
| 
								 | 
							
												'total' => [
							 | 
						||
| 
								 | 
							
													'$' . $operator => '$' . $column
							 | 
						||
| 
								 | 
							
												],
							 | 
						||
| 
								 | 
							
											]
							 | 
						||
| 
								 | 
							
										];
							 | 
						||
| 
								 | 
							
										$result = $collection->aggregate($pipelines);
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
										if (array_key_exists(0, $result)) {
							 | 
						||
| 
								 | 
							
											return $result[0]['total'];
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
										} else {
							 | 
						||
| 
								 | 
							
											return 0;
							 | 
						||
| 
								 | 
							
										}
							 | 
						||
| 
								 | 
							
									}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
									/**
							 | 
						||
| 
								 | 
							
									 * Returns a list of distinct values for the given column across a collection.
							 | 
						||
| 
								 | 
							
									 * @param string $q column to use.
							 | 
						||
| 
								 | 
							
									 * @param Connection $db the Mongo connection used to execute the query.
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * If this parameter is not given, the `mongodb` application component will be used.
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
									 * @return array array of distinct values
							 | 
						||
| 
								 | 
							
									 */
							 | 
						||
| 
								 | 
							
									public function distinct($q, $db = null)
							 | 
						||
| 
								 | 
							
									{
							 | 
						||
| 
								 | 
							
										$collection = $this->getCollection($db);
							 | 
						||
| 
								 | 
							
										if ($this->where !== null) {
							 | 
						||
| 
								 | 
							
											$condition = $this->where;
							 | 
						||
| 
								 | 
							
										} else {
							 | 
						||
| 
								 | 
							
											$condition = [];
							 | 
						||
| 
								 | 
							
										}
							 | 
						||
| 
								 | 
							
										$result = $collection->distinct($q, $condition);
							 | 
						||
| 
								 | 
							
										if ($result === false) {
							 | 
						||
| 
								 | 
							
											return [];
							 | 
						||
| 
								 | 
							
										} else {
							 | 
						||
| 
								 | 
							
											return $result;
							 | 
						||
| 
								 | 
							
										}
							 | 
						||
| 
								 | 
							
									}
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
								}
							 |