[Fixed]-Django: Serving a Download in a Generic View

19👍

Why do you want to do this with a generic view? It’s very easy to do this without generic views:

from django.http import HttpResponse


def song_download(request, song_id):
    song = Song.objects.get(id=song_id)
    fsock = open('/path/to/file.mp3', 'rb')
    response = HttpResponse(fsock, content_type='audio/mpeg')
    response['Content-Disposition'] = "attachment; filename=%s - %s.mp3" % \
                                     (song.artist, song.title)
    return response

I’m not sure if it’s possible to make this work somehow with a generic view. But either way, using one is redundant here. With no template to render, the context that is automatically provided by the generic view is useless.

9👍

To wrap my comment to Tomasz Zielinski into a real answer:

For several reasons it is indeed better to let apache/nginx/etc do the work of sending files.
Most servers have mechanisms to help in that usecase: Apache and lighttpd have xsendfile, nginx has X-Accel-Redirect.

The idea is that you can use all the features of django like nice urls, authentification methods, etc, but let the server do the work of serving files. What your django view has to do, is to return a response with a special header. The server will then replace the response with the actual file.

Example for apache:

def song_download(request):
    path = '/path/to/file.mp3'
    response = HttpResponse()
    response['X-Sendfile'] = smart_str(path)
    response['Content-Type'] = "audio/mpeg"
    response['Content-Length'] = os.stat(path).st_size
    return response
  • install mode_xsendfile
  • add XSendFileOn on and (depending on the version) XSendFileAllowAbove on or XSendFilePath the/path/to/serve/from to your apache configuration.

This way you don’t reveale the file location, and keep all the url management in django.

1👍

Serving static files with Django is a bad idea, use Apache, nginx etc.

https://docs.djangoproject.com/en/dev/howto/static-files/deployment/

1👍

To answer the original question how to use a generic view, you could do the following:

from django.views.generic import DetailView
from django.http.response import FileResponse

class DownloadSong(DetailView):

    model = Song

    def get(self, request, *args, **kwargs):
        super().get(request, *args, **kwargs)
        song = self.object
        return FileResponse(open(song, 'rb'), 
                            as_attachment=True, 
                            filename=f'{song.artist} - {song.title}.mp3')

Docs:

If your Django version does not have the FileResponse object, use the HttpResponse as shown in the other answers.

👤xystum

Leave a comment