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

« back to all changes in this revision

Viewing changes to ivle/studpath.py

  • Committer: William Grant
  • Date: 2009-05-26 02:15:58 UTC
  • Revision ID: grantw@unimelb.edu.au-20090526021558-v1lq91c2oukieekv
Drop unneeded use of studpath.url_to_local in fileservice.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
import stat
29
29
import pysvn
30
30
 
 
31
import ivle.conf
31
32
from ivle import util
32
33
 
33
34
# Make a Subversion client object (for published)
34
35
svnclient = pysvn.Client()
35
36
 
36
 
def url_to_local(config, urlpath):
 
37
def url_to_local(urlpath):
37
38
    """Given a URL path (part of a URL query string, see below), returns a
38
39
    tuple of
39
40
        * the username of the student whose directory is being browsed
50
51
 
51
52
    Returns (None, None) if the path is empty.
52
53
 
53
 
    >>> stubconfig = {'paths': {'jails': {'mounts': '/jails'}}}
54
 
    >>> url_to_local(stubconfig, '')
55
 
    (None, None)
56
 
    >>> url_to_local(stubconfig, 'joe/foo/bar/baz')
57
 
    ('joe', '/jails/joe/home/joe/foo/bar/baz')
 
54
    See also: ivle.conf.jail_base
58
55
    """
59
 
 
60
56
    # First normalise the path
61
57
    urlpath = os.path.normpath(urlpath)
62
58
    # Now if it begins with ".." or separator, then it's illegal
72
68
    # accordance with our directory scheme.
73
69
    # (The first time is the name of the jail, the second is the user's home
74
70
    # directory within the jail).
75
 
    path = os.path.join(config['paths']['jails']['mounts'],
76
 
                        user, 'home', urlpath)
 
71
    path = os.path.join(ivle.conf.jail_base, user, 'home', urlpath)
77
72
 
78
73
    return (user, path)
79
74
 
80
 
def url_to_jailpaths(config, urlpath):
 
75
def url_to_jailpaths(urlpath):
81
76
    """Given a URL path (part of a URL query string), returns a tuple of
82
77
        * the username of the student whose directory is being browsed
83
78
        * the absolute path where the jail will be located.
101
96
    (user, subpath) = util.split_path(urlpath)
102
97
    if user is None: return (None, None, None)
103
98
 
104
 
    jail = os.path.join(config['paths']['jails']['mounts'], user)
105
 
    path = to_home_path(urlpath)
 
99
    jail = os.path.join(ivle.conf.jail_base, user)
 
100
    path = os.path.join('/home', urlpath)
106
101
 
107
102
    return (user, jail, path)
108
103
 
109
 
def to_home_path(urlpath):
110
 
    """Given a URL path (eg. joe/foo/bar/baz), returns a path within the home.
111
 
 
112
 
    >>> to_home_path('joe/foo/bar/baz')
113
 
    '/home/joe/foo/bar/baz'
114
 
    """
115
 
    return os.path.join('/home', urlpath)
116
 
 
117
104
def svnpublished(path):
118
105
    """Given a path on the LOCAL file system, determines whether the path has
119
106
    its "ivle:published" property active (in subversion). Returns True
175
162
    Same interface as "authorize" - None on success, HTTP_FORBIDDEN exception
176
163
    raised on failure.
177
164
    """
178
 
    _, path = url_to_local(req.config, req.path)
 
165
    _, path = url_to_local(req.path)
179
166
 
180
167
    # Walk up the tree, and find the deepest directory.
181
168
    while not os.path.isdir(path):