| """ |
| Configuration constants for the Geminicli2api proxy server. |
| Centralizes all configuration to avoid duplication across modules. |
| |
| - 启动时加载一次配置到内存 |
| - 修改配置时调用 reload_config() 重新从数据库加载 |
| """ |
|
|
| import os |
| from typing import Any, Optional |
|
|
| |
| _config_cache: dict[str, Any] = {} |
| _config_initialized = False |
|
|
| |
|
|
| |
| AUTO_BAN_ERROR_CODES = [403] |
|
|
| |
| |
| |
| ENV_MAPPINGS = { |
| "CODE_ASSIST_ENDPOINT": "code_assist_endpoint", |
| "CREDENTIALS_DIR": "credentials_dir", |
| "PROXY": "proxy", |
| "OAUTH_PROXY_URL": "oauth_proxy_url", |
| "GOOGLEAPIS_PROXY_URL": "googleapis_proxy_url", |
| "RESOURCE_MANAGER_API_URL": "resource_manager_api_url", |
| "SERVICE_USAGE_API_URL": "service_usage_api_url", |
| "ANTIGRAVITY_API_URL": "antigravity_api_url", |
| "AUTO_BAN": "auto_ban_enabled", |
| "AUTO_BAN_ERROR_CODES": "auto_ban_error_codes", |
| "RETRY_429_MAX_RETRIES": "retry_429_max_retries", |
| "RETRY_429_ENABLED": "retry_429_enabled", |
| "RETRY_429_INTERVAL": "retry_429_interval", |
| "ANTI_TRUNCATION_MAX_ATTEMPTS": "anti_truncation_max_attempts", |
| "COMPATIBILITY_MODE": "compatibility_mode_enabled", |
| "RETURN_THOUGHTS_TO_FRONTEND": "return_thoughts_to_frontend", |
| "ANTIGRAVITY_STREAM2NOSTREAM": "antigravity_stream2nostream", |
| "HOST": "host", |
| "PORT": "port", |
| "API_PASSWORD": "api_password", |
| "PANEL_PASSWORD": "panel_password", |
| "PASSWORD": "password", |
| } |
|
|
|
|
| |
|
|
| async def init_config(): |
| """初始化配置缓存(启动时调用一次)""" |
| global _config_cache, _config_initialized |
|
|
| if _config_initialized: |
| return |
|
|
| try: |
| from src.storage_adapter import get_storage_adapter |
| storage_adapter = await get_storage_adapter() |
| _config_cache = await storage_adapter.get_all_config() |
| _config_initialized = True |
| except Exception: |
| |
| _config_cache = {} |
| _config_initialized = True |
|
|
|
|
| async def reload_config(): |
| """重新加载配置(修改配置后调用)""" |
| global _config_cache, _config_initialized |
|
|
| try: |
| from src.storage_adapter import get_storage_adapter |
| storage_adapter = await get_storage_adapter() |
|
|
| |
| if hasattr(storage_adapter._backend, 'reload_config_cache'): |
| await storage_adapter._backend.reload_config_cache() |
|
|
| |
| _config_cache = await storage_adapter.get_all_config() |
| _config_initialized = True |
| except Exception: |
| pass |
|
|
|
|
| def _get_cached_config(key: str, default: Any = None) -> Any: |
| """从内存缓存获取配置(同步)""" |
| return _config_cache.get(key, default) |
|
|
|
|
| async def get_config_value(key: str, default: Any = None, env_var: Optional[str] = None) -> Any: |
| """Get configuration value with priority: ENV > Storage > default.""" |
| |
| if not _config_initialized: |
| await init_config() |
|
|
| |
| if env_var and os.getenv(env_var): |
| return os.getenv(env_var) |
|
|
| |
| value = _get_cached_config(key) |
| if value is not None: |
| return value |
|
|
| return default |
|
|
|
|
| |
| async def get_proxy_config(): |
| """Get proxy configuration.""" |
| proxy_url = await get_config_value("proxy", env_var="PROXY") |
| return proxy_url if proxy_url else None |
|
|
|
|
| async def get_auto_ban_enabled() -> bool: |
| """Get auto ban enabled setting.""" |
| env_value = os.getenv("AUTO_BAN") |
| if env_value: |
| return env_value.lower() in ("true", "1", "yes", "on") |
|
|
| return bool(await get_config_value("auto_ban_enabled", False)) |
|
|
|
|
| async def get_auto_ban_error_codes() -> list: |
| """ |
| Get auto ban error codes. |
| |
| Environment variable: AUTO_BAN_ERROR_CODES (comma-separated, e.g., "400,403") |
| Database config key: auto_ban_error_codes |
| Default: [400, 403] |
| """ |
| env_value = os.getenv("AUTO_BAN_ERROR_CODES") |
| if env_value: |
| try: |
| return [int(code.strip()) for code in env_value.split(",") if code.strip()] |
| except ValueError: |
| pass |
|
|
| codes = await get_config_value("auto_ban_error_codes") |
| if codes and isinstance(codes, list): |
| return codes |
| return AUTO_BAN_ERROR_CODES |
|
|
|
|
| async def get_retry_429_max_retries() -> int: |
| """Get max retries for 429 errors.""" |
| env_value = os.getenv("RETRY_429_MAX_RETRIES") |
| if env_value: |
| try: |
| return int(env_value) |
| except ValueError: |
| pass |
|
|
| return int(await get_config_value("retry_429_max_retries", 5)) |
|
|
|
|
| async def get_retry_429_enabled() -> bool: |
| """Get 429 retry enabled setting.""" |
| env_value = os.getenv("RETRY_429_ENABLED") |
| if env_value: |
| return env_value.lower() in ("true", "1", "yes", "on") |
|
|
| return bool(await get_config_value("retry_429_enabled", True)) |
|
|
|
|
| async def get_retry_429_interval() -> float: |
| """Get 429 retry interval in seconds.""" |
| env_value = os.getenv("RETRY_429_INTERVAL") |
| if env_value: |
| try: |
| return float(env_value) |
| except ValueError: |
| pass |
|
|
| return float(await get_config_value("retry_429_interval", 0.1)) |
|
|
|
|
| async def get_anti_truncation_max_attempts() -> int: |
| """ |
| Get maximum attempts for anti-truncation continuation. |
| |
| Environment variable: ANTI_TRUNCATION_MAX_ATTEMPTS |
| Database config key: anti_truncation_max_attempts |
| Default: 3 |
| """ |
| env_value = os.getenv("ANTI_TRUNCATION_MAX_ATTEMPTS") |
| if env_value: |
| try: |
| return int(env_value) |
| except ValueError: |
| pass |
|
|
| return int(await get_config_value("anti_truncation_max_attempts", 3)) |
|
|
|
|
| |
| async def get_server_host() -> str: |
| """ |
| Get server host setting. |
| |
| Environment variable: HOST |
| Database config key: host |
| Default: 0.0.0.0 |
| """ |
| return str(await get_config_value("host", "0.0.0.0", "HOST")) |
|
|
|
|
| async def get_server_port() -> int: |
| """ |
| Get server port setting. |
| |
| Environment variable: PORT |
| Database config key: port |
| Default: 7861 |
| """ |
| env_value = os.getenv("PORT") |
| if env_value: |
| try: |
| return int(env_value) |
| except ValueError: |
| pass |
|
|
| return int(await get_config_value("port", 7861)) |
|
|
|
|
| async def get_api_password() -> str: |
| """ |
| Get API password setting for chat endpoints. |
| |
| Environment variable: API_PASSWORD |
| Database config key: api_password |
| Default: Uses PASSWORD env var for compatibility, otherwise 'pwd' |
| """ |
| |
| api_password = await get_config_value("api_password", None, "API_PASSWORD") |
| if api_password is not None: |
| return str(api_password) |
|
|
| |
| return str(await get_config_value("password", "pwd", "PASSWORD")) |
|
|
|
|
| async def get_panel_password() -> str: |
| """ |
| Get panel password setting for web interface. |
| |
| Environment variable: PANEL_PASSWORD |
| Database config key: panel_password |
| Default: Uses PASSWORD env var for compatibility, otherwise 'pwd' |
| """ |
| |
| panel_password = await get_config_value("panel_password", None, "PANEL_PASSWORD") |
| if panel_password is not None: |
| return str(panel_password) |
|
|
| |
| return str(await get_config_value("password", "pwd", "PASSWORD")) |
|
|
|
|
| async def get_server_password() -> str: |
| """ |
| Get server password setting (deprecated, use get_api_password or get_panel_password). |
| |
| Environment variable: PASSWORD |
| Database config key: password |
| Default: pwd |
| """ |
| return str(await get_config_value("password", "pwd", "PASSWORD")) |
|
|
|
|
| async def get_credentials_dir() -> str: |
| """ |
| Get credentials directory setting. |
| |
| Environment variable: CREDENTIALS_DIR |
| Database config key: credentials_dir |
| Default: ./creds |
| """ |
| return str(await get_config_value("credentials_dir", "./creds", "CREDENTIALS_DIR")) |
|
|
|
|
| async def get_code_assist_endpoint() -> str: |
| """ |
| Get Code Assist endpoint setting. |
| |
| Environment variable: CODE_ASSIST_ENDPOINT |
| Database config key: code_assist_endpoint |
| Default: https://cloudcode-pa.googleapis.com |
| """ |
| return str( |
| await get_config_value( |
| "code_assist_endpoint", "https://cloudcode-pa.googleapis.com", "CODE_ASSIST_ENDPOINT" |
| ) |
| ) |
|
|
|
|
| async def get_compatibility_mode_enabled() -> bool: |
| """ |
| Get compatibility mode setting. |
| |
| 兼容性模式:启用后所有system消息全部转换成user,停用system_instructions。 |
| 该选项可能会降低模型理解能力,但是能避免流式空回的情况。 |
| |
| Environment variable: COMPATIBILITY_MODE |
| Database config key: compatibility_mode_enabled |
| Default: False |
| """ |
| env_value = os.getenv("COMPATIBILITY_MODE") |
| if env_value: |
| return env_value.lower() in ("true", "1", "yes", "on") |
|
|
| return bool(await get_config_value("compatibility_mode_enabled", False)) |
|
|
|
|
| async def get_return_thoughts_to_frontend() -> bool: |
| """ |
| Get return thoughts to frontend setting. |
| |
| 控制是否将思维链返回到前端。 |
| 启用后,思维链会在响应中返回;禁用后,思维链会在响应中被过滤掉。 |
| |
| Environment variable: RETURN_THOUGHTS_TO_FRONTEND |
| Database config key: return_thoughts_to_frontend |
| Default: True |
| """ |
| env_value = os.getenv("RETURN_THOUGHTS_TO_FRONTEND") |
| if env_value: |
| return env_value.lower() in ("true", "1", "yes", "on") |
|
|
| return bool(await get_config_value("return_thoughts_to_frontend", True)) |
|
|
|
|
| async def get_antigravity_stream2nostream() -> bool: |
| """ |
| Get use stream for non-stream setting. |
| |
| 控制antigravity非流式请求是否使用流式API并收集为完整响应。 |
| 启用后,非流式请求将在后端使用流式API,然后收集所有块后再返回完整响应。 |
| |
| Environment variable: ANTIGRAVITY_STREAM2NOSTREAM |
| Database config key: antigravity_stream2nostream |
| Default: True |
| """ |
| env_value = os.getenv("ANTIGRAVITY_STREAM2NOSTREAM") |
| if env_value: |
| return env_value.lower() in ("true", "1", "yes", "on") |
|
|
| return bool(await get_config_value("antigravity_stream2nostream", True)) |
|
|
|
|
| async def get_oauth_proxy_url() -> str: |
| """ |
| Get OAuth proxy URL setting. |
| |
| 用于Google OAuth2认证的代理URL。 |
| |
| Environment variable: OAUTH_PROXY_URL |
| Database config key: oauth_proxy_url |
| Default: https://oauth2.googleapis.com |
| """ |
| return str( |
| await get_config_value( |
| "oauth_proxy_url", "https://oauth2.googleapis.com", "OAUTH_PROXY_URL" |
| ) |
| ) |
|
|
|
|
| async def get_googleapis_proxy_url() -> str: |
| """ |
| Get Google APIs proxy URL setting. |
| |
| 用于Google APIs调用的代理URL。 |
| |
| Environment variable: GOOGLEAPIS_PROXY_URL |
| Database config key: googleapis_proxy_url |
| Default: https://www.googleapis.com |
| """ |
| return str( |
| await get_config_value( |
| "googleapis_proxy_url", "https://www.googleapis.com", "GOOGLEAPIS_PROXY_URL" |
| ) |
| ) |
|
|
|
|
| async def get_resource_manager_api_url() -> str: |
| """ |
| Get Google Cloud Resource Manager API URL setting. |
| |
| 用于Google Cloud Resource Manager API的URL。 |
| |
| Environment variable: RESOURCE_MANAGER_API_URL |
| Database config key: resource_manager_api_url |
| Default: https://cloudresourcemanager.googleapis.com |
| """ |
| return str( |
| await get_config_value( |
| "resource_manager_api_url", |
| "https://cloudresourcemanager.googleapis.com", |
| "RESOURCE_MANAGER_API_URL", |
| ) |
| ) |
|
|
|
|
| async def get_service_usage_api_url() -> str: |
| """ |
| Get Google Cloud Service Usage API URL setting. |
| |
| 用于Google Cloud Service Usage API的URL。 |
| |
| Environment variable: SERVICE_USAGE_API_URL |
| Database config key: service_usage_api_url |
| Default: https://serviceusage.googleapis.com |
| """ |
| return str( |
| await get_config_value( |
| "service_usage_api_url", "https://serviceusage.googleapis.com", "SERVICE_USAGE_API_URL" |
| ) |
| ) |
|
|
|
|
| async def get_antigravity_api_url() -> str: |
| """ |
| Get Antigravity API URL setting. |
| |
| 用于Google Antigravity API的URL。 |
| |
| Environment variable: ANTIGRAVITY_API_URL |
| Database config key: antigravity_api_url |
| Default: https://daily-cloudcode-pa.sandbox.googleapis.com |
| """ |
| return str( |
| await get_config_value( |
| "antigravity_api_url", |
| "https://daily-cloudcode-pa.sandbox.googleapis.com", |
| "ANTIGRAVITY_API_URL", |
| ) |
| ) |
|
|