thinkphp5框架API token身份验证功能示例
程序员文章站
2022-06-03 11:36:50
本文实例讲述了thinkphp5框架api token身份验证功能。分享给大家供大家参考,具体如下:
使用说明:登陆时生成token和刷新用的refresh_token,...
本文实例讲述了thinkphp5框架api token身份验证功能。分享给大家供大家参考,具体如下:
使用说明:登陆时生成token和刷新用的refresh_token,返回给客户端,客户端收到保存本地localstorage等,每次访问接口带上token,后端验证token存在并且一致后方可执行接下来的动作,假如不存在就返回token过期,客户端调用刷新接口传入token和refresh_token,服务器端进行验证,验证通过重新生成新的token保存数据库,返回给客户端客户端刷新本地token访问即可继续,当refresh_token验证失败就清除数据库token,过期时间等信息
简单的token生成函数(公共函数文件common)
function create_token($id,$out_time){ return substr(md5($id.$out_time),5,26); }
验证登陆方法(模型)
public function checklogin($username,$passwd){ $driver = self::field('driver_id,passwd')->where('zhanghao',$username)->whereor('phone',$username)->find(); if (empty($driver)){ $this->error = '账号不存在'; return false; } if ($driver['passwd'] != md5($passwd)){ $this->error = "密码不正确"; return false; } //$out_time = strtotime('+ 1 days'); $out_time = strtotime('+ 1 minutes'); $token = create_token($driver['driver_id'],$out_time); if(false===self::save(['token'=>$token,'time_out'=>$out_time],['driver_id'=>$driver['driver_id']])){ $this->error = '登陆失败'; return false; } $refresh_token_out_time = strtotime('+ 5 days'); $refresh_token = create_token($driver['driver_id'],$refresh_token_out_time); cache::set("token",$token,60); cache::set("driver_id",$driver['driver_id'],$refresh_token_out_time);//设置id的过期时间和更新token的token时间一样用于更新的时候获取用户信息 cache::set('refresh_token',$refresh_token,$refresh_token_out_time); return ['token'=>$token,'refresh_token'=>$refresh_token,'in_expire'=>$out_time]; }
token刷新方法(模型)
public function refreshtoken($refresh_token,$token){ if (!isset(cache::get('refresh_token')) or cache::get('refresh_token')!=$refresh_token){ $this->error = '刷新token失败'; return false; } $cache_driver_id = cache::get('driver_id'); $driver = self::field('driver_id,passwd')->where('driver_id',$cache_driver_id)->where('token',$token)->find(); if (empty($driver)){ $this->error = '参数错误'; return false; } $out_time = strtotime('+ 1 days');//新的过期时间 $token = create_token($driver['driver_id'],$out_time);//更新token if(false===self::save(['token'=>$token,'time_out'=>$out_time],['driver_id'=>$driver['driver_id']])){ cache::clear($token); $this->error = '刷新失败'; return false; } cache::set("token",$token,864000); return ['token'=>$token,'in_expire'=>$out_time]; }
退出方法(模型)
public function logout($token,$refresh_token=''){ $driver = self::field('driver_id,passwd')->where('token',$token)->find(); self::save(['token'=>'','time_out'=>''],['token'=>$token]); cache::clear('token'); cache::clear('refresh_token'); }
更多关于thinkphp相关内容感兴趣的读者可查看本站专题:《thinkphp入门教程》、《thinkphp模板操作技巧总结》、《thinkphp常用方法总结》、《codeigniter入门教程》、《ci(codeigniter)框架进阶教程》、《zend framework框架入门教程》及《php模板技术总结》。
希望本文所述对大家基于thinkphp框架的php程序设计有所帮助。
上一篇: PHP设计模式之抽象工厂模式实例分析
下一篇: Python处理session的方法整理
推荐阅读
-
thinkphp5框架调用其它控制器方法 实现自定义跳转界面功能示例
-
thinkPHP5框架实现基于ajax的分页功能示例
-
ThinkPHP5框架实现简单的批量查询功能示例
-
thinkphp5框架API token身份验证功能示例
-
thinkphp5框架结合mysql实现微信登录和自定义分享链接与图文功能示例
-
thinkPHP5框架实现分页查询功能的方法示例
-
thinkphp5框架调用其它控制器方法 实现自定义跳转界面功能示例
-
thinkphp5 框架结合plupload实现图片批量上传功能示例
-
tp5(thinkPHP5框架)使用DB实现批量删除功能示例
-
thinkphp5框架API token身份验证功能示例