~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:24:30 UTC
  • Revision ID: grantw@unimelb.edu.au-20090526022430-xkn4gpy8f75k5757
Make url_to_local take a config, and test it!

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
# Make a Subversion client object (for published)
35
35
svnclient = pysvn.Client()
36
36
 
37
 
def url_to_local(urlpath):
 
37
def url_to_local(config, urlpath):
38
38
    """Given a URL path (part of a URL query string, see below), returns a
39
39
    tuple of
40
40
        * the username of the student whose directory is being browsed
51
51
 
52
52
    Returns (None, None) if the path is empty.
53
53
 
54
 
    See also: ivle.conf.jail_base
 
54
    >>> stubconfig = {'paths': {'jails': {'mounts': '/jails'}}}
 
55
    >>> url_to_local(stubconfig, '')
 
56
    (None, None)
 
57
    >>> url_to_local(stubconfig, 'joe/foo/bar/baz')
 
58
    ('joe', '/jails/joe/home/joe/foo/bar/baz')
55
59
    """
 
60
 
56
61
    # First normalise the path
57
62
    urlpath = os.path.normpath(urlpath)
58
63
    # Now if it begins with ".." or separator, then it's illegal
68
73
    # accordance with our directory scheme.
69
74
    # (The first time is the name of the jail, the second is the user's home
70
75
    # directory within the jail).
71
 
    path = os.path.join(ivle.conf.jail_base, user, 'home', urlpath)
 
76
    path = os.path.join(config['paths']['jails']['mounts'],
 
77
                        user, 'home', urlpath)
72
78
 
73
79
    return (user, path)
74
80
 
162
168
    Same interface as "authorize" - None on success, HTTP_FORBIDDEN exception
163
169
    raised on failure.
164
170
    """
165
 
    _, path = url_to_local(req.path)
 
171
    _, path = url_to_local(req.config, req.path)
166
172
 
167
173
    # Walk up the tree, and find the deepest directory.
168
174
    while not os.path.isdir(path):