source: main/waeup.sirp/trunk/src/waeup/sirp/students/permissions.py @ 7236

Last change on this file since 7236 was 7201, checked in by Henrik Bettermann, 13 years ago

Restrict view access for clearance officers only to students which can be cleared by the officer. No further site role is required (see comment in browser_test)

  • Property svn:keywords set to Id
File size: 2.6 KB
Line 
1## $Id: permissions.py 7201 2011-11-25 14:25:43Z henrik $
2##
3## Copyright (C) 2011 Uli Fouquet & Henrik Bettermann
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17##
18"""
19Permissions for the student section.
20"""
21import grok
22
23# Student section permissions
24
25class HandleStudent(grok.Permission):
26    grok.name('waeup.handleStudent')
27
28class ViewStudent(grok.Permission):
29    grok.name('waeup.viewStudent')
30
31class ViewStudents(grok.Permission):
32    grok.name('waeup.viewStudents')
33
34class PayStudent(grok.Permission):
35    grok.name('waeup.payStudent')
36
37class HandleAccommodation(grok.Permission):
38    grok.name('waeup.handleAccommodation')
39
40class UploadStudentFile(grok.Permission):
41    grok.name('waeup.uploadStudentFile')
42
43class ManageStudent(grok.Permission):
44    grok.name('waeup.manageStudent')
45
46class ClearStudent(grok.Permission):
47    grok.name('waeup.clearStudent')
48
49# Local role
50class StudentRecordOwner(grok.Role):
51    grok.name('waeup.local.StudentRecordOwner')
52    grok.title(u'Student Record Owner')
53    grok.permissions('waeup.handleStudent', 'waeup.uploadStudentFile',
54                     'waeup.viewStudent', 'waeup.payStudent',
55                     'waeup.handleAccommodation', 'waeup.Authenticated')
56
57# Site Roles
58class StudentRole(grok.Role):
59    grok.name('waeup.Student')
60    grok.permissions('waeup.viewAcademics')
61
62class StudentsOfficer(grok.Role):
63    grok.name('waeup.StudentsOfficer')
64    grok.title(u'Students Officer (view only)')
65    grok.permissions('waeup.viewStudent','waeup.viewStudents')
66
67class StudentsManager(grok.Role):
68    grok.name('waeup.StudentsManager')
69    grok.title(u'Students Manager')
70    grok.permissions('waeup.viewStudent', 'waeup.manageStudent',
71                     'waeup.payStudent', 'waeup.uploadStudentFile',
72                     'waeup.handleAccommodation', 'waeup.viewStudents')
73
74class StudentsClearanceOfficer(grok.Role):
75    grok.name('waeup.StudentsClearanceOfficer')
76    grok.title(u'Clearance Officer (all students)')
77    grok.permissions('waeup.clearStudent','waeup.viewStudent')
Note: See TracBrowser for help on using the repository browser.