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

« back to all changes in this revision

Viewing changes to ivle/studpath.py

  • Committer: Matt Giuca
  • Date: 2010-02-18 05:16:37 UTC
  • Revision ID: matt.giuca@gmail.com-20100218051637-obexfwxbh9vqg16w
ivle.studpath: Removed svnpublished. This is now very much unused, and it's the only reason this module uses pysvn.

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
30
29
 
31
30
from ivle import util
32
31
 
33
 
# Make a Subversion client object (for published)
34
 
svnclient = pysvn.Client()
35
 
 
36
32
def url_to_local(config, urlpath):
37
33
    """Given a URL path (part of a URL query string, see below), returns a
38
34
    tuple of
51
47
    Returns (None, None) if the path is empty.
52
48
 
53
49
    >>> stubconfig = {'paths': {'jails': {'mounts': '/jails'}}}
54
 
    >>> url_to_local(stubconfig, '')
55
 
    (None, None)
 
50
 
56
51
    >>> url_to_local(stubconfig, 'joe/foo/bar/baz')
57
52
    ('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)
58
67
    """
59
68
 
60
69
    # First normalise the path
85
94
 
86
95
    urlpath: See urlpath in url_to_local.
87
96
 
88
 
    >>> url_to_jailpaths("joe/mydir/myfile")
89
 
    ('joe', '/var/lib/ivle/jailmounts/joe', '/home/joe/mydir/myfile')
 
97
    >>> stubconfig = {'paths': {'jails': {'mounts': '/jails'}}}
90
98
 
91
 
    >>> url_to_jailpaths("")
 
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")
92
106
    (None, None, None)
93
107
    """
94
108
    # First normalise the path
95
109
    urlpath = os.path.normpath(urlpath)
96
 
    # Now if it begins with ".." then it's illegal
97
 
    if urlpath.startswith(".."):
 
110
    # Now if it begins with "..", or is absolute, then it's illegal
 
111
    if urlpath.startswith("..") or os.path.isabs(urlpath):
98
112
        return (None, None, None)
99
113
    # Note: User can be a group name. There is absolutely no difference in our
100
114
    # current directory scheme.
111
125
 
112
126
    >>> to_home_path('joe/foo/bar/baz')
113
127
    '/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
114
132
    """
 
133
 
 
134
    urlpath = os.path.normpath(urlpath)
 
135
    # If it begins with '..', it's illegal.
 
136
    if urlpath.startswith(".."):
 
137
        return None
 
138
 
115
139
    return os.path.join('/home', urlpath)
116
140
 
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
 
 
129
141
def published(path):
130
142
    """Given a path on the LOCAL file system, determines whether the path has a 
131
143
    '.published' file.  Returns True or False."""