laravel的api验证失败重定向(Laravel的Auth验证Token验证使用自定义Redis的例子)
类别:编程学习 浏览量:427
时间:2021-10-19 06:37:17 laravel的api验证失败重定向
Laravel的Auth验证Token验证使用自定义Redis的例子背景
项目用户量逐渐增大,接口调用次数越来越多,所以决定使用Redis存token,缓解数据库压力
调研
在config/auth.php文件中发现用户的驱动使用的是EloquentUserProvider服务提供器,然后查找EloquentUserProvider.php 然后发现在vendor/laravel/framework/src/Illuminate/Auth文件下存在该文件
|
<?php namespace Illuminate\Auth; use Illuminate\Support\Str; use Illuminate\Contracts\Auth\UserProvider; use Illuminate\Contracts\Hashing\Hasher as HasherContract; use Illuminate\Contracts\Auth\Authenticatable as UserContract; class EloquentUserProvider implements UserProvider { /** * The hasher implementation. * * @var \Illuminate\Contracts\Hashing\Hasher */ protected $hasher ; /** * The Eloquent user model. * * @var string */ protected $model ; /** * Create a new database user provider. * * @param \Illuminate\Contracts\Hashing\Hasher $hasher * @param string $model * @return void */ public function __construct(HasherContract $hasher , $model ) { $this ->model = $model ; $this ->hasher = $hasher ; } /** * Retrieve a user by their unique identifier. * * @param mixed $identifier * @return \Illuminate\Contracts\Auth\Authenticatable|null */ public function retrieveById( $identifier ) { return $this ->createModel()->newQuery()->find( $identifier ); } ... /** * Retrieve a user by the given credentials. * * @param array $credentials * @return \Illuminate\Contracts\Auth\Authenticatable|null */ 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 ->where( $key , $value ); } } return $query ->first(); } ... } |
实现代码
因为我们是需要在当前的Auth验证基础之上添加一层Redis缓存,所以最简单的办法继承EloquentUserProvider类,重写
retrieveByCredentials方法所以我们新建RedisUserProvider.php文件
|
<?php namespace App\Providers; use Illuminate\Auth\EloquentUserProvider; use Cache; class RedisUserProvider extends EloquentUserProvider { public function __construct( $hasher , $model ) { parent::__construct( $hasher , $model ); } /** * Retrieve a user by the given credentials. * * @param array $credentials * @return \Illuminate\Contracts\Auth\Authenticatable|null */ public function retrieveByCredentials( array $credentials ) { if (!isset( $credentials [ 'token' ])) { return ; } $token = $credentials [ 'token' ]; $redis = Cache::getRedis(); $userId = $redis ->get( $token ); return $this ->retrieveById( $userId ); } } |
然后在AuthServiceProvider.php文件下修改如下代码
|
public function boot(GateContract $gate ) { $this ->registerPolicies( $gate ); //将redis注入Auth中 Auth::provider( 'redis' , function ( $app , $config ){ return new RedisUserProvider( $app [ 'hash' ], $config [ 'model' ]); }); } |
修改config/auth.php用户的auth的驱动为redis。
后续
改完代码以后发现无法正常登录,一直提示用户或密码错误。。。然后看看了下用户认证方法是
|
auth( 'web' )->once( $credentials );然后看是在 |
|
Illuminate\Auth\SessionGuard文件中用到了RedisUserProvider文件中retrieveByCredentials方法中对用户进行密码验证, |
于是修改RedisUserProvider文件
|
<?php namespace App\Providers; use Illuminate\Auth\EloquentUserProvider; use Illuminate\Support\Str; use Illuminate\Contracts\Auth\Authenticatable as UserContract; use Cache; class RedisUserProvider extends EloquentUserProvider { public function __construct( $hasher , $model ) { parent::__construct( $hasher , $model ); } /** * Retrieve a user by the given credentials. * * @param array $credentials * @return \Illuminate\Contracts\Auth\Authenticatable|null */ public function retrieveByCredentials( array $credentials ) { if ( empty ( $credentials )) { return ; } if (isset( $credentials [ 'phone' ]) && isset( $credentials [ 'password' ])){ // 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 ->where( $key , $value ); } } return $query ->first(); } $token = $credentials [ 'token' ]; $redis = Cache::getRedis(); $userId = $redis ->get( $token ); return $this ->retrieveById( $userId ); } } |
然后登录成功啦!皆大欢喜!
以上这篇Laravel的Auth验证Token验证使用自定义Redis的例子就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持开心学习网。
原文链接:https://blog.csdn.net/ljwaheng/article/details/88547994
您可能感兴趣
- laravel框架运行找不到视图(解决laravel资源加载路径设置的问题)
- laravel跨域设置(解决Laravel自定义类引入和命名空间的问题)
- laravel前后端分离实现排序(laravel自定义分页的实现案例offset和limit)
- laravel开发登录接口(解决laravel5中auth用户登录其他页面获取不到登录信息的问题)
- laravel测试重连数据库(解决在laravel中leftjoin带条件查询没有返回右表为NULL的问题)
- laravel自定义使用方法(laravel 获取当前url的别名方法)
- laravel接口请求模拟(Laravel框架控制器的request与response用法示例)
- laravel获取数据(laravel框架添加数据,显示数据,返回成功值的方法)
- laravel5.1获取数据(laravel5表单唯一验证的实例代码)
- laravel 开发自定义组件(laravel实现上传图片并在页面显示的例子)
- laravel5.7项目实战(基于Laravel 5.2 regex验证的正确写法)
- laravel的验证规则(解决在Laravel 中处理OPTIONS请求的问题)
- laravel查询限制输出设置(laravel validate 设置为中文的例子验证提示为中文)
- laravel 验证规则(Laravel中正确地返回HTTP状态码方法示例)
- laravel授权使用方法(Laravel 自带的Auth验证登录方法)
- laravel怎么设置自定义(laravel实现于语言包的完美切换方法)
- 小米音乐与 QQ 音乐合作,便捷迁移会员(小米音乐与QQ音乐合作)
- 小米推出米兔儿童电话手表奥特曼版,799 元,支持微信 QQ(小米推出米兔儿童电话手表奥特曼版)
- 贾怀胤唱《白龙马》 炸场 了 没想到京剧还能这么玩(贾怀胤唱白龙马)
- 白龙马的改编学生版,快来看看(白龙马的改编学生版)
- 萌娃唱《白龙马》走红,那生动的小表情,网友直呼 简直是戏精(萌娃唱白龙马走红)
- 朱鹤松被不断认可,凤凰传奇玲花喊话岳云鹏,索要老朱演出门票(朱鹤松被不断认可)
热门推荐
- pandas 比较两个表数据是否相同(浅谈pandas筛选出表中满足另一个表所有条件的数据方法)
- C#中默认参数
- mysql创建表的基本步骤(mysql中操作表常用的sql总结)
- python开发网站github(使用 Python 玩转 GitHub 的贡献板推荐)
- php开发pdo事务处理(Cpanel下Cron Jobs定时执行PHP的方法)
- dedecms标签缩略图问题(dedecms文章内页获取缩略图的调用标签)
- 面试怎么谈工资
- 单元格内容过多超出怎么办(单元格内文本显示超过单元格宽度的快速解决办法)
- laravel框架保存数据(Laravel 数据库加密及数据库表前缀配置方法)
- python 组合数据类型(详解Python3 对象组合zip和回退方式*zip)
排行榜
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9