source: main/waeup.kofa/trunk/src/waeup/kofa/students/permissions.py @ 9273

Last change on this file since 9273 was 9273, checked in by Henrik Bettermann, 12 years ago

Add special permission and view for triggering transitions

  • Property svn:keywords set to Id
File size: 3.3 KB
Line 
1## $Id: permissions.py 9273 2012-10-02 16:50:57Z 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 ViewStudentsTab(grok.Permission):
32    grok.name('waeup.viewStudentsTab')
33
34class ViewMyStudentDataTab(grok.Permission):
35    grok.name('waeup.viewMyStudentDataTab')
36
37class ViewStudentsContainer(grok.Permission):
38    grok.name('waeup.viewStudentsContainer')
39
40class PayStudent(grok.Permission):
41    grok.name('waeup.payStudent')
42
43class HandleAccommodation(grok.Permission):
44    grok.name('waeup.handleAccommodation')
45
46class UploadStudentFile(grok.Permission):
47    grok.name('waeup.uploadStudentFile')
48
49class ManageStudent(grok.Permission):
50    grok.name('waeup.manageStudent')
51
52class ClearStudent(grok.Permission):
53    grok.name('waeup.clearStudent')
54
55class ValidateStudent(grok.Permission):
56    grok.name('waeup.validateStudent')
57
58class TriggerTransition(grok.Permission):
59    grok.name('waeup.triggerTransition')
60
61# Local role
62class StudentRecordOwner(grok.Role):
63    grok.name('waeup.local.StudentRecordOwner')
64    grok.title(u'Student Record Owner')
65    grok.permissions('waeup.handleStudent', 'waeup.uploadStudentFile',
66                     'waeup.viewStudent', 'waeup.payStudent',
67                     'waeup.handleAccommodation')
68
69# Site Roles
70class StudentRole(grok.Role):
71    grok.name('waeup.Student')
72    grok.permissions('waeup.viewAcademics', 'waeup.viewMyStudentDataTab',
73                     'waeup.Authenticated')
74
75class StudentsOfficer(grok.Role):
76    grok.name('waeup.StudentsOfficer')
77    grok.title(u'Students Officer (view only)')
78    grok.permissions('waeup.viewStudent','waeup.viewStudents',
79          'waeup.viewStudentsTab', 'waeup.viewStudentsContainer')
80
81class StudentsManager(grok.Role):
82    grok.name('waeup.StudentsManager')
83    grok.title(u'Students Manager')
84    grok.permissions('waeup.viewStudent', 'waeup.viewStudents',
85                     'waeup.manageStudent', 'waeup.viewStudentsContainer',
86                     'waeup.payStudent', 'waeup.uploadStudentFile',
87                     'waeup.viewStudentsTab', 'waeup.handleAccommodation')
88
89class StudentsClearanceOfficer(grok.Role):
90    grok.name('waeup.StudentsClearanceOfficer')
91    grok.title(u'Clearance Officer (all students)')
92    grok.permissions('waeup.clearStudent','waeup.viewStudent')
93
94class StudentsCourseAdviser(grok.Role):
95    grok.name('waeup.StudentsCourseAdviser')
96    grok.title(u'Course Adviser (all students)')
97    grok.permissions('waeup.validateStudent','waeup.viewStudent')
Note: See TracBrowser for help on using the repository browser.