Added ref login

This commit is contained in:
2026-03-15 21:41:40 +01:00 Verified
parent f42f93abbe
commit 8031e8cfd5
18 changed files with 120 additions and 138 deletions
+19 -12
View File
@@ -6,11 +6,13 @@ from fastapi import APIRouter, Depends, HTTPException, status
from fastapi.security import OAuth2PasswordRequestForm
from ..schemas import Token
from ..core.auth import create_access_token, get_current_user
from ..core.auth import create_access_token, get_authenticated_user
from ..core.config import (
ACCESS_TOKEN_EXPIRE_MINUTES,
ADMIN_HASH,
ADMIN_USER,
REF_HASH,
REF_USER,
verify_password,
)
@@ -21,14 +23,18 @@ router = APIRouter(prefix="/auth", tags=["Auth"])
async def login_for_access_token(
form_data: Annotated[OAuth2PasswordRequestForm, Depends()],
):
if form_data.username != ADMIN_USER:
raise HTTPException(
status_code=status.HTTP_401_UNAUTHORIZED,
detail="Incorrect username or password",
headers={"WWW-Authenticate": "Bearer"},
)
role = None
if not verify_password(form_data.password, ADMIN_HASH):
if form_data.username == ADMIN_USER and verify_password(
form_data.password, ADMIN_HASH
):
role = "admin"
elif form_data.username == REF_USER and verify_password(
form_data.password, REF_HASH
):
role = "ref"
if not role:
raise HTTPException(
status_code=status.HTTP_401_UNAUTHORIZED,
detail="Incorrect username or password",
@@ -37,12 +43,13 @@ async def login_for_access_token(
access_token_expires = timedelta(minutes=ACCESS_TOKEN_EXPIRE_MINUTES)
access_token = create_access_token(
data={"sub": form_data.username}, expires_delta=access_token_expires
data={"sub": form_data.username, "role": role},
expires_delta=access_token_expires,
)
return {"access_token": access_token, "token_type": "bearer"}
return {"access_token": access_token, "token_type": "bearer", "role": role}
@router.get("/check")
async def check_auth(user: str = Depends(get_current_user)):
return {"is_admin": True, "user": user}
async def check_auth(user: dict = Depends(get_authenticated_user)):
return {"role": user.get("role"), "user": user.get("sub")}