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

« back to all changes in this revision

Viewing changes to ivle/studpath.py

  • Committer: mattgiuca
  • Date: 2008-01-11 07:10:18 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:185
Integrated the (second) Prototype browser (HTML+CSS but no code) into the main
filebrowser app. Note that this still is non-functional - it looks the same as
the original prototype.
browser: Added the full HTML source (including example rows) into the Python
code. (Note this will be a lot cleaner once example rows are removed).
media: Added "images" directory (copied from the demo). This contains all the
icons needed for the demo.
       browser.css: Pasted the entire CSS from the demo. This styles the
        browser interface.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# IVLE - Informatics Virtual Learning Environment
2
 
# Copyright (C) 2007-2008 The University of Melbourne
3
 
#
4
 
# This program is free software; you can redistribute it and/or modify
5
 
# it under the terms of the GNU General Public License as published by
6
 
# the Free Software Foundation; either version 2 of the License, or
7
 
# (at your option) any later version.
8
 
#
9
 
# This program is distributed in the hope that it will be useful,
10
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 
# GNU General Public License for more details.
13
 
#
14
 
# You should have received a copy of the GNU General Public License
15
 
# along with this program; if not, write to the Free Software
16
 
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17
 
 
18
 
# Module: studpath
19
 
# Author: Matt Giuca
20
 
# Date:   14/12/2007
21
 
 
22
 
# Provides functions for translating URLs into physical locations in the
23
 
# student directories in the local file system.
24
 
# Also performs common authorization, disallowing students from visiting paths
25
 
# they dont own.
26
 
 
27
 
import os
28
 
import stat
29
 
import pysvn
30
 
 
31
 
from ivle import util
32
 
 
33
 
# Make a Subversion client object (for published)
34
 
svnclient = pysvn.Client()
35
 
 
36
 
def url_to_local(config, urlpath):
37
 
    """Given a URL path (part of a URL query string, see below), returns a
38
 
    tuple of
39
 
        * the username of the student whose directory is being browsed
40
 
        * the absolute path in the file system where that file will be
41
 
            found within the student directories.
42
 
 
43
 
    urlpath: Part of the URL, but only the part *after* the application. For
44
 
    instance, given the URL "/ivle/browse/joe/mydir/myfile", urlpath will
45
 
    be just "joe/mydir/myfile". The expected result is something like
46
 
    ("joe", "/home/informatics/jails/joe/home/joe/mydir/myfile").
47
 
    Note that the actual location is not guaranteed by this interface (this
48
 
    function serves as a single point of control as to how URLs map onto
49
 
    student directories).
50
 
 
51
 
    Returns (None, None) if the path is empty.
52
 
 
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')
58
 
    """
59
 
 
60
 
    # First normalise the path
61
 
    urlpath = os.path.normpath(urlpath)
62
 
    # Now if it begins with ".." or separator, then it's illegal
63
 
    if urlpath.startswith("..") or urlpath.startswith(os.sep):
64
 
        return (None, None)
65
 
    # Note: User can be a group name. There is absolutely no difference in our
66
 
    # current directory scheme.
67
 
    (user, subpath) = util.split_path(urlpath)
68
 
    if user is None: return (None, None)
69
 
 
70
 
    # Join the user onto 'home' then the full path specified.
71
 
    # This results in the user's name being repeated twice, which is in
72
 
    # accordance with our directory scheme.
73
 
    # (The first time is the name of the jail, the second is the user's home
74
 
    # directory within the jail).
75
 
    path = os.path.join(config['paths']['jails']['mounts'],
76
 
                        user, 'home', urlpath)
77
 
 
78
 
    return (user, path)
79
 
 
80
 
def url_to_jailpaths(config, urlpath):
81
 
    """Given a URL path (part of a URL query string), returns a tuple of
82
 
        * the username of the student whose directory is being browsed
83
 
        * the absolute path where the jail will be located.
84
 
        * the path of the file relative to the jail.
85
 
 
86
 
    urlpath: See urlpath in url_to_local.
87
 
 
88
 
    >>> url_to_jailpaths("joe/mydir/myfile")
89
 
    ('joe', '/var/lib/ivle/jailmounts/joe', '/home/joe/mydir/myfile')
90
 
 
91
 
    >>> url_to_jailpaths("")
92
 
    (None, None, None)
93
 
    """
