Laravel重寫用戶登錄簡(jiǎn)單示例
本文實(shí)例講述了Laravel重寫用戶登錄的方法。分享給大家供大家參考,具體如下:
class AuthController extends Controller { // use ThrottlesLogins, AuthenticatesAndRegistersUsers; protected $redirectTo = 'admin/index'; protected $loginView = 'admin/login'; protected $guard = 'admin'; protected $redirectAfterLogout = 'admin/login'; protected $maxLoginAttempts = 5; //每分鐘最大嘗試登錄次數(shù) protected $lockoutTime = 600; //登錄鎖定時(shí)間 function __construct() { $this->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' => '驗(yàn)證碼錯(cuò)誤', 'captcha.required' => '驗(yàn)證碼必須', ]); } /** * 重寫登錄 * @param Request $request * @return \Illuminate\Http\RedirectResponse|\Illuminate\Http\Response */ 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_ip'=>$request->ip(), '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'), 'login_ip'=>$request->ip(), 'login_result'=>0, 'comments'=>'登錄失敗']); $this->incrementLoginAttempts($request); } return $this->sendFailedLoginResponse($request); } /** * 登錄記錄 * @param $data */ private function login_logs ($data) { LoginLog::create($data); } }
直接重寫login方法,其實(shí)我是復(fù)制了原方法然后加入了一些自己的東西。
主要的一些修改就是:
1. 加入驗(yàn)證碼(自定義了驗(yàn)證信息及提示)。
2. 后臺(tái)登錄頻率的限制。
3. 登錄日志記錄。
更多關(guān)于Laravel相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《Laravel框架入門與進(jìn)階教程》、《php優(yōu)秀開發(fā)框架總結(jié)》、《smarty模板入門基礎(chǔ)教程》、《php日期與時(shí)間用法總結(jié)》、《php面向?qū)ο蟪绦蛟O(shè)計(jì)入門教程》、《php字符串(string)用法總結(jié)》、《php+mysql數(shù)據(jù)庫(kù)操作入門教程》及《php常見(jiàn)數(shù)據(jù)庫(kù)操作技巧匯總》
希望本文所述對(duì)大家基于Laravel框架的PHP程序設(shè)計(jì)有所幫助。
- Laravel實(shí)現(xiàn)用戶注冊(cè)和登錄
- Laravel搭建后臺(tái)登錄系統(tǒng)步驟詳解
- Laravel 自帶的Auth驗(yàn)證登錄方法
- Laravel 5.4重新登錄實(shí)現(xiàn)跳轉(zhuǎn)到登錄前頁(yè)面的原理和方法
- 利用Laravel事件系統(tǒng)如何實(shí)現(xiàn)登錄日志的記錄詳解
- SSO單點(diǎn)登錄的PHP實(shí)現(xiàn)方法(Laravel框架)
- Laravel5.2使用Captcha生成驗(yàn)證碼實(shí)現(xiàn)登錄(session巨坑)
- php的laravel框架快速集成微信登錄的方法
- laravel5.2實(shí)現(xiàn)區(qū)分前后臺(tái)用戶登錄的方法
- Laravel登錄失敗次數(shù)限制的實(shí)現(xiàn)方法
相關(guān)文章
php使用curl發(fā)送json格式數(shù)據(jù)實(shí)例
這篇文章主要介紹了php使用curl發(fā)送json格式數(shù)據(jù)的實(shí)例,大家參考使用吧2013-12-12從零開始學(xué)YII2框架(一)通過(guò)Composer安裝Yii2框架
今天終于搞明白怎么安裝Yii2了。對(duì)于我這種小白來(lái)說(shuō)真是費(fèi)盡周折。下面來(lái)介紹下如何安裝Composer和如何使用Composer安裝Yii2。2014-08-08微信公眾平臺(tái)網(wǎng)頁(yè)授權(quán)獲取用戶基本信息中授權(quán)回調(diào)域名設(shè)置的變動(dòng)
這篇文章主要介紹了微信公眾平臺(tái)網(wǎng)頁(yè)授權(quán)獲取用戶基本信息中授權(quán)回調(diào)域名設(shè)置的變動(dòng),需要的朋友可以參考下2014-10-10PHP寫UltraEdit插件腳本實(shí)現(xiàn)方法
PHP寫UltraEdit插件腳本實(shí)現(xiàn)方法,需要的朋友可以從參考下。2011-12-12