2026-04-06 12:41:49 +01:00
|
|
|
"""
|
|
|
|
|
Router endpoints for user module
|
|
|
|
|
|
|
|
|
|
Endpoints:
|
2026-05-20 15:23:40 +01:00
|
|
|
- [get]/self/claims - Retrieves user's OIDC claims
|
|
|
|
|
- [get]/self/db - Retrieves the user data from the db that corresponds to the current OIDC user
|
|
|
|
|
- [get]/self/orgs - Retrieves all organisations associated with the current user
|
|
|
|
|
- [get]/self/orgs/admin - Retrieves only admin organisations for the current user
|
2026-04-06 12:41:49 +01:00
|
|
|
- [get]/{user_id} - Retrieves a specific user by their ID
|
|
|
|
|
- [get]/{user_id}/orgs - Retrieves all organisations associated with a specific user
|
|
|
|
|
- [get]/{user_id}/orgs/admin - Retrieves only admin organisations for a specific user
|
|
|
|
|
- [delete]/{user_id} - Deletes a user from the db by their db ID
|
|
|
|
|
"""
|
2026-05-19 11:11:03 +01:00
|
|
|
from typing import Annotated
|
|
|
|
|
|
2026-05-20 15:23:40 +01:00
|
|
|
from fastapi import APIRouter
|
2026-04-06 12:41:49 +01:00
|
|
|
from fastapi.params import Path
|
2026-05-20 15:23:40 +01:00
|
|
|
from starlette import status
|
2026-04-06 12:41:49 +01:00
|
|
|
|
|
|
|
|
from src.user.models import User
|
2026-05-25 12:06:24 +01:00
|
|
|
from src.user.schemas import UserResponse, OIDCClaims
|
2026-05-20 15:23:40 +01:00
|
|
|
from src.user.exceptions import UserNotFoundException
|
2026-04-06 12:41:49 +01:00
|
|
|
|
|
|
|
|
from src.auth.service import claims_dependency
|
|
|
|
|
from src.database import db_dependency
|
|
|
|
|
|
|
|
|
|
router = APIRouter(
|
|
|
|
|
prefix="/user",
|
2026-05-20 15:23:40 +01:00
|
|
|
tags=["User"],
|
2026-04-06 12:41:49 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
2026-05-20 15:23:40 +01:00
|
|
|
@router.get("/self/claims", response_model=OIDCClaims, status_code=status.HTTP_200_OK, responses={
|
|
|
|
|
status.HTTP_200_OK: {"description": "Successful retrieval from database"},
|
|
|
|
|
})
|
2026-04-06 12:41:49 +01:00
|
|
|
async def current_user_claims(user: claims_dependency):
|
2026-05-20 15:23:40 +01:00
|
|
|
"""
|
|
|
|
|
Returns the full OIDC claims associated with the currently logged-in user.
|
|
|
|
|
"""
|
|
|
|
|
user["allowed_origins"] = user.get("allowed-origins", [])
|
2026-04-06 12:41:49 +01:00
|
|
|
return user
|
|
|
|
|
|
|
|
|
|
|
2026-05-20 15:23:40 +01:00
|
|
|
@router.get("/self/db", response_model=UserResponse, status_code=status.HTTP_200_OK, responses={
|
|
|
|
|
status.HTTP_404_NOT_FOUND: {"description": "User not found"},
|
|
|
|
|
status.HTTP_200_OK: {"description": "Successful retrieval from database"},
|
|
|
|
|
})
|
2026-04-06 12:41:49 +01:00
|
|
|
async def current_user(user: claims_dependency, db: db_dependency):
|
2026-05-20 15:23:40 +01:00
|
|
|
"""
|
|
|
|
|
Returns the database details associated with the currently logged-in user.
|
|
|
|
|
"""
|
|
|
|
|
user_id = user.get("db_id", None)
|
|
|
|
|
if user_id is None:
|
|
|
|
|
raise UserNotFoundException()
|
2026-04-06 12:41:49 +01:00
|
|
|
|
2026-05-20 15:23:40 +01:00
|
|
|
user_model = (db.query(User).filter(User.id == user_id).first())
|
2026-04-06 12:41:49 +01:00
|
|
|
if user_model is None:
|
2026-05-20 15:23:40 +01:00
|
|
|
raise UserNotFoundException(user_id=user_id)
|
2026-04-06 12:41:49 +01:00
|
|
|
|
|
|
|
|
return user_model
|
|
|
|
|
|
|
|
|
|
|
2026-05-20 15:23:40 +01:00
|
|
|
@router.get("/{user_id}", response_model=UserResponse, status_code=status.HTTP_200_OK, responses={
|
|
|
|
|
status.HTTP_404_NOT_FOUND: {"description": "User not found"},
|
|
|
|
|
status.HTTP_200_OK: {"description": "Successful retrieval from database"},
|
|
|
|
|
})
|
|
|
|
|
async def get_user_by_id(db: db_dependency, user_id: Annotated[int, Path(gt=0,description="User database ID")]):
|
|
|
|
|
"""
|
|
|
|
|
Returns the database details associated with the provided user ID.
|
|
|
|
|
"""
|
2026-04-06 12:41:49 +01:00
|
|
|
user_model = (db.query(User).filter(User.id == user_id).first())
|
|
|
|
|
if user_model is None:
|
2026-05-20 15:23:40 +01:00
|
|
|
raise UserNotFoundException(user_id=user_id)
|
2026-04-06 12:41:49 +01:00
|
|
|
|
|
|
|
|
return user_model
|
|
|
|
|
|
|
|
|
|
|
2026-05-20 15:23:40 +01:00
|
|
|
@router.delete("/{user_id}", status_code=status.HTTP_204_NO_CONTENT, responses={
|
|
|
|
|
status.HTTP_204_NO_CONTENT: {"description": "User deleted"},
|
|
|
|
|
status.HTTP_404_NOT_FOUND: {"description": "User not found"},
|
|
|
|
|
})
|
|
|
|
|
async def delete_user_by_id(user_id: Annotated[int, Path(gt=0)], db: db_dependency):
|
|
|
|
|
"""
|
|
|
|
|
Deletes the user with the provided ID from the database. This will not remove them from OIDC, and they will be automatically readded on next login.
|
|
|
|
|
"""
|
2026-04-06 12:41:49 +01:00
|
|
|
user_model = (db.query(User).filter(User.id == user_id).first())
|
|
|
|
|
if user_model is None:
|
2026-05-20 15:23:40 +01:00
|
|
|
raise UserNotFoundException(user_id=user_id)
|
2026-04-06 12:41:49 +01:00
|
|
|
db.delete(user_model)
|
|
|
|
|
db.commit()
|