36 lines
1015 B
Python
36 lines
1015 B
Python
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
|
|
import re
|
|
|
|
from fastapi import APIRouter, HTTPException
|
|
from fastapi.responses import StreamingResponse
|
|
|
|
from classquiz.config import settings, storage
|
|
|
|
settings = settings()
|
|
|
|
router = APIRouter()
|
|
|
|
file_regex = r"^[a-z0-9]{8}-[a-z0-9-]{27}--[a-z0-9-]{36}$"
|
|
|
|
|
|
@router.get("/download/{file_name}")
|
|
async def download_file(file_name: str):
|
|
if not re.match(file_regex, file_name):
|
|
raise HTTPException(status_code=400, detail="Invalid file name")
|
|
|
|
download = await storage.download(file_name)
|
|
if download is None:
|
|
raise HTTPException(status_code=404, detail="File not found")
|
|
|
|
def iter_file():
|
|
yield from download
|
|
|
|
return StreamingResponse(
|
|
iter_file(),
|
|
media_type="image/*",
|
|
headers={"Cache-Control": "public, immutable, max-age=31536000"},
|
|
)
|