首页 > 开发 > PHP > 正文

Laravel实现用户多字段认证的解决方法

2024-05-04 22:45:32
字体:
来源:转载
供稿:网友

前言

本文主要给大家介绍了关于Laravel用户多字段认证的相关内容,分享出来供大家参考学习,下面话不多说了,来一起看看详细的介绍吧。

解决方案:

登录字段不超过两个的(简单的解决方案) 登录字段大于或等于三个的(相对复杂一些)

登录字段不超过两个的

我在网上看到一种相对简单解决方案,但是不能解决所有两个字段的验证:

filter_var($request->input('login'), FILTER_VALIDATE_EMAIL) ? 'email' : 'name'

过滤请求中的表单内容,实现区分 username。弊端显而易见,如果另一个不是 email 就抓瞎了……,下面是另一种通用的解决方案:

在 LoginController 中重写 login 方法

public function login(Requests $request) { //假设字段是 email if ($this->guard()->attempt($request->only('email', 'password'))) {  return $this->sendLoginResponse($request); } //假设字段是 mobile if ($this->guard()->attempt($request->only('mobile', 'password'))) {  return $this->sendLoginResponse($request); } //假设字段是 username if ($this->guard()->attempt($request->only('username', 'password'))) {  return $this->sendLoginResponse($request); } return $this->sendFailedLoginResponse($request);}

可以看到虽然能解决问题,但是显然有悖于 Laravel 的优雅风格,卖了这么多关子,下面跟大家分享一下我的解决方案。

登录字段大于或等于三个的(相对复杂一些)

首先需要自己实现一个 Illuminate/Contracts/Auth/UserProvider 的实现,具体可以参考 添加自定义用户提供器 但是我喜欢偷懒,就直接继承了 EloquentUserProvider,并重写了 retrieveByCredentials 方法:

public function retrieveByCredentials(array $credentials){ if (empty($credentials)) {  return; } // First we will add each credential element to the query as a where clause. // Then we can execute the query and, if we found a user, return it in a // Eloquent User "model" that will be utilized by the Guard instances. $query = $this->createModel()->newQuery(); foreach ($credentials as $key => $value) {  if (! Str::contains($key, 'password')) {   $query->orWhere($key, $value);  } } return $query->first();}

注意: 将 $query->where($key, $value); 改为 $query->orWhere($key, $value); 就可以了!

紧接着需要注册自定义的 UserProvider:

class AuthServiceProvider extends ServiceProvider{ /**  * 注册任何应用认证/授权服务。  *  * @return void  */ public function boot() {  $this->registerPolicies();  Auth::provider('custom', function ($app, array $config) {   // 返回 Illuminate/Contracts/Auth/UserProvider 实例...   return new CustomUserProvider(new BcryptHasher(), config('auth.providers.custom.model'));  }); }}            
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表