from datetime import datetime, timedelta from typing import Optional from jose import JWTError, jwt from passlib.context import CryptContext from fastapi import Depends, HTTPException, status from fastapi.security import OAuth2PasswordBearer # Konfigurationsvariablen SECRET_KEY = "dein-geheimer-schlüssel" # In Produktion aus Umgebungsvariablen laden! ALGORITHM = "HS256" ACCESS_TOKEN_EXPIRE_MINUTES = 600 # Password-Hashing pwd_context = CryptContext(schemes=["bcrypt"], deprecated="auto") # OAuth2 Setup oauth2_scheme = OAuth2PasswordBearer(tokenUrl="token") # Beispiel-Benutzer (in Produktion aus Datenbank laden) fake_users_db = { "admin": { "username": "admin", "hashed_password": pwd_context.hash("admin123"), } } def verify_password(plain_password, hashed_password): return pwd_context.verify(plain_password, hashed_password) def get_user(db, username: str): if username in db: user_dict = db[username] return user_dict return None def authenticate_user(fake_db, username: str, password: str): user = get_user(fake_db, username) if not user: return False if not verify_password(password, user["hashed_password"]): return False return user def create_access_token(data: dict, expires_delta: Optional[timedelta] = None): to_encode = data.copy() if expires_delta: expire = datetime.utcnow() + expires_delta else: expire = datetime.utcnow() + timedelta(minutes=15) to_encode.update({"exp": expire}) encoded_jwt = jwt.encode(to_encode, SECRET_KEY, algorithm=ALGORITHM) return encoded_jwt async def get_current_user(token: str = Depends(oauth2_scheme)): credentials_exception = HTTPException( status_code=status.HTTP_401_UNAUTHORIZED, detail="Ungültige Authentifizierungsdaten", headers={"WWW-Authenticate": "Bearer"}, ) try: payload = jwt.decode(token, SECRET_KEY, algorithms=[ALGORITHM]) username: str = payload.get("sub") if username is None: raise credentials_exception except JWTError: raise credentials_exception user = get_user(fake_users_db, username) if user is None: raise credentials_exception return user