odysseus-dev/odysseus · error · HTTPException
No file provided
Error message
No file provided
What it means
Error "No file provided" thrown in odysseus-dev/odysseus.
Source
Thrown at routes/gallery/gallery_routes.py:361
if ir.status_code == 200:
return base64.b64encode(ir.content).decode()
return None
def setup_gallery_routes() -> APIRouter:
router = APIRouter(tags=["gallery"])
# ---- POST /api/gallery/upload ----
@router.post("/api/gallery/upload")
async def gallery_upload(request: Request):
"""Upload an image file to the gallery with EXIF extraction and dedup."""
import uuid
from pathlib import Path
form = await request.form()
file = form.get("file")
if not file or not hasattr(file, 'filename'):
raise HTTPException(400, "No file provided")
user = get_current_user(request)
album_id = form.get("album_id") or None
content = await read_upload_limited(file, GALLERY_UPLOAD_MAX_BYTES, "Gallery upload")
# Duplicate detection via SHA-256
file_hash = hashlib.sha256(content).hexdigest()
db = SessionLocal()
try:
if album_id and user is not None:
_get_or_404_album(db, album_id, user)
# SECURITY: scope the dup-detect to THIS user — otherwise a
# caller can probe whether someone else uploaded the same
# file (the response leaks the existing row's id+filename).
_dup_q = db.query(GalleryImage).filter(
GalleryImage.file_hash == file_hash,
GalleryImage.is_active == True,View on GitHub (pinned to f9235ebbf1)
Solutions
- Attach a file to the upload request.
- Select a file in the picker before submitting.
When it happens
Trigger: Triggered when the corresponding server-side validation or runtime check at the recorded location rejects the request or operation and returns this error message to the caller.
Common situations: See trigger scenarios.
AI-assisted analysis of odysseus-dev/odysseus@f9235ebbf1 (2026-08-14).
Data as JSON: /api/errors/c21fb2b26a61b863.
Report an issue: GitHub.