| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2013-present 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();
- $validate->rule([
- '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();
- $validate->rule([
- '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("请求错误");
- }
- }
- }
|