123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- <?php
- namespace App\Utils\Encrypt;
- use App\Utils\Encrypt\Token\Driver;
- use Hyperf\Config\Annotation\Value;
- use function Hyperf\Config\config;
- class TokenFast
- {
-
- public static array $instance = [];
-
- public static $handler;
- public static array $options;
-
- 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\\Utils\\Encrypt\\Token\\Driver\\' . ucwords($type) :
- $type;
- if (true === $name) {
- return new $class($options);
- }
- self::$instance[$name] = new $class($options);
- }
- return self::$instance[$name];
- }
-
- public static function init(array $options = [])
- {
- if (is_null(self::$handler)) {
- if (empty($options)) {
- $options = config('token.default');
- }
- self::$handler = self::connect($options);
- }
- return self::$handler;
- }
-
- public static function has(string $token, int $user_id): bool
- {
- return self::check($token, $user_id);
- }
-
- public static function check(string $token, int $user_id): bool
- {
- return self::init()->check($token, $user_id);
- }
-
- public static function get(string $token, array $default = []): array
- {
- return self::init()->get($token) ?: $default;
- }
-
- public static function set(string $token, int $user_id, int $expire = 0): bool
- {
- return self::init()->set($token, $user_id, $expire);
- }
-
- public static function rm(string $token): bool
- {
- return self::delete($token);
- }
-
- public static function delete(string $token): bool
- {
- return self::init()->delete($token);
- }
-
- public static function clear(int $user_id): bool
- {
- return self::init()->clear($user_id);
- }
- }
|