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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
# IVLE - Informatics Virtual Learning Environment
# Copyright (C) 2007-2008 The University of Melbourne
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA

# Module: Capabilities
# Author: Matt Giuca
# Date:   15/2/2008

# Provides a Role class which is used for the "rolenm" field of login rows
# from the database.
# This also provides a set of Caps (capabilities) and the ability to check if
# any given role has a given capability.

class Role(object):
    """
    Role enumeration class. Provides values for "rolenm" fields, which are
    enumerable and comparable. Immutable objects.

    This allows you to check if a role has a certain capability by doing a
    >= comparison on the lowest role with that capability.

    Class Role has a capitalized member for each role, of type Role.
    eg. Role.STUDENT is a Role object describing the "student" role.
    """
    _roles = ["anyone", "student", "marker", "tutor", "lecturer", "admin"]
    _roles_to_int = {}          # Will be written after class def
    def __init__(self, role):
        """Creates a new Role object.
        role may be any of the following types:
        * Role: Copies.
        * str: Role of that name, as given by the str of a Role
            (These correspond to the entries in the "rolenm" field of the DB).
            Raises an Exception if the string is not a role.
        * int: Role of that numeric index, as given by the fromEnum of a Role.
            (This is the same as calling toEnum).
        """
        # Internally, stored as an int
        if isinstance(role, Role):
            self._role = role._role
        elif isinstance(role, basestring):
            try:
                self._role = Role._roles_to_int[role.lower()]
            except KeyError:
                raise Exception("Not a valid role name: %s" % repr(role))
        elif isinstance(role, int):
            if role >= 0 and role < len(Role._roles):
                self._role = role
            else:
                raise Exception("Not a valid role ID: %d" % role)
    def __str__(self):
        return Role._roles[self._role]
    def __repr__(self):
        return "Role.%s" % Role._roles[self._role].upper()
    def __cmp__(self, other):
        return cmp(self._role, other._role)
    def __hash__(self):
        return hash(self._role)

    def fromEnum(self):
        """Returns the int representation of this Role."""
        return self._role
    @staticmethod
    def toEnum(num):
        """Given an int, returns the Role for that role ID."""
        return Role(num)

    def hasCap(self, capability):
        """Given a capability (which is a Role object), returns True if this
        Role has that capability, False otherwise.
        """
        return self >= capability

# Role constants. These are actually members of the Role class, but they are
# defined here because they actually have the type Role.
for i in range(0, len(Role._roles)):
    # XXX This is the only way I could find to write an attribute to a
    # new-style class. It looks very dodgy.
    type.__setattr__(Role, Role._roles[i].upper(), Role(i))
    Role._roles_to_int[Role._roles[i]] = i

### CAPABILITIES LISTING ###

# Set of capabilities, which maps global variables onto Roles.
# This provides the minimum role level required in order to perform the given
# capability.
# (So any role above the role specified can perform this cap).

# Create users (the users are able to log in and accept)
CAP_CREATEUSER = Role.ADMIN
# Get details about users
CAP_GETUSER = Role.LECTURER
# Change all details of a user
CAP_UPDATEUSER = Role.ADMIN

# Posting to subject blog for subjects you are teaching
CAP_BLOGPOST = Role.TUTOR

# Reading submissions (both tutorial and assignment) of student for whom you
# are a marker
CAP_READ_MY_STUDENTS_SUBMISSION = Role.TUTOR
# Reading all students' submissions (in subjects you have this cap for)
CAP_READ_SUBMISSION = Role.LECTURER

# Reading marks for your own students
CAP_READ_MY_STUDENTS_MARKS = Role.TUTOR
# Adding marks info for your own students (can't delete or edit, only add)
# (You can overwrite marks but old ones will be logged).
CAP_WRITE_MY_STUDENTS_MARKS = Role.TUTOR
# Reading marks for all students
CAP_READ_MARKS = Role.LECTURER
# Adding marks info for all students
CAP_WRITE_MARKS = Role.LECTURER

# Reading any student's svn (in subjects you have this cap for)
CAP_READ_SVN = Role.LECTURER
# Writing to any student's svn
CAP_WRITE_SVN = Role.LECTURER

# Create and modify projects and project sets
CAP_MANAGEPROJECTS = Role.LECTURER
# Create and modify project groups and assign logins to them
CAP_MANAGEGROUPS = Role.TUTOR

# "SuperUser" role - certain users are granted "sudo" powers on the Unix
# system, giving them abilities beyond what is granted here in IVLE.