這篇文章主要介紹了關於Laravel5.4實現多字段登入的方法,有著一定的參考價值,現在分享給大家,有需要的朋友可以參考一下
最近在工作中遇到一個需求,需要實現多字段登錄的一個效果,就是可以使用手機或者郵箱任一種方式的登錄,現在將解決的過程分享出來,所以這篇文章主要給大家介紹了基於Laravel5.4實現多字段登錄功能的相關資料,需要的朋友可以參考借鑒,下面來一起看看吧。
前言
最近在一個專案中需要實作一個多欄位登入功能,簡單來說就是可以使用使用者名稱、信箱或手機號任意一種方式進行登入。所以本文來跟大家介紹了Laravel5.4多字段登入的相關內容,分享出來供大家參考學習,話不多說了,來一起看看詳細的介紹吧。
以下內容基於laravel5.4
#方法如下:
首先,透過artisan工具產生auth模組
php artisan make:auth
#這時候App\Http\Controllers目錄下會新增一個Auth目錄,該目錄下為註冊登入相關的控制器,resources\views目錄下方也會產生一些與註冊登入相關的視圖
laravel的官方文件中說手動認證使用者需要使用Illuminate\Support\Facades\Auth類別的attempt方法,如下:
<?php namespace App\Http\Controllers; use Illuminate\Support\Facades\Auth; class LoginController extends Controller { /** * Handle an authentication attempt. * * @return Response */ public function authenticate() { if (Auth::attempt(['email' => $email, 'password' => $password])) { // Authentication passed... return redirect()->intended('dashboard'); } } }
這個方法會根據你傳入的參數判斷資料庫中是否存在與之相符的用戶,如果存在且密碼正確回傳true,反之回傳false
遂在LoginController中加入該方法,但好像沒有效果
於是開始觀察LoginController的實作機制,發現它實作了一個AuthenticatesUsers的trait,追蹤到這個trait的定義文件,發現這個文件就是我們想要的東西
裡面有一個login方法,就是負責處理登入的邏輯
/** * Handle a login request to the application. * * @param \Illuminate\Http\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. // 防止暴力破解,多次登录失败会根据IP锁定 if ($this->hasTooManyLoginAttempts($request)) { $this->fireLockoutEvent($request); return $this->sendLockoutResponse($request); } // 这个就是主要的负责判断数据库中是否存在相应的账号和密码的地方,我们需要重写的就是attemptLogin方法 if ($this->attemptLogin($request)) { return $this->sendLoginResponse($request); } // 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. // 登录失败,失败次数++,防止暴力破解 $this->incrementLoginAttempts($request); // 返回失败响应 return $this->sendFailedLoginResponse($request); }
分析了一波這個文件,發現主要進行登入判斷的就是attemptLogin方法,我們只要重寫這個方法即可,先看看原來的是怎麼寫的,根據原來的進行重寫:
/** * Attempt to log the user into the application. * * @param \Illuminate\Http\Request $request * @return bool */ protected function attemptLogin(Request $request) { return $this->guard()->attempt( $this->credentials($request), $request->has('remember') ); }
在LoginController重寫後:
public function attemptLogin(Request $request) { $username = $request->input('username'); $password = $request->input('password'); // 验证用户名登录方式 $usernameLogin = $this->guard()->attempt( ['username' => $username, 'password' => $password], $request->has('remember') ); if ($usernameLogin) { return true; } // 验证手机号登录方式 $mobileLogin = $this->guard()->attempt( ['mobile' => $username, 'password' => $password], $request->has('remember') ); if ($mobileLogin) { return true; } // 验证邮箱登录方式 $emailLogin = $this->guard()->attempt( ['email' => $username, 'password' => $password], $request->has('remember') ); if ($emailLogin) { return true; } return false; }
只需要用attempt方法進行多次判斷即可,只要成功就返回true,不成功繼續用其他字段進行判斷,都不成功則返回flase
測試,可以實現多字段登入效果
以上就是本文的全部內容,希望對大家的學習有幫助,更多相關內容請關注PHP中文網!
相關推薦:
#
以上是關於Laravel5.4實現多字段登入的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!