30
30
class DownloadUI (object):
32
def __init__(self, branch, history):
32
def __init__(self, branch):
33
34
self._branch = branch
34
self._history = history
35
35
self.log = branch.log
37
def __call__(self, environ, start_response):
37
def default(self, request, response):
38
38
# /download/<rev_id>/<file_id>/[filename]
45
arg = path_info_pop(environ)
51
raise httpexceptions.HTTPMovedPermanently(self._branch.url('../changes'))
53
revid = h.fix_revid(args[0])
55
path, filename, content = h.get_file(file_id, revid)
56
mime_type, encoding = mimetypes.guess_type(filename)
58
mime_type = 'application/octet-stream'
60
self.log.info('/download %s @ %s (%d bytes)', path, h.get_revno(revid), len(content))
62
('Content-Type', mime_type),
63
('Content-Length', len(content)),
64
('Content-Disposition', 'attachment; filename=%s'%(filename,)),
66
start_response('200 OK', headers)
40
h = self._branch.history
46
arg = path_info_pop(request.environ)
52
raise httpexceptions.HTTPMovedPermanently(self._branch.url('../changes'))
54
revid = h.fix_revid(args[0])
56
path, filename, content = h.get_file(file_id, revid)
57
mime_type, encoding = mimetypes.guess_type(filename)
59
mime_type = 'application/octet-stream'
61
self.log.info('/download %s @ %s (%d bytes)', path, h.get_revno(revid), len(content))
62
response.headers['Content-Type'] = mime_type
63
response.headers['Content-Length'] = len(content)
64
response.headers['Content-Disposition'] = 'attachment; filename=%s'%(filename,)
65
response.write(content)