前言
本文主要给大家介绍了关于Laravel用户多字段认证的相关内容,分享出来供大家参考学习,下面话不多说了,来一起看看详细的介绍吧。
解决方案:
登录字段不超过两个的
我在网上看到一种相对简单解决方案,但是不能解决所有两个字段的验证:
过滤请求中的表单内容,实现区分 username。弊端显而易见,如果另一个不是 email 就抓瞎了……,下面是另一种通用的解决方案:
在 LoginController 中重写 login 方法
//假设字段是 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 的实现,具体可以参考 nofollow" target="_blank" href="https://d.laravel-china.org/docs/5.5/authentication#adding-custom-user-providers">添加自定义用户提供器 但是我喜欢偷懒,就直接继承了 EloquentUserProvider,并重写了 retrieveByCredentials 方法:
// 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);
就可以了!
Auth::provider('custom',function ($app,array $config) {
// 返回 Illuminate\Contracts\Auth\UserProvider 实例...
return new CustomUserProvider(new BcryptHasher(),config('auth.providers.custom.model'));
});
}
}
将 web 数组的 provider 修改为前面注册的那个 custom
现在哪怕你有在多个字段都妥妥的…
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对编程之家的支持。
原文链接:https://www.f2er.com/laravel/16818.html