Some checks failed
Aegis CI / lint-and-test (push) Has been cancelled
Foundational changes required before any new feature work can begin. - 0.1 Redis infrastructure: add redis:7-alpine to docker-compose dev and prod, REDIS_URL config, singleton client in app/infrastructure/redis_client.py - 0.2 Token blacklist on Redis SEC-001: replace in-memory dict with Redis SETEX keyed by jti, auto-expiring TTL derived from token exp - 0.3 Database indexes SR-006: Alembic migration b019 with 5 composite indexes for scoring, MTTD/MTTR, remediation, and notification queries - 0.4 Domain exceptions TD-003: app/domain/exceptions.py with typed errors, error_handler middleware mapping them to HTTP, services decoupled from FastAPI - 0.5 Fix silenced exceptions TD-007: replace 4 bare except-pass blocks in test_workflow_service with logger.warning with exc_info - 0.6 CI pipeline TD-009: GitHub Actions workflow with Postgres and Redis service containers, ruff lint, pytest; ruff.toml for baseline config
103 lines
3.4 KiB
Python
103 lines
3.4 KiB
Python
"""
|
|
Security utilities: password hashing and JWT token management.
|
|
|
|
This module provides pure functions for:
|
|
- Hashing and verifying passwords using bcrypt via passlib.
|
|
- Creating JWT access tokens using python-jose.
|
|
- Managing a Redis-backed token blacklist for revocation.
|
|
|
|
No endpoints are defined here.
|
|
"""
|
|
|
|
import logging
|
|
import uuid as _uuid
|
|
from datetime import datetime, timedelta, timezone
|
|
|
|
from jose import jwt
|
|
from passlib.context import CryptContext
|
|
|
|
from app.config import settings
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Password hashing
|
|
# ---------------------------------------------------------------------------
|
|
|
|
pwd_context = CryptContext(schemes=["bcrypt"], deprecated="auto")
|
|
|
|
|
|
def hash_password(password: str) -> str:
|
|
"""Return a bcrypt hash of *password*."""
|
|
return pwd_context.hash(password)
|
|
|
|
|
|
def verify_password(plain: str, hashed: str) -> bool:
|
|
"""Return ``True`` if *plain* matches the bcrypt *hashed* value."""
|
|
return pwd_context.verify(plain, hashed)
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# JWT tokens
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
def create_access_token(data: dict) -> str:
|
|
"""Create a signed JWT containing *data* plus ``exp`` and ``jti`` claims.
|
|
|
|
- ``jti`` (JWT ID): unique identifier that enables token revocation.
|
|
- ``exp``: expiration timestamp based on ``ACCESS_TOKEN_EXPIRE_MINUTES``.
|
|
"""
|
|
to_encode = data.copy()
|
|
expire = datetime.now(timezone.utc) + timedelta(
|
|
minutes=settings.ACCESS_TOKEN_EXPIRE_MINUTES,
|
|
)
|
|
to_encode.update({
|
|
"exp": expire,
|
|
"jti": str(_uuid.uuid4()),
|
|
})
|
|
return jwt.encode(to_encode, settings.SECRET_KEY, algorithm=settings.ALGORITHM)
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Token blacklist (Redis-backed)
|
|
# ---------------------------------------------------------------------------
|
|
# Each revoked token's ``jti`` is stored in Redis with a TTL equal to the
|
|
# token's remaining lifetime. This means entries auto-expire exactly when
|
|
# the token would have become invalid anyway — no manual cleanup needed.
|
|
#
|
|
# Redis survives backend restarts, so blacklisted tokens stay revoked
|
|
# across deploys and multi-worker setups.
|
|
# ---------------------------------------------------------------------------
|
|
|
|
_BLACKLIST_PREFIX = "blacklist:"
|
|
|
|
|
|
def blacklist_token(jti: str, exp: float) -> None:
|
|
"""Add *jti* to the Redis blacklist with a TTL derived from *exp*.
|
|
|
|
*exp* is the token's ``exp`` claim (epoch timestamp). The TTL is set
|
|
to ``exp - now`` so the key vanishes when the token would have expired
|
|
naturally.
|
|
"""
|
|
from app.infrastructure.redis_client import get_redis
|
|
|
|
ttl = max(int(exp - datetime.now(timezone.utc).timestamp()), 1)
|
|
try:
|
|
r = get_redis()
|
|
r.setex(f"{_BLACKLIST_PREFIX}{jti}", ttl, "1")
|
|
except Exception:
|
|
logger.warning("Failed to blacklist token %s in Redis", jti, exc_info=True)
|
|
|
|
|
|
def is_token_blacklisted(jti: str) -> bool:
|
|
"""Return ``True`` if *jti* has been revoked (exists in Redis)."""
|
|
from app.infrastructure.redis_client import get_redis
|
|
|
|
try:
|
|
r = get_redis()
|
|
return r.exists(f"{_BLACKLIST_PREFIX}{jti}") > 0
|
|
except Exception:
|
|
logger.warning("Failed to check blacklist for %s in Redis", jti, exc_info=True)
|
|
return False
|