fix(auth): support auto-generated temp key in dashboard login

When no MASTER_API_KEY env var is set, AuthManager generates a temp key
but DashboardAuth didn't know about it. Now validate_api_key() also
checks AuthManager as a fallback, so temp key login works for first-time
Docker users.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
airano
2026-02-18 15:56:19 +03:30
parent f303a04322
commit 4a45178d2d
2 changed files with 32 additions and 3 deletions

View File

@@ -1,7 +1,5 @@
"""
Dashboard Authentication - Session-based authentication for Web UI.
Phase K.1: Core Infrastructure
"""
import logging
@@ -91,10 +89,20 @@ class DashboardAuth:
if not api_key:
return False, "", None
# Check master API key
# Check master API key (from env var)
if self.master_api_key and secrets.compare_digest(api_key, self.master_api_key):
return True, "master", None
# Check AuthManager's master key (covers auto-generated temp keys)
try:
from core.auth import get_auth_manager
auth_mgr = get_auth_manager()
if auth_mgr.validate_master_key(api_key):
return True, "master", None
except Exception as e:
logger.debug(f"AuthManager check skipped: {e}")
# Check project API keys with admin scope
try:
from core.api_keys import get_api_key_manager