|
| 1 | +from typing import Any |
| 2 | + |
| 3 | +from fastapi import APIRouter, HTTPException |
| 4 | +from sqlmodel import func, select |
| 5 | + |
| 6 | +from app.api.deps import CurrentUser, SessionDep |
| 7 | +from app.core.security import generate_apikey, generate_short_apikey, get_password_hash |
| 8 | +from app.models import ApiKey, ApiKeyCreate, ApiKeyOut, ApiKeysOutPublic, Message, Team |
| 9 | + |
| 10 | +router = APIRouter() |
| 11 | + |
| 12 | + |
| 13 | +@router.get("/", response_model=ApiKeysOutPublic) |
| 14 | +def read_api_keys( |
| 15 | + session: SessionDep, |
| 16 | + current_user: CurrentUser, |
| 17 | + team_id: int, |
| 18 | + skip: int = 0, |
| 19 | + limit: int = 100, |
| 20 | +) -> Any: |
| 21 | + """Read api keys""" |
| 22 | + if current_user.is_superuser: |
| 23 | + count_statement = select(func.count()).select_from(ApiKey) |
| 24 | + count = session.exec(count_statement).one() |
| 25 | + statement = ( |
| 26 | + select(ApiKey).where(ApiKey.team_id == team_id).offset(skip).limit(limit) |
| 27 | + ) |
| 28 | + apikeys = session.exec(statement).all() |
| 29 | + else: |
| 30 | + count_statement = ( |
| 31 | + select(func.count()) |
| 32 | + .select_from(ApiKey) |
| 33 | + .join(Team) |
| 34 | + .where(Team.owner_id == current_user.id, ApiKey.team_id == team_id) |
| 35 | + ) |
| 36 | + count = session.exec(count_statement).one() |
| 37 | + statement = ( |
| 38 | + select(ApiKey) |
| 39 | + .join(Team) |
| 40 | + .where(Team.owner_id == current_user.id, ApiKey.team_id == team_id) |
| 41 | + .offset(skip) |
| 42 | + .limit(limit) |
| 43 | + ) |
| 44 | + apikeys = session.exec(statement).all() |
| 45 | + |
| 46 | + return ApiKeysOutPublic(data=apikeys, count=count) |
| 47 | + |
| 48 | + |
| 49 | +@router.post("/", response_model=ApiKeyOut) |
| 50 | +def create_api_key( |
| 51 | + session: SessionDep, |
| 52 | + current_user: CurrentUser, |
| 53 | + team_id: int, |
| 54 | + apikey_in: ApiKeyCreate, |
| 55 | +) -> Any: |
| 56 | + """Create API key for a team.""" |
| 57 | + |
| 58 | + # Check if the current user is not a superuser |
| 59 | + if not current_user.is_superuser: |
| 60 | + # Validate the provided team_id and check ownership |
| 61 | + team = session.get(Team, team_id) |
| 62 | + if not team: |
| 63 | + raise HTTPException(status_code=404, detail="Team not found.") |
| 64 | + if team.owner_id != current_user.id: |
| 65 | + raise HTTPException(status_code=403, detail="Not enough permissions.") |
| 66 | + |
| 67 | + # Generate API key and hash it |
| 68 | + key = generate_apikey() |
| 69 | + hashed_key = get_password_hash(key) |
| 70 | + short_key = generate_short_apikey(key) |
| 71 | + |
| 72 | + # Create the API key object |
| 73 | + description = apikey_in.description |
| 74 | + apikey = ApiKey( |
| 75 | + team_id=team_id, |
| 76 | + hashed_key=hashed_key, |
| 77 | + short_key=short_key, |
| 78 | + description=None if not description or not description.strip() else description, |
| 79 | + ) |
| 80 | + |
| 81 | + # Save the new API key to the database |
| 82 | + session.add(apikey) |
| 83 | + session.commit() |
| 84 | + session.refresh(apikey) |
| 85 | + |
| 86 | + return ApiKeyOut( |
| 87 | + id=apikey.id, |
| 88 | + description=apikey.description, |
| 89 | + key=key, |
| 90 | + created_at=apikey.created_at, |
| 91 | + ) |
| 92 | + |
| 93 | + |
| 94 | +@router.delete("/{id}") |
| 95 | +def delete_api_key( |
| 96 | + session: SessionDep, current_user: CurrentUser, team_id: int, id: int |
| 97 | +) -> Any: |
| 98 | + """Delete API key for a team.""" |
| 99 | + if current_user.is_superuser: |
| 100 | + statement = ( |
| 101 | + select(ApiKey).join(Team).where(ApiKey.id == id, ApiKey.team_id == team_id) |
| 102 | + ) |
| 103 | + apikey = session.exec(statement).first() |
| 104 | + else: |
| 105 | + statement = ( |
| 106 | + select(ApiKey) |
| 107 | + .join(Team) |
| 108 | + .where( |
| 109 | + ApiKey.id == id, |
| 110 | + ApiKey.team_id == team_id, |
| 111 | + Team.owner_id == current_user.id, |
| 112 | + ) |
| 113 | + ) |
| 114 | + apikey = session.exec(statement).first() |
| 115 | + |
| 116 | + if not apikey: |
| 117 | + raise HTTPException(status_code=404, detail="Api key not found") |
| 118 | + |
| 119 | + session.delete(apikey) |
| 120 | + session.commit() |
| 121 | + return Message(message="Api key deleted successfully") |
0 commit comments