LoginController.php
6.4 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
<?php
// +----------------------------------------------------------------------
// | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
// +----------------------------------------------------------------------
// | Copyright (c) 2013-2019 http://www.thinkcmf.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: Powerless < wzxaini9@gmail.com>
// +----------------------------------------------------------------------
namespace app\user\controller;
use think\facade\Validate;
use cmf\controller\HomeBaseController;
use app\user\model\UserModel;
class LoginController extends HomeBaseController
{
/**
* 登录
*/
public function index()
{
$redirect = $this->request->param("redirect");
if (empty($redirect)) {
$redirect = $this->request->server('HTTP_REFERER');
} else {
if (strpos($redirect, '/') === 0 || strpos($redirect, 'http') === 0) {
} else {
$redirect = base64_decode($redirect);
}
}
if(!empty($redirect)){
session('login_http_referer', $redirect);
}
if (cmf_is_user_login()) { //已经登录时直接跳到首页
return redirect($this->request->root() . '/');
} else {
return $this->fetch(":login");
}
}
/**
* 登录验证提交
*/
public function doLogin()
{
if ($this->request->isPost()) {
$validate = new \think\Validate([
'captcha' => 'require',
'username' => 'require',
'password' => 'require|min:6|max:32',
]);
$validate->message([
'username.require' => '用户名不能为空',
'password.require' => '密码不能为空',
'password.max' => '密码不能超过32个字符',
'password.min' => '密码不能小于6个字符',
'captcha.require' => '验证码不能为空',
]);
$data = $this->request->post();
if (!$validate->check($data)) {
$this->error($validate->getError());
}
if (!cmf_captcha_check($data['captcha'])) {
$this->error(lang('CAPTCHA_NOT_RIGHT'));
}
$userModel = new UserModel();
$user['user_pass'] = $data['password'];
if (Validate::is($data['username'], 'email')) {
$user['user_email'] = $data['username'];
$log = $userModel->doEmail($user);
} else if (cmf_check_mobile($data['username'])) {
$user['mobile'] = $data['username'];
$log = $userModel->doMobile($user);
} else {
$user['user_login'] = $data['username'];
$log = $userModel->doName($user);
}
$session_login_http_referer = session('login_http_referer');
$redirect = empty($session_login_http_referer) ? $this->request->root() : $session_login_http_referer;
switch ($log) {
case 0:
cmf_user_action('login');
$this->success(lang('LOGIN_SUCCESS'), $redirect);
break;
case 1:
$this->error(lang('PASSWORD_NOT_RIGHT'));
break;
case 2:
$this->error('账户不存在');
break;
case 3:
$this->error('账号被禁止访问系统');
break;
default :
$this->error('未受理的请求');
}
} else {
$this->error("请求错误");
}
}
/**
* 找回密码
*/
public function findPassword()
{
return $this->fetch('/find_password');
}
/**
* 用户密码重置
*/
public function passwordReset()
{
if ($this->request->isPost()) {
$validate = new \think\Validate([
'captcha' => 'require',
'verification_code' => 'require',
'password' => 'require|min:6|max:32',
]);
$validate->message([
'verification_code.require' => '验证码不能为空',
'password.require' => '密码不能为空',
'password.max' => '密码不能超过32个字符',
'password.min' => '密码不能小于6个字符',
'captcha.require' => '验证码不能为空',
]);
$data = $this->request->post();
if (!$validate->check($data)) {
$this->error($validate->getError());
}
$captchaId = empty($data['_captcha_id']) ? '' : $data['_captcha_id'];
if (!cmf_captcha_check($data['captcha'], $captchaId)) {
$this->error('验证码错误');
}
$errMsg = cmf_check_verification_code($data['username'], $data['verification_code']);
if (!empty($errMsg)) {
$this->error($errMsg);
}
$userModel = new UserModel();
if ($validate::is($data['username'], 'email')) {
$log = $userModel->emailPasswordReset($data['username'], $data['password']);
} else if (cmf_check_mobile($data['username'])) {
$user['mobile'] = $data['username'];
$log = $userModel->mobilePasswordReset($data['username'], $data['password']);
} else {
$log = 2;
}
switch ($log) {
case 0:
$this->success('密码重置成功', cmf_url('user/Profile/center'));
break;
case 1:
$this->error("您的账户尚未注册");
break;
case 2:
$this->error("您输入的账号格式错误");
break;
default :
$this->error('未受理的请求');
}
} else {
$this->error("请求错误");
}
}
}