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
68 lines
1.7 KiB
Python
Executable File
68 lines
1.7 KiB
Python
Executable File
"""Session 存储端口(领域层接口).
|
|
|
|
定义 Session 存储服务的抽象接口,具体实现由基础设施层(adapters)提供。
|
|
遵循 DDD 依赖倒置原则:领域层定义端口,外层实现端口。
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from abc import ABC, abstractmethod
|
|
from typing import Optional
|
|
|
|
|
|
class SessionStorePort(ABC):
|
|
"""Session 存储端口(抽象接口)"""
|
|
|
|
@abstractmethod
|
|
def save_session(
|
|
self,
|
|
session_id: str,
|
|
user_id: str,
|
|
refresh_token: str,
|
|
user_agent: str = "",
|
|
ip_address: str = "",
|
|
expires_in_days: int = 7,
|
|
) -> bool:
|
|
"""保存 Session"""
|
|
...
|
|
|
|
@abstractmethod
|
|
def get_session(self, session_id: str) -> Optional[dict]:
|
|
"""获取 Session"""
|
|
...
|
|
|
|
@abstractmethod
|
|
def get_session_by_refresh_token(self, refresh_token: str) -> Optional[dict]:
|
|
"""通过 refresh_token 查找 Session"""
|
|
...
|
|
|
|
@abstractmethod
|
|
def get_refresh_token(self, session_id: str) -> Optional[str]:
|
|
"""获取 refresh_token"""
|
|
...
|
|
|
|
@abstractmethod
|
|
def update_last_active(self, session_id: str) -> bool:
|
|
"""更新最后活跃时间"""
|
|
...
|
|
|
|
@abstractmethod
|
|
def delete_session(self, session_id: str) -> bool:
|
|
"""删除 Session"""
|
|
...
|
|
|
|
@abstractmethod
|
|
def get_user_sessions(self, user_id: str) -> list[dict]:
|
|
"""获取用户所有 Session"""
|
|
...
|
|
|
|
@abstractmethod
|
|
def delete_all_user_sessions(self, user_id: str) -> int:
|
|
"""删除用户所有 Session"""
|
|
...
|
|
|
|
@abstractmethod
|
|
def session_exists(self, session_id: str) -> bool:
|
|
"""检查 Session 是否存在"""
|
|
...
|