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

55 by mattgiuca
dispatch: request - added some new functions for exiting with an error or
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: common.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
25
import os
26
27
import conf
28
from common import util
29
30
def url_to_local(urlpath):
31
    """Given a URL path (part of a URL query string, see below), returns a
32
    tuple of
33
        * the username of the student whose directory is being browsed
34
        * the absolute path in the file system where that file will be
35
            found within the student directories.
36
37
    urlpath: Part of the URL, but only the part *after* the application. For
38
    instance, given the URL "/ivle/browse/joe/home/mydir/myfile", urlpath will
39
    be just "joe/home/mydir/myfile". The expected result is something like
40
    ("joe", "/home/informatics/jails/joe/home/svn/mydir/myfile").
41
    Note that the actual location is not guaranteed by this interface (this
42
    function serves as a single point of control as to how URLs map onto
43
    student directories).
44
45
    Returns (None, None) if the path is empty.
46
47
    See also: conf.student_dir
48
    """
56 by mattgiuca
common/studpath.py: Changed translation scheme to the directory scheme
49
    # Note: User can be a group name. There is absolutely no difference in our
50
    # current directory scheme.
55 by mattgiuca
dispatch: request - added some new functions for exiting with an error or
51
    (user, subpath) = util.split_path(urlpath)
52
    if user is None: return (None, None)
53
56 by mattgiuca
common/studpath.py: Changed translation scheme to the directory scheme
54
    # Join the user onto 'home' then the full path specified.
55
    # This results in the user's name being repeated twice, which is in
56
    # accordance with our directory scheme.
57
    # (The first time is the name of the jail, the second is the user's home
58
    # directory within the jail).
59
    path = os.path.join(conf.student_dir, user, 'home', urlpath)
55 by mattgiuca
dispatch: request - added some new functions for exiting with an error or
60
61
    return (user, path)