94
 
    # First normalise the path
95
 
    urlpath = os.path.normpath(urlpath)
96
 
    # Now if it begins with ".." then it's illegal
97
 
    if urlpath.startswith(".."):
98
 
        return (None, None, None)
99
 
    # Note: User can be a group name. There is absolutely no difference in our
100
 
    # current directory scheme.
101
 
    (user, subpath) = util.split_path(urlpath)
102
 
    if user is None: return (None, None, None)
103
 
 
104
 
    jail = os.path.join(config['paths']['jails']['mounts'], user)
105
 
    path = to_home_path(urlpath)
106
 
 
107
 
    return (user, jail, path)
108
 
 
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
 
 
116
 
    urlpath = os.path.normpath(urlpath)
117
 
    # If it begins with '..', it's illegal.
118
 
    if urlpath.startswith(".."):
119
 
        return None
120
 
 
121
 
    return os.path.join('/home', urlpath)
122
 
 
123
 
def svnpublished(path):
124
 
    """Given a path on the LOCAL file system, determines whether the path has
125
 
    its "ivle:published" property active (in subversion). Returns True
126
 
    or False."""
127
 
    # Read SVN properties for this path
128
 
    try:
129
 
        props = svnclient.propget("ivle:published", path, recurse=False)
130
 
    except pysvn.ClientError:
131
 
        # Not under version control? Then it isn't published.
132
 
        return False
133
 
    return len(props) > 0
134
 
 
135
 
def published(path):
136
 
    """Given a path on the LOCAL file system, determines whether the path has a 
137
 
    '.published' file.  Returns True or False."""
138
 
    publish_file_path = os.path.join(path,'.published')
139
 
    return os.access(publish_file_path,os.F_OK)
140
 
 
141
 
def worldreadable(path):
142
 
    """Given a path on the LOCAL file system, determines whether the path is 
143
 
    world readble. Returns True or False."""
144
 
    try:
145
 
        mode = os.stat(path).st_mode
146
 
        if mode & stat.S_IROTH:
147
 
            return True
148
 
        else:
149
 
            return False
150
 
    except OSError, e:
151
 
        return False
152
 
 
153
 
 
154
 
def authorize(req, user):
155
 
    """Given a request, checks whether req.user is allowed to
156
 
    access req.path. Returns None on authorization success. Raises
157
 
    HTTP_FORBIDDEN on failure.
158
 
 
159
 
    This is for general authorization (assuming not in public mode; this is
160
 
    the standard auth code for fileservice, download and serve).
161
 
    """
162
 
    # TODO: Groups
163
 
    # First normalise the path
164
 
    urlpath = os.path.normpath(req.path)
165
 
    # Now if it begins with ".." or separator, then it's illegal
166
 
    if urlpath.startswith("..") or urlpath.startswith(os.sep):
167
 
        return False
168
 
 
169
 
    (owner, _) = util.split_path(urlpath)
170
 
    if user.login != owner:
171
 
        return False
172
 
    return True
173
 
 
174
 
def authorize_public(req):
175
 
    """A different kind of authorization. Rather than making sure the
176
 
    logged-in user owns the file, this checks if the file is in a published
177
 
    directory.
178
 
 
179
 
    This is for the "public mode" of the serve app.
180
 
 
181
 
    Same interface as "authorize" - None on success, HTTP_FORBIDDEN exception
182
 
    raised on failure.
183
 
    """
184
 
    _, path = url_to_local(req.config, req.path)
185
 
 
186
 
    # Walk up the tree, and find the deepest directory.
187
 
    while not os.path.isdir(path):
188
 
        path = os.path.dirname(path)
189
 
 
190
 
    if not (worldreadable(path) and published(path)):
191
 
        return False
192
 
    return True