2026-07-31 00:58:05 +02:00
|
|
|
"""Redis-based rate limiting for auth endpoints and general API."""
|
2026-06-29 00:10:10 +02:00
|
|
|
|
|
|
|
|
from __future__ import annotations
|
|
|
|
|
|
2026-07-31 00:58:05 +02:00
|
|
|
import logging
|
|
|
|
|
|
2026-06-29 00:10:10 +02:00
|
|
|
from fastapi import HTTPException, Request, status
|
2026-07-31 00:58:05 +02:00
|
|
|
from starlette.middleware.base import BaseHTTPMiddleware
|
|
|
|
|
from starlette.responses import JSONResponse
|
2026-06-29 00:10:10 +02:00
|
|
|
|
|
|
|
|
from app.core.auth import get_redis
|
|
|
|
|
|
2026-07-31 00:58:05 +02:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
2026-06-29 00:10:10 +02:00
|
|
|
|
|
|
|
|
async def check_rate_limit(
|
|
|
|
|
redis_key: str,
|
|
|
|
|
max_attempts: int,
|
|
|
|
|
window_seconds: int,
|
|
|
|
|
) -> None:
|
|
|
|
|
"""Check rate limit using Redis INCR + EXPIRE.
|
2026-08-04 14:34:06 +02:00
|
|
|
|
|
|
|
|
Falls back to in-memory rate limiter when Redis is unavailable.
|
2026-06-29 00:10:10 +02:00
|
|
|
Raises 429 if limit exceeded.
|
|
|
|
|
"""
|
2026-08-04 14:34:06 +02:00
|
|
|
from app.core.resilience import get_circuit, get_inmemory_limiter
|
|
|
|
|
|
|
|
|
|
circuit = get_circuit("redis")
|
|
|
|
|
if await circuit.can_proceed():
|
|
|
|
|
try:
|
|
|
|
|
redis = get_redis()
|
|
|
|
|
current = await redis.incr(redis_key)
|
|
|
|
|
if current == 1:
|
|
|
|
|
await redis.expire(redis_key, window_seconds)
|
|
|
|
|
if current > max_attempts:
|
|
|
|
|
ttl = await redis.ttl(redis_key)
|
|
|
|
|
raise HTTPException(
|
|
|
|
|
status_code=status.HTTP_429_TOO_MANY_REQUESTS,
|
|
|
|
|
detail={
|
|
|
|
|
"detail": "Rate limit exceeded",
|
|
|
|
|
"code": "rate_limited",
|
|
|
|
|
"retry_after": ttl,
|
|
|
|
|
},
|
|
|
|
|
headers={"Retry-After": str(ttl)} if ttl > 0 else {},
|
|
|
|
|
)
|
|
|
|
|
await circuit.record_success()
|
|
|
|
|
return
|
|
|
|
|
except HTTPException:
|
|
|
|
|
raise
|
|
|
|
|
except Exception as exc:
|
|
|
|
|
logger.warning("Redis rate limit failed: %s — using in-memory fallback", exc)
|
|
|
|
|
await circuit.record_failure()
|
|
|
|
|
|
|
|
|
|
# In-memory fallback
|
|
|
|
|
limiter = get_inmemory_limiter()
|
|
|
|
|
allowed, retry_after = await limiter.check(redis_key, max_attempts, window_seconds)
|
|
|
|
|
if not allowed:
|
2026-06-29 00:10:10 +02:00
|
|
|
raise HTTPException(
|
|
|
|
|
status_code=status.HTTP_429_TOO_MANY_REQUESTS,
|
|
|
|
|
detail={
|
|
|
|
|
"detail": "Rate limit exceeded",
|
|
|
|
|
"code": "rate_limited",
|
2026-08-04 14:34:06 +02:00
|
|
|
"retry_after": retry_after,
|
2026-06-29 00:10:10 +02:00
|
|
|
},
|
2026-08-04 14:34:06 +02:00
|
|
|
headers={"Retry-After": str(retry_after)} if retry_after > 0 else {},
|
2026-06-29 00:10:10 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
async def reset_rate_limit(redis_key: str) -> None:
|
2026-08-04 14:34:06 +02:00
|
|
|
"""Reset a rate limit counter (e.g. on successful login).
|
|
|
|
|
|
|
|
|
|
Resets both Redis and in-memory counters.
|
|
|
|
|
"""
|
|
|
|
|
from app.core.resilience import get_circuit, get_inmemory_limiter
|
|
|
|
|
|
|
|
|
|
# Always reset in-memory
|
|
|
|
|
limiter = get_inmemory_limiter()
|
|
|
|
|
await limiter.reset(redis_key)
|
|
|
|
|
|
|
|
|
|
# Try Redis
|
|
|
|
|
circuit = get_circuit("redis")
|
|
|
|
|
if await circuit.can_proceed():
|
|
|
|
|
try:
|
|
|
|
|
redis = get_redis()
|
|
|
|
|
await redis.delete(redis_key)
|
|
|
|
|
await circuit.record_success()
|
|
|
|
|
except Exception as exc:
|
|
|
|
|
logger.warning("Redis rate limit reset failed: %s", exc)
|
|
|
|
|
await circuit.record_failure()
|
2026-06-29 00:10:10 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
def get_client_ip(request: Request) -> str:
|
2026-07-26 20:49:15 +02:00
|
|
|
"""Extract client IP from request.
|
|
|
|
|
|
|
|
|
|
Only trusts X-Forwarded-For if the direct client is a trusted proxy
|
|
|
|
|
(configured via TRUSTED_PROXY_CIDRS env var, comma-separated CIDRs).
|
|
|
|
|
This prevents IP spoofing to bypass rate limits.
|
|
|
|
|
"""
|
|
|
|
|
direct_ip = request.client.host if request.client else "unknown"
|
|
|
|
|
|
|
|
|
|
# Check if the direct client is a trusted proxy
|
|
|
|
|
from app.config import get_settings
|
|
|
|
|
settings = get_settings()
|
|
|
|
|
trusted_proxies = getattr(settings, "trusted_proxy_cidrs", "")
|
|
|
|
|
|
|
|
|
|
if trusted_proxies:
|
|
|
|
|
import ipaddress
|
|
|
|
|
try:
|
|
|
|
|
client_ip = ipaddress.ip_address(direct_ip)
|
|
|
|
|
for cidr in trusted_proxies.split(","):
|
|
|
|
|
cidr = cidr.strip()
|
|
|
|
|
if cidr and client_ip in ipaddress.ip_network(cidr, strict=False):
|
|
|
|
|
# Trusted proxy — use X-Forwarded-For
|
|
|
|
|
forwarded = request.headers.get("x-forwarded-for")
|
|
|
|
|
if forwarded:
|
|
|
|
|
# Use the leftmost (original client) IP
|
|
|
|
|
return forwarded.split(",")[0].strip()
|
|
|
|
|
# Fallback to X-Real-IP
|
|
|
|
|
real_ip = request.headers.get("x-real-ip")
|
|
|
|
|
if real_ip:
|
|
|
|
|
return real_ip.strip()
|
|
|
|
|
break
|
|
|
|
|
except (ValueError, TypeError):
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
# Not a trusted proxy or no trusted proxies configured — use direct IP
|
|
|
|
|
return direct_ip
|
2026-07-31 00:58:05 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
class GeneralRateLimitMiddleware(BaseHTTPMiddleware):
|
|
|
|
|
"""Apply general rate limiting to all API routes."""
|
|
|
|
|
|
|
|
|
|
# Paths to skip rate limiting
|
|
|
|
|
SKIP_PATHS = {"/api/v1/health", "/api/v1/health/live", "/api/v1/health/ready", "/api/v1/metrics"}
|
|
|
|
|
|
|
|
|
|
async def dispatch(self, request: Request, call_next):
|
|
|
|
|
from app.config import get_settings
|
|
|
|
|
settings = get_settings()
|
|
|
|
|
path = request.url.path
|
|
|
|
|
|
|
|
|
|
# Skip health and metrics endpoints
|
|
|
|
|
if path in self.SKIP_PATHS or path.startswith("/docs") or path.startswith("/redoc"):
|
|
|
|
|
return await call_next(request)
|
|
|
|
|
|
|
|
|
|
# Only rate limit API routes
|
|
|
|
|
if not path.startswith("/api/"):
|
|
|
|
|
return await call_next(request)
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
ip = get_client_ip(request)
|
|
|
|
|
await check_rate_limit(
|
|
|
|
|
f"rate:general:{ip}",
|
|
|
|
|
settings.rate_limit_general_max,
|
|
|
|
|
settings.rate_limit_general_window,
|
|
|
|
|
)
|
|
|
|
|
except HTTPException as exc:
|
|
|
|
|
return JSONResponse(
|
|
|
|
|
status_code=exc.status_code,
|
|
|
|
|
content=exc.detail,
|
|
|
|
|
headers=exc.headers,
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
return await call_next(request)
|