+def download(request, aid, which="source"):
+ if which not in ("source", "mp3", "ogg"):
+ raise Http404
+ audiobook = get_object_or_404(models.Audiobook, id=aid)
+ file_ = getattr(audiobook, "%s_file" % which)
+ if not file_:
+ raise Http404
+ ext = file_.path.rsplit('.', 1)[-1]
+ response = HttpResponse(mimetype='application/force-download')
+
+ response['Content-Disposition'] = "attachment; filename*=UTF-8''%s.%s" % (
+ quote(audiobook.title.encode('utf-8'), safe=''), ext)
+ response['X-Sendfile'] = file_.path.encode('utf-8')
+ return response
+
+