4253cbec
root
first commit
|
1
|
<?php
|
4253cbec
root
first commit
|
2
3
4
5
6
7
|
namespace common\models;
use Yii;
use yii\base\Model;
/**
|
eaf6988b
Administrator
big commti
|
8
|
* Login form
|
4253cbec
root
first commit
|
9
10
11
|
*/
class LoginForm extends Model
{
|
4253cbec
root
first commit
|
12
|
public $password;
|
eaf6988b
Administrator
big commti
|
13
14
|
public $rememberMe = true;
public $email;
|
4253cbec
root
first commit
|
15
|
|
eaf6988b
Administrator
big commti
|
16
|
private $_user;
|
4253cbec
root
first commit
|
17
18
19
|
/**
|
eaf6988b
Administrator
big commti
|
20
|
* @inheritdoc
|
4253cbec
root
first commit
|
21
22
23
24
25
|
*/
public function rules()
{
return [
// username and password are both required
|
eaf6988b
Administrator
big commti
|
26
|
[['email', 'password'], 'required'],
|
a1a60fa5
Administrator
big commti
|
27
|
[['email'], 'email'],
|
4253cbec
root
first commit
|
28
29
30
31
32
33
34
|
// rememberMe must be a boolean value
['rememberMe', 'boolean'],
// password is validated by validatePassword()
['password', 'validatePassword'],
];
}
|
4253cbec
root
first commit
|
35
36
37
38
39
40
41
42
43
44
45
|
/**
* 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();
|
4253cbec
root
first commit
|
46
47
48
49
50
51
52
53
|
if (!$user || !$user->validatePassword($this->password)) {
$this->addError($attribute, 'Incorrect username or password.');
}
}
}
/**
* Logs in a user using the provided username and password.
|
eaf6988b
Administrator
big commti
|
54
|
*
|
4253cbec
root
first commit
|
55
56
57
58
59
|
* @return boolean whether the user is logged in successfully
*/
public function login()
{
if ($this->validate()) {
|
a1a60fa5
Administrator
big commti
|
60
|
|
eaf6988b
Administrator
big commti
|
61
|
return Yii::$app->user->login($this->getUser(), $this->rememberMe ? 3600 * 24 * 30 : 0);
|
4253cbec
root
first commit
|
62
63
64
65
66
67
68
69
70
71
|
} else {
return false;
}
}
/**
* Finds user by [[username]]
*
* @return User|null
*/
|
eaf6988b
Administrator
big commti
|
72
|
protected function getUser()
|
4253cbec
root
first commit
|
73
|
{
|
eaf6988b
Administrator
big commti
|
74
75
|
if ($this->_user === null) {
$this->_user = Customer::findByEmail($this->email);
|
4253cbec
root
first commit
|
76
77
78
79
|
}
return $this->_user;
}
|
eaf6988b
Administrator
big commti
|
80
81
82
83
84
85
86
87
88
89
90
91
|
/**
* @inheritdoc
*/
public function attributeLabels()
{
return [
'rememberMe' => Yii::t('app', 'rememberMe'),
];
}
|
4253cbec
root
first commit
|
92
|
}
|