~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to services/serveservice

Swap around some elements to make the OfferingProjectsView XHTML more valid.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
# along with this program; if not, write to the Free Software
18
18
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
19
 
20
 
# Script: serveservice
21
 
# Author: Thomas Conway
22
 
# Date:   6/3/2007
23
 
 
24
 
# A CGI script for serving files.
 
20
# Author: Thomas Conway, Will Grant
25
21
 
26
22
import mimetypes
27
23
import os
28
 
import conf
 
24
import sys
29
25
import StringIO
30
 
import urlparse
31
 
 
32
 
from common import (cgirequest, studpath)
33
 
from common import zip as zipmod
34
 
 
35
 
req = cgirequest.CGIRequest()
36
 
req.install_error_handler()
37
 
 
38
 
# Work out the parts of the URL
39
 
url = urlparse.urlparse(req.path)
40
 
querystr = url[4]
41
 
urlpath = url[2]
42
 
filename = studpath.url_to_jailpaths(urlpath)[2]
 
26
from optparse import OptionParser
 
27
 
 
28
import cjson
 
29
 
 
30
from ivle import zip as zipmod
 
31
import ivle.conf.app.server
 
32
 
 
33
def determine_file_type(filename):
 
34
    filetype = mimetypes.guess_type(filename)[0]
 
35
    if filetype is None:
 
36
         filetype = ivle.conf.mimetypes.default_mimetype
 
37
    return filetype
 
38
 
 
39
def throw_error(message, extra={}):
 
40
    error = {'error': message}
 
41
    error.update(extra)
 
42
    print cjson.encode(error)
 
43
    sys.exit(0)
 
44
 
 
45
parser = OptionParser()
 
46
parser.add_option('-d', '--download', dest='download', action='store_true',
 
47
                  help='force download, not execution, of the paths')
 
48
(options, args) = parser.parse_args()
 
49
 
 
50
# Detect download mode. Download mode zips any multiple selection,
 
51
# and does not execute CGI scripts.
 
52
if options.download:
 
53
    download = True
 
54
    # paths is filled later.
 
55
else:
 
56
    download = False
 
57
    assert len(args) == 1
43
58
 
44
59
default_mimetype = "application/octet-stream"
45
60
zip_mimetype = "application/zip"
47
62
zipmode = False
48
63
zipbasepath = None
49
64
zipfilename = None
50
 
path = None
51
65
 
52
 
# If any "path=" variables have been supplied, bring these into a list and
53
 
# make a zip file instead.
54
 
fields = req.get_fieldstorage()
55
 
paths = fields.getlist("path")
56
 
if len(paths) > 0:
 
66
# If multiple paths have been specified, zip them up.
 
67
if len(args) > 1:
 
68
    # Mangle the paths - we want the basename of their dirname in front.
 
69
    paths = []
 
70
    dir = os.path.dirname(args[0])
 
71
    for path in args:
 
72
        assert os.path.dirname(path) == dir
 
73
        paths.append(os.path.join(os.path.basename(dir),
 
74
                                  os.path.basename(path)))
 
75
    dir = os.path.dirname(dir)
57
76
    zipmode = True
58
 
    zipbasepath = filename
 
77
    zipbasepath = dir
59
78
    zipfilename = os.path.basename(zipbasepath)
60
 
    #for i in range(0, len(paths)):
61
 
        #paths[i] = paths[i].value
62
79
else:
63
 
    if filename is None:
64
 
        req.throw_error(req.HTTP_NOT_FOUND,
65
 
            "The path specified is invalid.")
66
 
    elif not os.access(filename, os.R_OK):
67
 
        req.throw_error(req.HTTP_NOT_FOUND,
68
 
            "The specified file (%s) does not exist." % urlpath)
69
 
     # If it's a directory, serve as a zip file
 
80
    paths = args
 
81
    filename = paths[0]
 
82
    if not os.access(filename, os.F_OK):
 
83
        # The given path doesn't exist. CGI lets us backtrack and put the path
 
84
        # elements through which we pass into PATH_INFO, so we try that.
 
85
        while not os.access(filename, os.F_OK):
 
86
            filename, path_info_frag = os.path.split(filename)
 
87
 
 
88
        # We now have a file that exists, but is it something that we're allowed
 
89
        # to execute? If not, we should 404 anyway.
 
90
        if determine_file_type(filename) not in ivle.conf.app.server.interpreters:
 
91
            throw_error('not-found')
 
92
 
 
93
    # If it's a directory, serve as a zip file
70
94
    if os.path.isdir(filename):
 
95
        if not download:
 
96
            # Not giving a directory listing - this is visible to everyone.
 
97
            throw_error('is-directory')
71
98
        zipmode = True
72
99
        # Zip it from the perspective of its own parent.
73
100
        # That way it will be a directory in the top level of the zip
80
107
        else:
81
108
            zipbasepath = splitpath[0]
82
109
            paths = [splitpath[1]]
83
 
        zipfilename = paths[0]
 
110
        zipfilename = filename
 
111
    else:
 
112
        if not download and \
 
113
           determine_file_type(filename) in ivle.conf.app.server.interpreters:
 
114
            throw_error('is-executable', {'path': filename})
 
115
 
 
116
        if not download and (
 
117
            (ivle.conf.app.server.blacklist_served_filetypes and \
 
118
                determine_file_type(filename) in \
 
119
                ivle.conf.app.server.served_filetypes_blacklist) or \
 
120
            (ivle.conf.app.server.served_filetypes_whitelist and \
 
121
                determine_file_type(filename) not in \
 
122
                ivle.conf.app.server.served_filetypes_whitelist)):
 
123
            throw_error('forbidden')
84
124
 
85
125
if zipmode:
86
 
    req.content_type = zip_mimetype
87
126
    # zipfilename is some filename. Strip trailing slash or extension,
88
127
    # and add ".zip".
89
128
    if zipfilename == '':
93
132
    elif '.' in zipfilename:
94
133
        zipfilename = zipfilename[:zipfilename.rindex('.')]
95
134
    zipfilename += ".zip"
96
 
    req.headers_out["Content-Disposition"] = ("attachment; filename=" +   
97
 
        zipfilename)
 
135
    #req.headers_out["Content-Disposition"] = ("attachment; filename=" +   
 
136
    #    zipfilename) # TODO
98
137
    zipfile = StringIO.StringIO()
99
138
    zipmod.make_zip(zipbasepath, paths, zipfile)
100
 
        
101
 
    req.write(zipfile.getvalue())
 
139
 
 
140
    print cjson.encode({'type': zip_mimetype,
 
141
                        'name': zipfilename})
 
142
 
 
143
    stream = zipfile
 
144
    stream.seek(0)
102
145
else:
103
 
    #req.content_type = default_mimetype
104
 
    req.sendfile(filename)
 
146
 
 
147
    print cjson.encode({'type': determine_file_type(filename),
 
148
                        'name': os.path.basename(filename)})
 
149
    stream = open(filename)
 
150
    
 
151
next = stream.read(1024)
 
152
while next:
 
153
    sys.stdout.write(next)
 
154
    next = stream.read(1024)