mirror of
https://github.com/open-webui/open-webui
synced 2025-01-29 13:58:09 +00:00
refac: file download
This commit is contained in:
parent
3f892583c3
commit
0da0e12096
@ -223,7 +223,10 @@ async def get_file_content_by_id(id: str, user=Depends(get_verified_user)):
|
|||||||
# Check if the file already exists in the cache
|
# Check if the file already exists in the cache
|
||||||
if file_path.is_file():
|
if file_path.is_file():
|
||||||
print(f"file_path: {file_path}")
|
print(f"file_path: {file_path}")
|
||||||
return FileResponse(file_path)
|
headers = {
|
||||||
|
"Content-Disposition": f'attachment; filename="{file.meta.get("name", file.filename)}"'
|
||||||
|
}
|
||||||
|
return FileResponse(file_path, headers=headers)
|
||||||
else:
|
else:
|
||||||
raise HTTPException(
|
raise HTTPException(
|
||||||
status_code=status.HTTP_404_NOT_FOUND,
|
status_code=status.HTTP_404_NOT_FOUND,
|
||||||
|
Loading…
Reference in New Issue
Block a user