2025-12-09 17:47:34 +08:00
|
|
|
from datetime import datetime, timedelta, timezone
|
2025-11-26 21:11:12 +08:00
|
|
|
from typing import Any, Union
|
|
|
|
|
from jose import jwt
|
2025-12-31 16:40:33 +08:00
|
|
|
import bcrypt # Import first
|
|
|
|
|
|
|
|
|
|
# MonkeyPatch passlib/bcrypt compatibility (passlib expects __about__)
|
|
|
|
|
if not hasattr(bcrypt, "__about__"):
|
|
|
|
|
from types import SimpleNamespace
|
|
|
|
|
bcrypt.__about__ = SimpleNamespace(__version__=bcrypt.__version__)
|
|
|
|
|
|
2025-11-26 21:11:12 +08:00
|
|
|
from passlib.context import CryptContext
|
|
|
|
|
from app.core.config import settings
|
|
|
|
|
|
|
|
|
|
pwd_context = CryptContext(schemes=["bcrypt"], deprecated="auto")
|
|
|
|
|
|
|
|
|
|
ALGORITHM = settings.ALGORITHM
|
|
|
|
|
|
|
|
|
|
def create_access_token(
|
|
|
|
|
subject: Union[str, Any], expires_delta: timedelta = None
|
|
|
|
|
) -> str:
|
|
|
|
|
if expires_delta:
|
2025-12-09 17:47:34 +08:00
|
|
|
expire = datetime.now(timezone.utc) + expires_delta
|
2025-11-26 21:11:12 +08:00
|
|
|
else:
|
2025-12-09 17:47:34 +08:00
|
|
|
expire = datetime.now(timezone.utc) + timedelta(
|
2025-11-26 21:11:12 +08:00
|
|
|
minutes=settings.ACCESS_TOKEN_EXPIRE_MINUTES
|
|
|
|
|
)
|
|
|
|
|
to_encode = {"exp": expire, "sub": str(subject)}
|
|
|
|
|
encoded_jwt = jwt.encode(to_encode, settings.SECRET_KEY, algorithm=ALGORITHM)
|
|
|
|
|
return encoded_jwt
|
|
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
|
2025-11-27 18:01:57 +08:00
|
|
|
|
2025-12-11 19:09:10 +08:00
|
|
|
|
2025-12-11 20:33:46 +08:00
|
|
|
|
|
|
|
|
|
2025-12-12 15:50:48 +08:00
|
|
|
|