欢迎访问 生活随笔!

凯发k8官方网

当前位置: 凯发k8官方网 > 编程语言 > php >内容正文

php

php实现多字段unique验证,laravel实现用户多字段认证的解决方法 -凯发k8官方网

发布时间:2024/10/14 php 27 豆豆
凯发k8官方网 收集整理的这篇文章主要介绍了 php实现多字段unique验证,laravel实现用户多字段认证的解决方法 小编觉得挺不错的,现在分享给大家,帮大家做个参考.

前言

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

凯发k8官方网的解决方案:

登录字段不超过两个的(简单的凯发k8官方网的解决方案)

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

登录字段不超过两个的

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

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

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

在 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 的优雅风格,卖了这么多关子,下面跟大家分享一下我的凯发k8官方网的解决方案。

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

首先需要自己实现一个 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'));

});

}

}

最后我们修改一下 auth.php 的配置就搞定了:

'providers' => [

'users' => [

'driver' => 'eloquent',

'model' => app\models\user::class,

],

'custom' => [

'driver' => 'custom',

'model' => app\models\user::class,

],

],

将 web 数组的 provider 修改为前面注册的那个 custom

'guards' => [

'web' => [

'driver' => 'session',

'provider' => 'custom',

],

'api' => [

'driver' => 'passport',

'provider' => 'users',

],

],

现在哪怕你有在多个字段都妥妥的…

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对脚本之家的支持。

总结

以上是凯发k8官方网为你收集整理的php实现多字段unique验证,laravel实现用户多字段认证的解决方法的全部内容,希望文章能够帮你解决所遇到的问题。

如果觉得凯发k8官方网网站内容还不错,欢迎将凯发k8官方网推荐给好友。

网站地图