Blame view

common/models/UserLoginForm.php 1.83 KB
27b0cb06   Administrator   VItaliy 02.12.2015
1
2
3
4
5
  <?php
  namespace common\models;
  
  use Yii;
  use yii\base\Model;
a9976bee   Administrator   VItaliy 03.12.2015
6
  use yii\web\IdentityInterface;
27b0cb06   Administrator   VItaliy 02.12.2015
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
  /**
   * Login form
   */
  class UserLoginForm extends Model
  {
      public $email;
      public $pass;
      public $rememberMe = true;
  
      private $_user;
  
  
      /**
       * @inheritdoc
       */
      public function rules()
      {
          return [
              // email and password are both required
              [['email', 'pass'], 'required'],
              // rememberMe must be a boolean value
              ['rememberMe', 'boolean'],
a9976bee   Administrator   VItaliy 03.12.2015
29
30
              // password is validated by validatePassword()
              ['pass', 'validatePassword'],
27b0cb06   Administrator   VItaliy 02.12.2015
31
32
33
34
35
36
37
38
39
40
41
42
43
44
          ];
      }
  
      /**
       * Validates the password.
       * This method serves as the inline validation for password.
       *
       * @param string $attribute the attribute currently being validated
       * @param array $params the additional name-value pairs given in the rule
       */
      public function validatePassword($attribute, $params)
      {
          if (!$this->hasErrors()) {
              $user = $this->getUser();
a9976bee   Administrator   VItaliy 03.12.2015
45
46
              if (!$user || $user->pass != $this->pass) {
                  $this->addError($attribute, 'Неправильный логин или пароль');
27b0cb06   Administrator   VItaliy 02.12.2015
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
              }
          }
      }
  
      /**
       * Logs in a user using the provided email and password.
       *
       * @return boolean whether the user is logged in successfully
       */
      public function login()
      {
  
          if ($this->validate()) {
              return Yii::$app->user->login($this->getUser(), $this->rememberMe ? 3600 * 24 * 30 : 0);
          } else {
              return false;
          }
a9976bee   Administrator   VItaliy 03.12.2015
64
  
27b0cb06   Administrator   VItaliy 02.12.2015
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
      }
  
      /**
       * Finds user by [[email]]
       *
       * @return User|null
       */
      protected function getUser()
      {
          if ($this->_user === null) {
              $this->_user = Accounts::findByEmail($this->email);
          }
  
          return $this->_user;
      }
  }