PHP code example of l1n6yun / hyperf-jwt

1. Go to this page and download the library: Download l1n6yun/hyperf-jwt library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

l1n6yun / hyperf-jwt example snippets




declare(strict_types=1);

use function Hyperf\Support\env;

return [
    'algo' => env('JWT_ALGO', 'HS256'),
    'secret' => env('JWT_SECRET'),
    'ttl' => env('JWT_TTL', 86400),
    'leeway' => env('JWT_LEEWAY', 0),
    'keys' => [
        'public' => env('JWT_PUBLIC_KEY'),
        'private' => env('JWT_PRIVATE_KEY'),
        'passphrase' => env('JWT_PASSPHRASE'),
    ],
    'provider' => 'user',
    'providers' => [
        'user' => \App\Models\UserModel::class, // 需实现 JwtSubjectInterface 接口
    ],
];



use L1n6yun\HyperfJwt\Contracts\JwtSubjectInterface;

use function L1n6yun\HyperfJwt\auth;

// 模型实现了 JwtSubjectInterface 接口
class UserModel implements JwtSubjectInterface{
    public function getJwtIdentifier(){
        return (string)$this->id;
    };
    
    public static function retrieveById($key){
        return self::findFromCache($key);
    };
}

// 生成token
$userInfo = UserModel::query()->first();
auth()->login($userInfo)

// 退出登陆
auth()->logout();

// 获取载荷
auth()->getPayload();

// 获取用户信息
auth()->user();

// 刷新token
auth()->refresh();

// 检测登陆返回用户ID
auth()->check();


namespace App\Controller;
use L1n6yun\HyperfJwt\Annotation\Auth;

#[Auth] // 全局注解,所有方法都需要验证
class TestController extends AbstractController
{
    #[Auth] // 方法注解,该方法需要验证
    public function userInfo(){
        
    }
}

# config/autoload/exceptions.php
use L1n6yun\HyperfJwt\Exceptions\Handlers\AuthExceptionHandler

return [
    'handler' => [
        'http' => [
            AuthExceptionHandler::class,
        ],
    ],
];
shell
php bin/hyperf.php vendor:publish l1n6yun/hyperf-jwt
shell
php bin/hyperf.php gen:jwt-secret

#php bin/hyperf.php gen:jwt-public-key