2023-01-19 02:36:01 +00:00

169 lines
3.7 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
namespace app\common\library;
use think\facade\Log;
use think\facade\Config;
use app\common\library\token\Driver;
/**
* Token操作类.
*/
class Token
{
/**
* @var array Token的实例
*/
public static $instance = [];
/**
* @var object 操作句柄
*/
public static $handler;
/**
* 连接Token驱动.
*
* @param array $options 配置数组
* @param bool|string $name Token连接标识 true 强制重新连接
*
* @return Driver
*/
public static function connect(array $options = [], $name = false)
{
$type = ! empty($options['type']) ? $options['type'] : 'File';
if (false === $name) {
$name = md5(serialize($options));
}
if (true === $name || ! isset(self::$instance[$name])) {
$class = false === strpos($type, '\\') ?
'\\app\\common\\library\\token\\driver\\'.ucwords($type) :
$type;
// 记录初始化信息
env('APP_DEBUG') && Log::record('[ TOKEN ] INIT '.$type, 'info');
if (true === $name) {
return new $class($options);
}
self::$instance[$name] = new $class($options);
}
return self::$instance[$name];
}
/**
* 自动初始化Token.
*
* @param array $options 配置数组
*
* @return Driver
*/
public static function init(array $options = [])
{
if (is_null(self::$handler)) {
if (empty($options) && 'complex' == Config::get('token.type')) {
$default = Config::get('token.default');
// 获取默认Token配置并连接
$options = Config::get('token.'.$default['type']) ?: $default;
} elseif (empty($options)) {
$options = Config::get('token');
}
self::$handler = self::connect($options);
}
return self::$handler;
}
/**
* 判断Token是否可用(check别名).
*
* @param string $token Token标识
*
* @return bool
*/
public static function has($token, $user_id)
{
return self::check($token, $user_id);
}
/**
* 判断Token是否可用.
*
* @param string $token Token标识
*
* @return bool
*/
public static function check($token, $user_id)
{
return self::init()->check($token, $user_id);
}
/**
* 读取Token.
*
* @param string $token Token标识
* @param mixed $default 默认值
*
* @return mixed
*/
public static function get($token, $default = false)
{
return self::init()->get($token, $default);
}
/**
* 写入Token.
*
* @param string $token Token标识
* @param mixed $user_id 存储数据
* @param int|null $expire 有效时间 0为永久
*
* @return bool
*/
public static function set($token, $user_id, $expire = null)
{
return self::init()->set($token, $user_id, $expire);
}
/**
* 删除Token(delete别名).
*
* @param string $token Token标识
*
* @return bool
*/
public static function rm($token)
{
return self::delete($token);
}
/**
* 删除Token.
*
* @param string $token 标签名
*
* @return bool
*/
public static function delete($token)
{
return self::init()->delete($token);
}
/**
* 清除Token.
*
* @param string $token Token标记
*
* @return bool
*/
public static function clear($user_id = null)
{
return self::init()->clear($user_id);
}
}