~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/controllers/download_ui.py

improvements to changelog.pt

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# Copyright (C) 2006  Robey Pointer <robey@lag.net>
 
3
# Copyright (C) 2006  Goffredo Baroncelli <kreijack@inwind.it>
 
4
#
 
5
# This program is free software; you can redistribute it and/or modify
 
6
# it under the terms of the GNU General Public License as published by
 
7
# the Free Software Foundation; either version 2 of the License, or
 
8
# (at your option) any later version.
 
9
#
 
10
# This program is distributed in the hope that it will be useful,
 
11
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
# GNU General Public License for more details.
 
14
#
 
15
# You should have received a copy of the GNU General Public License
 
16
# along with this program; if not, write to the Free Software
 
17
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
18
#
 
19
 
 
20
import datetime
 
21
import logging
 
22
import mimetypes
 
23
import os
 
24
import posixpath
 
25
import textwrap
 
26
import time
 
27
 
 
28
import turbogears
 
29
from cherrypy import HTTPRedirect, response, session
 
30
 
 
31
from loggerhead import util
 
32
 
 
33
 
 
34
log = logging.getLogger("loggerhead.controllers")
 
35
 
 
36
 
 
37
class DownloadUI (object):
 
38
 
 
39
    def __init__(self, branch):
 
40
        # BranchView object
 
41
        self._branch = branch
 
42
        self.log = branch.log
 
43
 
 
44
    @turbogears.expose()
 
45
    def default(self, *args, **kw):
 
46
        # /download/<rev_id>/<file_id>/[filename]
 
47
        z = time.time()
 
48
        h = self._branch.get_history()
 
49
        
 
50
        if len(args) < 2:
 
51
            raise HTTPRedirect(self._branch.url('/changes'))
 
52
        
 
53
        revid = h.fix_revid(args[0])
 
54
        file_id = args[1]
 
55
        path, filename, content = h.get_file(file_id, revid)
 
56
        mime_type, encoding = mimetypes.guess_type(filename)
 
57
        if mime_type is None:
 
58
            mime_type = 'application/octet-stream'
 
59
 
 
60
        self.log.info('/download %s @ %s (%d bytes)', path, h.get_revno(revid), len(content))
 
61
        response.headers['Content-Type'] = mime_type
 
62
        response.headers['Content-Length'] = len(content)
 
63
        response.headers['Content-Disposition'] = 'attachment; filename=%s'%(filename,)
 
64
        response.body = content
 
65
        return response.body