I want users on the site to be able to download files whose paths are obscured so they cannot be directly downloaded.
For instance, I\'d like the URL to be something
You should use sendfile apis given by popular servers like apache or nginx
in production. Many years i was using sendfile api of these servers for protecting files. Then created a simple middleware based django app for this purpose suitable for both development & production purpose.You can access the source code here.
UPDATE: in new version python provider uses django FileResponse if available and also adds support for many server implementations from lighthttp, caddy to hiawatha
Usage
pip install django-fileprovider
fileprovider app to INSTALLED_APPS settings,fileprovider.middleware.FileProviderMiddleware to MIDDLEWARE_CLASSES settingsFILEPROVIDER_NAME settings to nginx or apache in production, by default it is python for development purpose.in your classbased or function views set response header X-File value to absolute path to the file. For example,
def hello(request):
// code to check or protect the file from unauthorized access
response = HttpResponse()
response['X-File'] = '/absolute/path/to/file'
return response
django-fileprovider impemented in a way that your code will need only minimum modification.
Nginx configuration
To protect file from direct access you can set the configuration as
location /files/ {
internal;
root /home/sideffect0/secret_files/;
}
Here nginx sets a location url /files/ only access internaly, if you are using above configuration you can set X-File as,
response['X-File'] = '/files/filename.extension'
By doing this with nginx configuration, the file will be protected & also you can control the file from django views