You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
2.8 KiB
80 lines
2.8 KiB
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | likeshop开源商城系统
|
|
// +----------------------------------------------------------------------
|
|
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
|
|
// | gitee下载:https://gitee.com/likeshop_gitee
|
|
// | github下载:https://github.com/likeshop-github
|
|
// | 访问官网:https://www.likeshop.cn
|
|
// | 访问社区:https://home.likeshop.cn
|
|
// | 访问手册:http://doc.likeshop.cn
|
|
// | 微信公众号:likeshop技术社区
|
|
// | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
|
|
// | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
|
|
// | 禁止对系统程序代码以任何目的,任何形式的再发布
|
|
// | likeshop团队版权所有并拥有最终解释权
|
|
// +----------------------------------------------------------------------
|
|
// | author: likeshop.cn.team
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
|
namespace app\common\server;
|
|
|
|
|
|
use think\Exception;
|
|
use think\facade\Cache;
|
|
|
|
/**
|
|
* Token 服务类
|
|
* Class TokenServer
|
|
* @package app\common\server
|
|
*/
|
|
class TokenServer
|
|
{
|
|
/**
|
|
* Notes: 生成令牌
|
|
* @author FZR(2021/1/28 10:37)
|
|
* @param string $tokenSalt (加密盐)
|
|
* @return string
|
|
*/
|
|
public static function generateToken($tokenSalt)
|
|
{
|
|
$randChar = getRandChar(32);
|
|
$timestamp = $_SERVER['REQUEST_TIME_FLOAT'];
|
|
return md5($randChar . $timestamp . $tokenSalt);
|
|
}
|
|
|
|
/**
|
|
* Notes: 根据Key获取当前Token中变量值
|
|
* @param string $key (键, 必填, 用于校验数据是否正常获取)
|
|
* @param bool $isWhole (是否获取全部)
|
|
* @return mixed
|
|
* @throws Exception
|
|
* @author FZR(2021/1/28 10:42)
|
|
*/
|
|
public static function getCurrentTokenVar($key, $isWhole=false)
|
|
{
|
|
$token = request()->header('token');
|
|
$vars = Cache::get($token);
|
|
|
|
if (empty($token) || !$token || !$vars) {
|
|
|
|
throw new Exception('Token已过期或无效Token');
|
|
|
|
} else {
|
|
// 如果不是数组则转成数组
|
|
if (!is_array($vars)) {
|
|
$vars = json_decode($vars, true);
|
|
}
|
|
// 判断Key是否存在数组中
|
|
if (array_key_exists($key, $vars)) {
|
|
// 重置缓存时间
|
|
Cache::set($token, json_encode($vars, JSON_UNESCAPED_UNICODE), 7200);
|
|
// 返回缓存中的数据
|
|
return $isWhole ? $vars : $vars[$key];
|
|
} else {
|
|
throw new Exception('尝试获取的Token变量并不存在');
|
|
}
|
|
}
|
|
}
|
|
}
|