etesync-server/etebase_fastapi/sendfile/backends/simple.py

13 lines
450 B
Python
Raw Normal View History

2020-12-28 16:44:55 +00:00
from fastapi.responses import FileResponse
def sendfile(filename, mimetype, **kwargs):
"""Use the SENDFILE_ROOT value composed with the path arrived as argument
to build an absolute path with which resolve and return the file contents.
If the path points to a file out of the root directory (should cover both
situations with '..' and symlinks) then a 404 is raised.
"""
return FileResponse(filename, media_type=mimetype)