~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:
26
26
 
27
27
import os
28
28
import stat
 
29
import pysvn
29
30
 
30
31
from ivle import util
31
32
 
 
33
# Make a Subversion client object (for published)
 
34
svnclient = pysvn.Client()
 
35
 
32
36
def url_to_local(config, urlpath):
33
37
    """Given a URL path (part of a URL query string, see below), returns a
34
38
    tuple of
47
51
    Returns (None, None) if the path is empty.
48
52
 
49
53
    >>> stubconfig = {'paths': {'jails': {'mounts': '/jails'}}}
50
 
 
 
54
    >>> url_to_local(stubconfig, '')
 
55
    (None, None)
51
56
    >>> url_to_local(stubconfig, 'joe/foo/bar/baz')
52
57
    ('joe', '/jails/joe/home/joe/foo/bar/baz')
53
 
    >>> url_to_local(stubconfig, 'joe')
54
 
    ('joe', '/jails/joe/home/joe')
55
 
    >>> url_to_local(stubconfig, 'joe/')
56
 
    ('joe', '/jails/joe/home/joe')
57
 
 
58
 
    We have some protection from various potential attacks. An empty,
59
 
    absolute, or ..-prefixed path yields a special result.
60
 
 
61
 
    >>> url_to_local(stubconfig, '')
62
 
    (None, None)
63
 
    >>> url_to_local(stubconfig, '/foo')
64
 
    (None, None)
65
 
    >>> url_to_local(stubconfig, '../bar')
66
 
    (None, None)
67
58
    """
68
59
 
69
60
    # First normalise the path
94
85
 
95
86
    urlpath: See urlpath in url_to_local.
96
87
 
97
 
    >>> stubconfig = {'paths': {'jails': {'mounts': '/jails'}}}
 
88
    >>> url_to_jailpaths("joe/mydir/myfile")
 
89
    ('joe', '/var/lib/ivle/jailmounts/joe', '/home/joe/mydir/myfile')
98
90
 
99
 
    >>> url_to_jailpaths(stubconfig, "joe/mydir//myfile/.././myfile")
100
 
    ('joe', '/jails/joe', '/home/joe/mydir/myfile')
101
 
    >>> url_to_jailpaths(stubconfig, "")
102
 
    (None, None, None)
103
 
    >>> url_to_jailpaths(stubconfig, "../foo")
104
 
    (None, None, None)
105
 
    >>> url_to_jailpaths(stubconfig, "/foo")
 
91
    >>> url_to_jailpaths("")
106
92
    (None, None, None)
107
93
    """
108
94
    # First normalise the path
109
95
    urlpath = os.path.normpath(urlpath)
110
 
    # Now if it begins with "..", or is absolute, then it's illegal
111
 
    if urlpath.startswith("..") or os.path.isabs(urlpath):
 
96
    # Now if it begins with ".." then it's illegal
 
97
    if urlpath.startswith(".."):
112
98
        return (None, None, None)
113
99
    # Note: User can be a group name. There is absolutely no difference in our
114
100
    # current directory scheme.
125
111
 
126
112
    >>> to_home_path('joe/foo/bar/baz')
127
113
    '/home/joe/foo/bar/baz'
128
 
    >>> to_home_path('joe/foo//bar/baz/../../')
129
 
    '/home/joe/foo'
130
 
    >>> to_home_path('joe/foo//bar/baz/../../../../../') is None
131
 
    True
132
114
    """
133
 
 
134
 
    urlpath = os.path.normpath(urlpath)
135
 
    # If it begins with '..', it's illegal.
136
 
    if urlpath.startswith(".."):
137
 
        return None
138
 
 
139
115
    return os.path.join('/home', urlpath)
140
116
 
 
117
def svnpublished(path):
 
118
    """Given a path on the LOCAL file system, determines whether the path has
 
119
    its "ivle:published" property active (in subversion). Returns True
 
120
    or False."""
 
121
    # Read SVN properties for this path
 
122
    try:
 
123
        props = svnclient.propget("ivle:published", path, recurse=False)
 
124
    except pysvn.ClientError:
 
125
        # Not under version control? Then it isn't published.
 
126
        return False
 
127
    return len(props) > 0
 
128
 
141
129
def published(path):
142
130
    """Given a path on the LOCAL file system, determines whether the path has a 
143
131
    '.published' file.  Returns True or False."""