Spaces:
Sleeping
Sleeping
| from datetime import datetime, timedelta, timezone | |
| from typing import Optional | |
| from jose import jwt | |
| from passlib.context import CryptContext | |
| from .config import get_settings | |
| pwd_context = CryptContext(schemes=["bcrypt"], deprecated="auto") | |
| def verify_password(plain_password: str, hashed_password: str) -> bool: | |
| return pwd_context.verify(plain_password, hashed_password) | |
| def get_password_hash(password: str) -> str: | |
| return pwd_context.hash(password) | |
| def create_access_token(subject: str, expires_delta: Optional[timedelta] = None) -> str: | |
| settings = get_settings() | |
| if expires_delta is None: | |
| expires_delta = timedelta(minutes=settings.access_token_expire_minutes) | |
| expire = datetime.now(timezone.utc) + expires_delta | |
| to_encode = {"sub": subject, "exp": expire} | |
| return jwt.encode(to_encode, settings.jwt_secret_key, algorithm=settings.jwt_algorithm) | |