Blame view

thread/modules/user/models/query/UserQuery.php 1.43 KB
d1f8bd40   Alexey Boroda   first commit
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
  <?php
  
  namespace thread\modules\user\models\query;
  
  use thread\app\base\models\query\ActiveQuery;
  
  /**
   * Class UserQuery
   *
   * @package thread\modules\user\models\query
   * @author FilamentV <vortex.filament@gmail.com>
   * @copyright (c), Thread
   */
  class UserQuery extends ActiveQuery
  {
  
      /**
       * @param $username
       * @return $this
       */
      public function username(string $username)
      {
          $modelClass = $this->modelClass;
          $this->andWhere($modelClass::tableName() . '.username = :username', [':username' => $username]);
          return $this;
      }
  
      /**
       * @param $email
       * @return $this
       */
      public function email(string $email)
      {
          $modelClass = $this->modelClass;
          $this->andWhere($modelClass::tableName() . '.email = :email', [':email' => $email]);
          return $this;
      }
  
      /**
       * @param $token
       * @return $this
       */
      public function password_reset_token(string $token)
      {
          $modelClass = $this->modelClass;
          $this->andWhere($modelClass::tableName() . '.password_reset_token = :token', [':token' => $token]);
          return $this;
      }
  
      /**
       * @param array $group_ids
       * @return $this
       */
      public function group_ids(array $group_ids)
      {
          /** @var ActiveRecord $modelClass */
          $modelClass = $this->modelClass;
          $this->andWhere(['in', $modelClass::tableName() . '.group_id', $group_ids]);
          return $this;
      }
  
  }