Commit b1195760 by Alexander Makarov

Fixes #2016: removed ability to declare scopes in ActiveRecord leaving it to…

Fixes #2016: removed ability to declare scopes in ActiveRecord leaving it to ActiveQuery. Changed documentation accordingly.
parent 462c5003
...@@ -545,33 +545,61 @@ Finally when calling [[delete()]] to delete an ActiveRecord, we will have the fo ...@@ -545,33 +545,61 @@ Finally when calling [[delete()]] to delete an ActiveRecord, we will have the fo
3. [[afterDelete()]]: will trigger an [[EVENT_AFTER_DELETE]] event 3. [[afterDelete()]]: will trigger an [[EVENT_AFTER_DELETE]] event
Scopes Custom scopes
------ -------------
A scope is a method that customizes a given [[ActiveQuery]] object. Scope methods are static and are defined When [[find()]] or [[findBySql()]] Active Record method is being called without parameters it returns an [[ActiveQuery]]
in the ActiveRecord classes. They can be invoked through the [[ActiveQuery]] object that is created instance. This object holds all the parameters and conditions for a future query and also allows you to customize these
via [[find()]] or [[findBySql()]]. The following is an example: using a set of methods that are called scopes. By deafault there is a good set of such methods some of which we've
already used above: `where`, `orderBy`, `limit` etc.
In many cases it is convenient to wrap extra conditions into custom scope methods. In order to do so you need two things.
First is creating a custom query class for your model. For example, a `Comment` may have a `CommentQuery`:
```php ```php
class Comment extends \yii\db\ActiveRecord namespace app\models;
import yii\db\ActiveQuery;
class CommentQuery extends ActiveQuery
{ {
// ... public function active($state = true)
{
$this->andWhere(['active' => $state]);
return $this;
}
}
```
/** Important points are:
* @param ActiveQuery $query
*/ 1. Class should extend from `yii\db\ActiveQuery` (or another `ActiveQuery` such as `yii\mongodb\ActiveQuery`).
public static function active($query) 2. A method should be `public` and should return `$this` in order to allow method chaining. It may accept parameters.
3. Check `ActiveQuery` methods that are very useful for modifying query conditions.
The second step is to use `CommentQuery` instead of regular `ActiveQuery` for `Comment` model:
```
namespace app\models;
use yii\db\ActiveRecord;
class Comment extends ActiveRecord
{
public static function createQuery()
{ {
$query->andWhere('status = 1'); return new CommentQuery(['modelClass' => get_called_class()]);
} }
} }
```
That's it. Now you can use your custom scope methods:
```php
$comments = Comment::find()->active()->all(); $comments = Comment::find()->active()->all();
$inactiveComments = Comment::find()->active(false)->all();
``` ```
In the above, the `active()` method is defined in `Comment` while we are calling it
through `ActiveQuery` returned by `Comment::find()`.
You can also use scopes when defining relations. For example, You can also use scopes when defining relations. For example,
```php ```php
...@@ -595,30 +623,44 @@ $posts = Post::find()->with([ ...@@ -595,30 +623,44 @@ $posts = Post::find()->with([
])->all(); ])->all();
``` ```
Scopes can be parameterized. For example, we can define and use the following `olderThan` scope: ### Making it IDE-friendly
In order to make your IDE autocomplete happy you can override return types for `one` and `all` methods like
the following:
```php ```php
class Customer extends \yii\db\ActiveRecord namespace app\models;
import yii\db\ActiveQuery;
class CommentQuery extends ActiveQuery
{ {
// ... /**
* Executes query and returns all results as an array.
* @param Connection $db the DB connection used to create the DB command.
* If null, the DB connection returned by [[modelClass]] will be used.
* @return array|Comment[] the query results. If the query results in nothing, an empty array will be returned.
*/
public function all($db = null)
{
parent::all($db);
}
/** /**
* @param ActiveQuery $query * Executes query and returns a single row of result.
* @param integer $age * @param Connection $db the DB connection used to create the DB command.
* If null, the DB connection returned by [[modelClass]] will be used.
* @return Comment|array|null a single row of query result. Depending on the setting of [[asArray]],
* the query result may be either an array or an ActiveRecord object. Null will be returned
* if the query results in nothing.
*/ */
public static function olderThan($query, $age = 30) public function one($db = null)
{ {
$query->andWhere('age > :age', [':age' => $age]); parent::one($db);
} }
} }
$customers = Customer::find()->olderThan(50)->all();
``` ```
The parameters should follow after the `$query` parameter when defining the scope method, and they
can take default values like shown above.
Transactional operations Transactional operations
------------------------ ------------------------
......
...@@ -60,7 +60,7 @@ class ActiveQuery extends Query implements ActiveQueryInterface ...@@ -60,7 +60,7 @@ class ActiveQuery extends Query implements ActiveQueryInterface
* Executes query and returns all results as an array. * Executes query and returns all results as an array.
* @param Connection $db the DB connection used to create the DB command. * @param Connection $db the DB connection used to create the DB command.
* If null, the DB connection returned by [[modelClass]] will be used. * If null, the DB connection returned by [[modelClass]] will be used.
* @return array the query results. If the query results in nothing, an empty array will be returned. * @return array|ActiveRecord[] the query results. If the query results in nothing, an empty array will be returned.
*/ */
public function all($db = null) public function all($db = null)
{ {
......
...@@ -31,32 +31,6 @@ trait ActiveQueryTrait ...@@ -31,32 +31,6 @@ trait ActiveQueryTrait
*/ */
public $asArray; public $asArray;
/**
* PHP magic method.
* This method allows calling static method defined in [[modelClass]] via this query object.
* It is mainly implemented for supporting the feature of scope.
*
* @param string $name the method name to be called
* @param array $params the parameters passed to the method
* @throws \yii\base\InvalidCallException
* @return mixed the method return result
*/
public function __call($name, $params)
{
if (method_exists($this->modelClass, $name)) {
$method = new \ReflectionMethod($this->modelClass, $name);
if (!$method->isStatic() || !$method->isPublic()) {
throw new InvalidCallException("The scope method \"{$this->modelClass}::$name()\" must be public and static.");
}
array_unshift($params, $this);
call_user_func_array([$this->modelClass, $name], $params);
return $this;
} else {
return parent::__call($name, $params);
}
}
/** /**
* Sets the [[asArray]] property. * Sets the [[asArray]] property.
* @param boolean $value whether to return the query results in terms of arrays instead of Active Records. * @param boolean $value whether to return the query results in terms of arrays instead of Active Records.
...@@ -175,7 +149,7 @@ trait ActiveQueryTrait ...@@ -175,7 +149,7 @@ trait ActiveQueryTrait
* Finds records corresponding to one or multiple relations and populates them into the primary models. * Finds records corresponding to one or multiple relations and populates them into the primary models.
* @param array $with a list of relations that this query should be performed with. Please * @param array $with a list of relations that this query should be performed with. Please
* refer to [[with()]] for details about specifying this parameter. * refer to [[with()]] for details about specifying this parameter.
* @param array $models the primary models (can be either AR instances or arrays) * @param array|ActiveRecord[] $models the primary models (can be either AR instances or arrays)
*/ */
public function findWith($with, &$models) public function findWith($with, &$models)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment