# middleware/security_headers.py """ Security headers middleware. Adds standard security headers to all responses: - X-Content-Type-Options: nosniff - X-Frame-Options: SAMEORIGIN - Strict-Transport-Security (HTTPS only) - Referrer-Policy: strict-origin-when-cross-origin - Permissions-Policy: camera=(), microphone=(), geolocation=() """ import logging from collections.abc import Callable from fastapi import Request, Response from starlette.middleware.base import BaseHTTPMiddleware logger = logging.getLogger(__name__) class SecurityHeadersMiddleware(BaseHTTPMiddleware): """Middleware that adds security headers to all responses.""" async def dispatch(self, request: Request, call_next: Callable) -> Response: response = await call_next(request) response.headers["X-Content-Type-Options"] = "nosniff" response.headers["X-Frame-Options"] = "SAMEORIGIN" response.headers["Referrer-Policy"] = "strict-origin-when-cross-origin" response.headers["Permissions-Policy"] = ( "camera=(), microphone=(), geolocation=()" ) # Only add HSTS when the request came over HTTPS if request.url.scheme == "https": response.headers["Strict-Transport-Security"] = ( "max-age=63072000; includeSubDomains" ) return response