|
@ -1,5 +1,5 @@ |
|
|
from datetime import datetime, timedelta, timezone |
|
|
from datetime import datetime, timedelta, timezone |
|
|
from typing import Annotated, List, Union |
|
|
from typing import Annotated, Union |
|
|
|
|
|
|
|
|
import jwt |
|
|
import jwt |
|
|
from fastapi import Depends, FastAPI, HTTPException, Security, status |
|
|
from fastapi import Depends, FastAPI, HTTPException, Security, status |
|
@ -44,7 +44,7 @@ class Token(BaseModel): |
|
|
|
|
|
|
|
|
class TokenData(BaseModel): |
|
|
class TokenData(BaseModel): |
|
|
username: Union[str, None] = None |
|
|
username: Union[str, None] = None |
|
|
scopes: List[str] = [] |
|
|
scopes: list[str] = [] |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class User(BaseModel): |
|
|
class User(BaseModel): |
|
@ -116,7 +116,7 @@ async def get_current_user( |
|
|
) |
|
|
) |
|
|
try: |
|
|
try: |
|
|
payload = jwt.decode(token, SECRET_KEY, algorithms=[ALGORITHM]) |
|
|
payload = jwt.decode(token, SECRET_KEY, algorithms=[ALGORITHM]) |
|
|
username: str = payload.get("sub") |
|
|
username = payload.get("sub") |
|
|
if username is None: |
|
|
if username is None: |
|
|
raise credentials_exception |
|
|
raise credentials_exception |
|
|
token_scopes = payload.get("scopes", []) |
|
|
token_scopes = payload.get("scopes", []) |
|
|