pssecret-server/pssecret/main.py

52 lines
1.4 KiB
Python
Raw Normal View History

2025-01-01 18:01:26 +00:00
from typing import Annotated
from fastapi import Depends, FastAPI
from fastapi.exceptions import HTTPException
2025-01-01 18:01:26 +00:00
from redis.asyncio import Redis
from pssecret.models import Secret, SecretSaveResult
2025-01-01 18:01:26 +00:00
from pssecret.redis_db import get_redis
2025-01-01 18:12:11 +00:00
from pssecret.utils import save_secret
2022-06-12 10:47:07 +00:00
app = FastAPI()
2025-01-01 18:01:26 +00:00
RedisDep = Annotated[Redis, Depends(get_redis)]
2022-06-12 10:47:07 +00:00
2024-12-26 22:25:54 +00:00
@app.post(
"/secret",
summary="Store secret",
description=(
"Submit secret, it is saved on the server, get retrieval key in response. "
"Use that key to retrieve your data. Key could be used only once, "
"so use it wisely"
),
response_model=SecretSaveResult,
)
2025-01-01 18:01:26 +00:00
async def set_secret(data: Secret, redis: RedisDep) -> dict[str, str]:
return {
2025-01-01 18:12:11 +00:00
"key": await save_secret(data, redis),
}
@app.get(
"/secret/{secret_key}",
2024-12-26 22:25:54 +00:00
summary="Retrieve secret",
description=(
"Returns previously saved data if it is still on the server. "
"Could be the other way around in two cases: "
"either it has already been retrieved, either storage timeout has expired"
),
response_model=Secret,
responses={404: {"description": "The item was not found"}},
)
2025-01-01 18:01:26 +00:00
async def get_secret(secret_key: str, redis: RedisDep) -> dict[str, bytes]:
data: bytes | None = await redis.getdel(secret_key)
if data is None:
raise HTTPException(404)
return {
"data": data,
}