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

« back to all changes in this revision

Viewing changes to ivle/studpath.py

  • Committer: William Grant
  • Date: 2009-06-29 01:55:55 UTC
  • mto: This revision was merged to the branch mainline in revision 1322.
  • Revision ID: grantw@unimelb.edu.au-20090629015555-49xxv0piiieunx8e
Add docs on configuring Apache.

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
    Returns (None, None) if the path is empty.
52
52
 
53
53
    >>> stubconfig = {'paths': {'jails': {'mounts': '/jails'}}}
54
 
 
 
54
    >>> url_to_local(stubconfig, '')
 
55
    (None, None)
55
56
    >>> url_to_local(stubconfig, 'joe/foo/bar/baz')
56
57
    ('joe', '/jails/joe/home/joe/foo/bar/baz')
57
 
    >>> url_to_local(stubconfig, 'joe')
58
 
    ('joe', '/jails/joe/home/joe')
59
 
    >>> url_to_local(stubconfig, 'joe/')
60
 
    ('joe', '/jails/joe/home/joe')
61
 
 
62
 
    We have some protection from various potential attacks. An empty,
63
 
    absolute, or ..-prefixed path yields a special result.
64
 
 
65
 
    >>> url_to_local(stubconfig, '')
66
 
    (None, None)
67
 
    >>> url_to_local(stubconfig, '/foo')
68
 
    (None, None)
69
 
    >>> url_to_local(stubconfig, '../bar')
70
 
    (None, None)
71
58
    """
72
59
 
73
60
    # First normalise the path
98
85
 
99
86
    urlpath: See urlpath in url_to_local.
100
87
 
101
 
    >>> stubconfig = {'paths': {'jails': {'mounts': '/jails'}}}
 
88
    >>> url_to_jailpaths("joe/mydir/myfile")
 
89
    ('joe', '/var/lib/ivle/jailmounts/joe', '/home/joe/mydir/myfile')
102
90
 
103
 
    >>> url_to_jailpaths(stubconfig, "joe/mydir//myfile/.././myfile")
104
 
    ('joe', '/jails/joe', '/home/joe/mydir/myfile')
105
 
    >>> url_to_jailpaths(stubconfig, "")
106
 
    (None, None, None)
107
 
    >>> url_to_jailpaths(stubconfig, "../foo")
108
 
    (None, None, None)
109
 
    >>> url_to_jailpaths(stubconfig, "/foo")
 
91
    >>> url_to_jailpaths("")
110
92
    (None, None, None)
111
93
    """
112
94
    # First normalise the path
113
95
    urlpath = os.path.normpath(urlpath)
114
 
    # Now if it begins with "..", or is absolute, then it's illegal
115
 
    if urlpath.startswith("..") or os.path.isabs(urlpath):
 
96
    # Now if it begins with ".." then it's illegal
 
97
    if urlpath.startswith(".."):
116
98
        return (None, None, None)
117
99
    # Note: User can be a group name. There is absolutely no difference in our
118
100
    # current directory scheme.
129
111
 
130
112
    >>> to_home_path('joe/foo/bar/baz')
131
113
    '/home/joe/foo/bar/baz'
132
 
    >>> to_home_path('joe/foo//bar/baz/../../')
133
 
    '/home/joe/foo'
134
 
    >>> to_home_path('joe/foo//bar/baz/../../../../../') is None
135
 
    True
136
114
    """
137
 
 
138
 
    urlpath = os.path.normpath(urlpath)
139
 
    # If it begins with '..', it's illegal.
140
 
    if urlpath.startswith(".."):
141
 
        return None
142
 
 
143
115
    return os.path.join('/home', urlpath)
144
116
 
145
117
def svnpublished(path):