dvirlabs e4d37dea3f
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Fix bcrypt password verification error
- Added fallback to use bcrypt directly in verify_password
- Ensures password verification works despite passlib version conflicts
- Both hash and verify now handle bcrypt compatibility issue
2026-05-08 16:21:44 +03:00

110 lines
3.4 KiB
Python

from datetime import datetime, timedelta
from typing import Optional
from passlib.context import CryptContext
from jose import JWTError, jwt
from fastapi import Depends, HTTPException, status
from fastapi.security import HTTPBearer, HTTPAuthorizationCredentials
from app.config import settings
from app.models import User
from sqlalchemy.orm import Session
from app.database.database import get_db
pwd_context = CryptContext(schemes=["bcrypt"], deprecated="auto")
security = HTTPBearer()
def verify_password(plain_password: str, hashed_password: str) -> bool:
try:
return pwd_context.verify(plain_password, hashed_password)
except ValueError as e:
if "password cannot be longer than 72 bytes" in str(e):
# Fallback: use bcrypt directly to avoid passlib version issues
import bcrypt
return bcrypt.checkpw(
plain_password.encode('utf-8'),
hashed_password.encode('utf-8')
)
raise
def get_password_hash(password: str) -> str:
try:
return pwd_context.hash(password)
except Exception as e:
# Fallback: use bcrypt directly to avoid passlib version issues
import bcrypt
return bcrypt.hashpw(
password.encode('utf-8'),
bcrypt.gensalt()
).decode('utf-8')
def create_access_token(data: dict, expires_delta: Optional[timedelta] = None) -> str:
to_encode = data.copy()
if expires_delta:
expire = datetime.utcnow() + expires_delta
else:
expire = datetime.utcnow() + timedelta(
minutes=settings.access_token_expire_minutes
)
to_encode.update({"exp": expire})
encoded_jwt = jwt.encode(
to_encode, settings.jwt_secret_key, algorithm=settings.jwt_algorithm
)
return encoded_jwt
def verify_token(token: str) -> Optional[int]:
try:
payload = jwt.decode(
token, settings.jwt_secret_key, algorithms=[settings.jwt_algorithm]
)
user_id_str: str = payload.get("sub")
if user_id_str is None:
return None
# Convert string to integer
user_id = int(user_id_str)
return user_id
except JWTError as e:
return None
except (ValueError, TypeError) as e:
return None
except Exception as e:
return None
def authenticate_user(db: Session, email: str, password: str) -> Optional[User]:
user = db.query(User).filter(User.email == email).first()
if not user or not verify_password(password, user.hashed_password):
return None
return user
def get_current_user(
credentials: HTTPAuthorizationCredentials = Depends(security),
db: Session = Depends(get_db),
) -> User:
token = credentials.credentials
user_id = verify_token(token)
if user_id is None:
raise HTTPException(
status_code=status.HTTP_401_UNAUTHORIZED,
detail="Invalid authentication credentials",
)
user = db.query(User).filter(User.id == user_id).first()
if user is None:
raise HTTPException(
status_code=status.HTTP_401_UNAUTHORIZED,
detail="User not found",
)
return user
def get_current_admin_user(current_user: User = Depends(get_current_user)) -> User:
if not current_user.is_admin:
raise HTTPException(
status_code=status.HTTP_403_FORBIDDEN,
detail="Admin access required",
)
return current_user