截流自动化的商城平台
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

TokenServer.php 2.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\common\server;
  20. use think\Exception;
  21. use think\facade\Cache;
  22. /**
  23. * Token 服务类
  24. * Class TokenServer
  25. * @package app\common\server
  26. */
  27. class TokenServer
  28. {
  29. /**
  30. * Notes: 生成令牌
  31. * @author FZR(2021/1/28 10:37)
  32. * @param string $tokenSalt (加密盐)
  33. * @return string
  34. */
  35. public static function generateToken($tokenSalt)
  36. {
  37. $randChar = getRandChar(32);
  38. $timestamp = $_SERVER['REQUEST_TIME_FLOAT'];
  39. return md5($randChar . $timestamp . $tokenSalt);
  40. }
  41. /**
  42. * Notes: 根据Key获取当前Token中变量值
  43. * @param string $key (键, 必填, 用于校验数据是否正常获取)
  44. * @param bool $isWhole (是否获取全部)
  45. * @return mixed
  46. * @throws Exception
  47. * @author FZR(2021/1/28 10:42)
  48. */
  49. public static function getCurrentTokenVar($key, $isWhole=false)
  50. {
  51. $token = request()->header('token');
  52. $vars = Cache::get($token);
  53. if (empty($token) || !$token || !$vars) {
  54. throw new Exception('Token已过期或无效Token');
  55. } else {
  56. // 如果不是数组则转成数组
  57. if (!is_array($vars)) {
  58. $vars = json_decode($vars, true);
  59. }
  60. // 判断Key是否存在数组中
  61. if (array_key_exists($key, $vars)) {
  62. // 重置缓存时间
  63. Cache::set($token, json_encode($vars, JSON_UNESCAPED_UNICODE), 7200);
  64. // 返回缓存中的数据
  65. return $isWhole ? $vars : $vars[$key];
  66. } else {
  67. throw new Exception('尝试获取的Token变量并不存在');
  68. }
  69. }
  70. }
  71. }