mirror of
https://github.com/fawney19/Aether.git
synced 2026-09-03 01:40:21 +08:00
- 删除全部 Python 源码 (src/) 及 Alembic 迁移脚本,归档至 _deprecated_py_src/ - 重构 Rust gateway ai_pipeline: 拆分 planner/finalize 模块,新增 contracts/adaptation 层 - 重组 handlers 模块为 admin/public/proxy/internal/shared 子模块结构 - 新增 executor 模块,引入 Rust 原生数据库迁移 (aether-data/migrations) - 简化 CI/Docker 构建流程,移除 base image 二级构建,统一为单一 app image - 移除 Python 相关基础设施文件 (entrypoint.sh, gunicorn_conf.py, Dockerfile.base)
43 lines
1.6 KiB
Python
43 lines
1.6 KiB
Python
"""OAuth token Redis cache for the Account Pool.
|
|
|
|
Additions over the base ``auth.py`` refresh flow:
|
|
|
|
- **Redis token cache**: Avoids repeated DB decryption for hot keys.
|
|
Cache key: ``provider_oauth_token_cache:{key_id}``
|
|
- **Configurable proactive refresh skew**: Default 180 s (3 min) instead
|
|
of the base 120 s, configurable via ``PoolConfig.proactive_refresh_seconds``.
|
|
- **401 immediate invalidation**: Clears the Redis cache so the next request
|
|
triggers a fresh refresh.
|
|
|
|
This module does NOT replace ``auth.py``; it adds a caching layer that
|
|
``auth.py`` can consult before decrypting from DB.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from src.core.logger import logger
|
|
from src.services.provider.pool import redis_ops
|
|
|
|
|
|
async def get_cached_token(key_id: str) -> str | None:
|
|
"""Return cached access token from Redis, or None."""
|
|
return await redis_ops.get_cached_oauth_token(key_id)
|
|
|
|
|
|
async def cache_token(key_id: str, token: str, expires_in_seconds: int) -> None:
|
|
"""Cache an access token in Redis.
|
|
|
|
*expires_in_seconds* is the remaining lifetime of the token. We shave
|
|
off 60 s so the cache expires slightly before the token itself, giving
|
|
the refresh flow time to act.
|
|
"""
|
|
ttl = max(1, expires_in_seconds - 60)
|
|
await redis_ops.cache_oauth_token(key_id, token, ttl)
|
|
logger.debug("Pool OAuth: cached token for key {} (TTL={}s)", key_id[:8], ttl)
|
|
|
|
|
|
async def invalidate_token(key_id: str) -> None:
|
|
"""Invalidate the cached token (e.g. after a 401)."""
|
|
await redis_ops.invalidate_oauth_token_cache(key_id)
|
|
logger.debug("Pool OAuth: invalidated token cache for key {}", key_id[:8])
|