Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 like this, "http://example.com/download/?f=somefile.txt

And on the server, I know that all downloadable files reside in a folder "/home/user/files/".

Is there a way to make Django serve that file for download as opposed to trying to find a URL and View to display it?

share|improve this question
1  
Why aren't you simply using Apache to do this? Apache serves static content faster and more simply than Django ever could. – S.Lott Jul 20 '09 at 23:08
3  
I'm not using Apache because I don't want the files accessible without permissions which are based in Django. – blackrobot Jul 21 '09 at 13:47
1  
If you want to take into account user permissions you have to serve file through Django's view – Ćukasz Jul 21 '09 at 13:51
31  
Exactly, which is why I'm asking this question. – blackrobot Jul 21 '09 at 14:34

8 Answers

up vote 65 down vote accepted

For the "best of both worlds" you could combine S.Lott's solution with the xsendfile module: django generates the path to the file (or the file itself), but the actual file serving is handled by Apache/Lighttpd. Once you've set up mod_xsendfile, integrating with your view takes a few lines of code:

response = HttpResponse(mimetype='application/force-download')
response['Content-Disposition'] = 'attachment; filename=%s' % smart_str(file_name)
response['X-Sendfile'] = smart_str(path_to_file)
# It's usually a good idea to set the 'Content-Length' header too.
# You can also set any other required headers: Cache-Control, etc.
return response

Of course, this will only work if you have control over your server, or your hosting company has mod_xsendfile already set up.

share|improve this answer
2  
If your filename, or path_to_file includes non-ascii characters such as "ä" or "ö", the smart_str does not work as intended since apache module X-Sendfile cannot decode the smart_str encoded string. Thus for example "Örinää.mp3" file cannot be served. And if one omits the smart_str, the Django itself throws ascii encoding error because all headers are encoded to ascii format before sending. Only way that I know of to circumvent this problem is to reduce X-sendfile filenames to ones that consists only ascii. – Ciantic May 31 '10 at 16:13
1  
To be more clear: S.Lott has the simple example, just serving files straight from django, no other setup needed. elo80ka has the more efficient example, where the web-server handles static files and django doesn't have to. The latter has better performance, but may require more setup. Both have their places. – Rocketmonkeys Dec 30 '10 at 19:12
@Ciantic, see btimby's answer for what looks like a solution to the encoding problem. – mlissner Feb 14 '12 at 7:36

A "download" is simply an HTTP header change.

See http://docs.djangoproject.com/en/dev/ref/request-response/#telling-the-browser-to-treat-the-response-as-a-file-attachment for how to respond with a download.

You only need one URL definition for "/download".

The request's GET or POST dictionary will have the "f=somefile.txt" information.

Your view function will simply merge the base path with the "f" value, open the file, create and return a response object. It should be less than 12 lines of code.

share|improve this answer
+1 For doing the job. – kjfletch Jul 21 '09 at 9:53
18  
This is essentially the correct (simple) answer, but one caution - passing the filename as a parameter means that the user can potentially download any file (ie. what if you pass "f=/etc/passwd" ?) There are a lot of things that help prevent this (user permissions, etc), but just be aware of this obvious but common security risk. It's basically just a subset of validating input: If you pass in a filename to a view, check the filename in that view! – Rocketmonkeys Dec 30 '10 at 19:10

S.Lott has the "good"/simple solution, and elo80ka has the "best"/efficient solution. Here is a middle "better"/middle solution - no server setup, but more efficient for large files than the naive fix.

http://djangosnippets.org/snippets/365/

Basically django still handles serving the file, but does not load the whole thing into memory at once. This allows your server to (slowly) server a big file without ramping up the memory usage.

Again, S.Lott's X-SendFile is still better for larger files. But if you can't or don't want to bother with that, then this middle solution will gain you better efficiency without the hassle.

share|improve this answer

It was mentioned above that the mod_xsendfile method does not allow for non-ASCII characters in filenames.

For this reason, I have a patch available for mod_xsendfile that will allow any file to be sent, as long as the name is url encoded, and the additional header:

X-SendFile-Encoding: url

Is sent as well.

http://ben.timby.com/?p=149

share|improve this answer
Patch is now folded into the corer library. – mlissner Feb 14 '12 at 7:33

Try: https://github.com/rosarior/django-sendfile

share|improve this answer
4  
Why did you post a link to your personal fork as opposed to the module's actual repository at github.com/johnsensible/django-sendfile ? – Martey May 12 '12 at 2:58
1  
At the time (1 year ago) my personal fork had the non Apache file serving fallback the original repository hasn't included yet. – Roberto Rosario May 15 '12 at 19:38

Django recommend that you use another server to serve static media (another server running on the same machine is fine.) They recommend the use of such servers as lighttp.

This is very simple to set up. However. if 'somefile.txt' is generated on request (content is dynamic) then you may want django to serve it.

Django Docs - Static Files

share|improve this answer

Another project to have a look at: http://readthedocs.org/docs/django-private-files/en/latest/usage.html Looks promissing, haven't tested it myself yet tho.

Basically the project abstracts the mod_xsendfile configuration and allows you to do things like:

from django.db import models
from django.contrib.auth.models import User
from private_files import PrivateFileField

def is_owner(request, instance):
    return (not request.user.is_anonymous()) and request.user.is_authenticated and
                   instance.owner.pk = request.user.pk

class FileSubmission(models.Model):
    description = models.CharField("description", max_length = 200)
        owner = models.ForeignKey(User)
    uploaded_file = PrivateFileField("file", upload_to = 'uploads', condition = is_owner)
share|improve this answer
1  
request.user.is_authenticated is a method, not an attribute. (not request.user.is_anonymous()) is the exact same as request.user.is_authenticated() because is_authenticated is the inverse of is_anonymous. – explodes Aug 6 '12 at 15:07
@explodes Even worst, that code is right from the docs of django-private-files... – Mandx Feb 25 at 20:39

I have faced the same problem more then once and so implemented using xsendfile module and auth view decorators the django-filelibrary. Feel free to use it as inspiration for your own solution.

https://github.com/danielsokolowski/django-filelibrary

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.