mirror of https://github.com/Bunsly/JobSpy
23 lines
849 B
Python
23 lines
849 B
Python
from fastapi import APIRouter, Depends, HTTPException, status
|
|
from fastapi.security import OAuth2PasswordRequestForm
|
|
|
|
from api.core.users import Token
|
|
from api.auth.db_utils import authenticate_user
|
|
from api.auth.auth_utils import create_access_token
|
|
|
|
router = APIRouter(prefix="/token", tags=["token"])
|
|
|
|
|
|
@router.post("/", response_model=Token)
|
|
async def login_for_access_token(form_data: OAuth2PasswordRequestForm = Depends()):
|
|
user = authenticate_user(form_data.username, form_data.password)
|
|
if not user:
|
|
raise HTTPException(
|
|
status_code=status.HTTP_401_UNAUTHORIZED,
|
|
detail="Incorrect username or password",
|
|
headers={"WWW-Authenticate": "Bearer"},
|
|
)
|
|
|
|
access_token = create_access_token(data={"sub": user.username})
|
|
return {"access_token": access_token, "token_type": "bearer"}
|