d92909321c
CI/CD Pipeline / Deploy Staging (Watchtower auto-deploy) (push) Successful in 1m14s
CI/CD Pipeline / Check if frontend-only change (push) Has been skipped
CI/CD Pipeline / Validate - Code Quality (push) Failing after 2m12s
CI/CD Pipeline / Validate - Type Check (mypy) (push) Successful in 1m28s
CI/CD Pipeline / Validate - Migration (alembic) (push) Successful in 1m24s
CI/CD Pipeline / Unit Tests (push) Successful in 6m25s
CI/CD Pipeline / Integration Tests (push) Successful in 5m4s
CI/CD Pipeline / Frontend Lint (push) Successful in 45s
CI/CD Pipeline / Frontend Unit Tests (push) Successful in 1m23s
CI/CD Pipeline / PR Build API Image (push) Has been skipped
CI/CD Pipeline / PR Build Web Image (push) Has been skipped
CI/CD Pipeline / PR Build Worker Image (push) Has been skipped
CI/CD Pipeline / Build Staging API Image (push) Successful in 11m44s
CI/CD Pipeline / Build Staging Web Image (push) Successful in 1m17s
CI/CD Pipeline / Build Staging Worker Image (push) Successful in 2m36s
CI/CD Pipeline / Build Production API Image (push) Has been skipped
CI/CD Pipeline / Build Production Web Image (push) Has been skipped
CI/CD Pipeline / Build Production Worker Image (push) Has been skipped
CI/CD Pipeline / Deploy Production (push) Has been skipped
CI/CD Pipeline / Production Browser E2E (push) Has been skipped
CI/CD Pipeline / Staging E2E Tests (push) Has been cancelled
CI/CD Pipeline / Staging API Integration Tests (push) Has been cancelled
CI/CD Pipeline / ACR Image Cleanup (push) Has been cancelled
45 lines
1.1 KiB
Python
Executable File
45 lines
1.1 KiB
Python
Executable File
"""JWT 服务端口(领域层接口).
|
|
|
|
定义 JWT Token 生成、验证、解析的抽象接口,具体实现由应用层或基础设施层提供。
|
|
遵循 DDD 依赖倒置原则:领域层定义端口,外层实现端口。
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from abc import ABC, abstractmethod
|
|
from typing import Any, Dict
|
|
|
|
|
|
class JWTServicePort(ABC):
|
|
"""JWT 服务端口(抽象接口)"""
|
|
|
|
@abstractmethod
|
|
def create_access_token(
|
|
self,
|
|
user_id: str,
|
|
role: str = "",
|
|
additional_claims: Dict[str, Any] | None = None,
|
|
) -> str:
|
|
"""创建 access_token"""
|
|
...
|
|
|
|
@abstractmethod
|
|
def create_refresh_token(self, user_id: str, session_id: str) -> str:
|
|
"""创建 refresh_token"""
|
|
...
|
|
|
|
@abstractmethod
|
|
def verify_token(self, token: str) -> Dict[str, Any]:
|
|
"""验证任意 Token"""
|
|
...
|
|
|
|
@abstractmethod
|
|
def verify_access_token(self, token: str) -> Dict[str, Any]:
|
|
"""验证 access_token"""
|
|
...
|
|
|
|
@abstractmethod
|
|
def verify_refresh_token(self, token: str) -> Dict[str, Any]:
|
|
"""验证 refresh_token"""
|
|
...
|