加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 大数据 > 正文

Laravel重写用户登录简单示例

发布时间:2020-12-14 20:01:47 所属栏目:大数据 来源:网络整理
导读:本篇章节讲解Laravel重写用户登录的方法。供大家参考研究具体如下: middleware('guest:admin',['except' => 'logout']); } protected function validator(array $data) { return Validator::make($data,[ 'username' => 'required|max:255','emai

本篇章节讲解Laravel重写用户登录的方法。分享给大家供大家参考,具体如下:

middleware('guest:admin',['except' => 'logout']); } protected function validator(array $data) { return Validator::make($data,[ 'username' => 'required|max:255','email' => 'required|email|max:255|unique:admin_users','password' => 'required|confirmed|min:6',]); } /** * @param Request $request */ protected function validateLogin(Request $request) { $this->validate($request,[ $this->loginUsername() => 'required','password' => 'required','captcha' => 'required|captcha' ],[ 'email.required' => '邮箱必须','password.required' => '密码必须','captcha.captcha' => '验证码错误','captcha.required' => '验证码必须',]); } /** * 重写登录 * @param Request $request * @return IlluminateHttpRedirectResponse|IlluminateHttpResponse */ public function login(Request $request) { $this->validateLogin($request); // If the class is using the ThrottlesLogins trait,we can automatically throttle // the login attempts for this application. We'll key this by the username and // the IP address of the client making these requests into this application. $throttles = $this->isUsingThrottlesLoginsTrait(); //dd($this->hasTooManyLoginAttempts($request)); if ($throttles && $lockedOut = $this->hasTooManyLoginAttempts($request)) { $this->fireLockoutEvent($request); //日志记录 $this->login_logs(['email'=>$request->input('email'),'login_ip'=>$request->ip(),'login_result'=>0,'comments'=>'限制登录10分钟']); return $this->sendLockoutResponse($request); } $credentials = $this->getCredentials($request); if (Auth::guard($this->getGuard())->attempt($credentials,$request->has('remember'))) { //日志记录 $this->login_logs(['email'=>$request->input('email'),'login_result'=>1,'comments'=>'登录成功']); return $this->handleUserWasAuthenticated($request,$throttles); } // If the login attempt was unsuccessful we will increment the number of attempts // to login and redirect the user back to the login form. Of course,when this // user surpasses their maximum number of attempts they will get locked out. if ($throttles && ! $lockedOut) { //日志记录 $this->login_logs(['email'=>$request->input('email'),'comments'=>'登录失败']); $this->incrementLoginAttempts($request); } return $this->sendFailedLoginResponse($request); } /** * 登录记录 * @param $data */ private function login_logs ($data) { LoginLog::create($data); } }

直接重写login方法,其实我是复制了原方法然后加入了一些自己的东西。

主要的一些修改就是:

更多关于Laravel相关内容感兴趣的读者可查看本站专题:《》、《》、《》、《》、《》、《》、《》及《》

希望本文所述对大家基于Laravel框架的PHP程序设计有所帮助。

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读