FastAPI auth tutorial

This commit is contained in:
Aidan Kim 2024-11-17 19:48:57 -05:00
parent d0a315c365
commit 89e7e38cb6
2 changed files with 30 additions and 3 deletions

View File

@ -0,0 +1,27 @@
from typing import Annotated
from fastapi import APIRouter, Depends
from fastapi.security import OAuth2PasswordBearer, OAuth2PasswordRequestForm
from backend.models.user_model import User
api = APIRouter(prefix="/api/auth")
openapi_tags = {
"name": "Authentication",
"description": "Authentication and authorization handling.",
}
oauth2_scheme = OAuth2PasswordBearer(tokenUrl="token")
def decode_token(token):
"""To implement later. Payload for JWT will be a User object returned by this function."""
return token
async def get_user(token: Annotated[str, Depends(oauth2_scheme)]):
user = decode_token(token)
return user
@api.get("/user")
async def get_subject(subject: Annotated[User, Depends(get_user)]):
return subject

View File

@ -3,7 +3,7 @@ from fastapi.responses import JSONResponse
from fastapi.middleware.gzip import GZipMiddleware
from .api import user, health, service, resource, tag
from .api import user, health, service, resource, authentication
description = """
Welcome to the **COMPASS** RESTful Application Programming Interface.
@ -18,13 +18,13 @@ app = FastAPI(
health.openapi_tags,
service.openapi_tags,
resource.openapi_tags,
tag.openapi_tags
authentication.openapi_tags,
],
)
app.add_middleware(GZipMiddleware)
feature_apis = [user, health, service, resource, tag]
feature_apis = [user, health, service, resource, authentication]
for feature_api in feature_apis:
app.include_router(feature_api.api)