source: main/waeup.kofa/branches/henrik-transcript-workflow/src/waeup/kofa/students/permissions.py @ 15142

Last change on this file since 15142 was 15141, checked in by Henrik Bettermann, 6 years ago

Extend test. Global transcript officers get the permission to manage student data.

  • Property svn:keywords set to Id
File size: 7.8 KB
Line 
1## $Id: permissions.py 15141 2018-09-18 06:27:29Z 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 students section.
20"""
21import grok
22
23# Students section permissions
24
25class HandleStudent(grok.Permission):
26    """
27    The HandleStudent permission is reserved for students.
28    Students 'handle' their data. Officers 'manage' the data.
29    """
30    grok.name('waeup.handleStudent')
31
32class ViewStudent(grok.Permission):
33    """
34    The ViewStudent permission allows to view all student data.
35    """
36    grok.name('waeup.viewStudent')
37
38class ViewMyStudentDataTab(grok.Permission):
39    grok.name('waeup.viewMyStudentDataTab')
40
41class ViewStudentsContainer(grok.Permission):
42    """The ViewStudentsContainer permission allows to view the students root
43    container page.
44    """
45    grok.name('waeup.viewStudentsContainer')
46
47class PayStudent(grok.Permission):
48    """The PayStudent permission allows to add an online payment ticket and to
49    manage tickets.
50    """
51    grok.name('waeup.payStudent')
52
53class HandleAccommodation(grok.Permission):
54    """The HandleAccommodation allows to manage bed tickets.
55    """
56    grok.name('waeup.handleAccommodation')
57
58class UploadStudentFile(grok.Permission):
59    """The UploadStudentFile permissions allows to upload the passport picture.
60    The respective page additionally checks the state of the student.
61    """
62    grok.name('waeup.uploadStudentFile')
63
64class ManageStudent(grok.Permission):
65    """The ManageStudent permission allows to edit the data.
66    This permission is meant for students officers.
67    """
68    grok.name('waeup.manageStudent')
69
70class ClearStudent(grok.Permission):
71    """The ClearStudent permission is needed to clear students
72    or to reject clearance. This permission is meant for clearance officers.
73    """
74    grok.name('waeup.clearStudent')
75
76class ValidateStudent(grok.Permission):
77    """The ValidateStudent permission is needed to validate or reject
78    course lists. This permission is not needed if users
79    already have the TriggerTransition permission.
80    """
81    grok.name('waeup.validateStudent')
82
83class EditStudyLevel(grok.Permission):
84    """The EditStudyLevel permission is needed for editing course lists.
85    Students and course advisers do have this permission.
86    """
87    grok.name('waeup.editStudyLevel')
88
89class LoginAsStudent(grok.Permission):
90    """The LoginAsStudent is needed to set temporary student passwords
91    and login as (impersonate) students.
92    """
93    grok.name('waeup.loginAsStudent')
94
95class ViewTranscript(grok.Permission):
96    """The ViewTranscript role is needed to view transcript pages and slips.
97    """
98    grok.name('waeup.viewTranscript')
99
100class ProcessTranscript(grok.Permission):
101    grok.name('waeup.processTranscript')
102    """The ProcessTranscript role is needed to validate and relase transcripts.
103    """
104
105class SignTranscript(grok.Permission):
106    grok.name('waeup.signTranscript')
107    """The ViewTranscript role is needed to sign transcripts.
108    """
109
110# Local role
111class StudentRecordOwner(grok.Role):
112    """A student 'owns' her/his student object and subobjects and
113    gains permissions to handle all data, upload a passport picture,
114    add payment tickets, create and edit course lists and handle accommodation.
115    """
116    grok.name('waeup.local.StudentRecordOwner')
117    grok.title(u'Student Record Owner')
118    grok.permissions('waeup.handleStudent',
119                     'waeup.uploadStudentFile',
120                     'waeup.viewStudent',
121                     'waeup.payStudent',
122                     'waeup.handleAccommodation',
123                     'waeup.editStudyLevel')
124
125# Site Roles
126class StudentRole(grok.Role):
127    """This role is dedicated to students only.
128    It defines the permissions a student gains portal-wide.
129    """
130    grok.name('waeup.Student')
131    grok.title(u'Student (do not assign)')
132    grok.permissions('waeup.viewAcademics',
133                     'waeup.viewMyStudentDataTab',
134                     'waeup.Authenticated')
135
136class StudentsOfficer(grok.Role):
137    """The Students Officer is allowed to view all student data.
138    """
139    grok.name('waeup.StudentsOfficer')
140    grok.title(u'Students Officer (view only)')
141    grok.permissions('waeup.viewStudent',
142                     'waeup.viewStudentsContainer')
143
144class StudentsManager(grok.Role):
145    """The Students Manager is allowed to edit all student data, to
146    create payment tickets, to handle bed tickets and to upload passport
147    pictures.
148    """
149    grok.name('waeup.StudentsManager')
150    grok.title(u'Students Manager')
151    grok.permissions('waeup.viewStudent',
152                     'waeup.manageStudent',
153                     'waeup.viewStudentsContainer',
154                     'waeup.payStudent',
155                     'waeup.uploadStudentFile',
156                     'waeup.handleAccommodation')
157
158class TranscriptOfficer(grok.Role):
159    """The Transcript Officer is allowed to view, to validate and to
160    release student transcripts. The officer is also allowed to
161    manage student data (global role only).
162    """
163    grok.name('waeup.TranscriptOfficer')
164    grok.title(u'Transcript Officer')
165    grok.permissions('waeup.viewAcademics',
166                     'waeup.viewTranscript',
167                     'waeup.processTranscript',
168                     'waeup.viewStudent',
169                     'waeup.viewStudentsContainer',
170                     'waeup.manageStudent',
171                     )
172
173class TranscriptSignee(grok.Role):
174    """The Transcript Signee is allowed to view and to sign student
175    transcripts.
176    """
177    grok.name('waeup.TranscriptSignee')
178    grok.title(u'Transcript Signee')
179    grok.permissions('waeup.viewAcademics',
180                     'waeup.viewTranscript',
181                     'waeup.signTranscript',
182                     'waeup.viewStudent',
183                     'waeup.viewStudentsContainer',
184                     )
185
186class StudentsClearanceOfficer(grok.Role):
187    """The global StudentsClearanceOfficer role enables users to view all
188    student data, to clear students and to reject clearance portal-wide.
189    Usually, this role is not assigned manually.
190    We are using the correspondent local role instead which assigns the
191    StudentsClearanceOfficer role dynamically.
192    """
193    grok.name('waeup.StudentsClearanceOfficer')
194    grok.title(u'Clearance Officer (all students)')
195    grok.permissions('waeup.clearStudent',
196                     'waeup.viewStudent')
197
198class StudentsCourseAdviser(grok.Role):
199    """The global StudentsCourseAdviser role enables users to view all
200    student data, to edit, validate or reject course lists  portal-wide.
201    Usually, this role is not assigned manually.
202    We are using the correspondent local role instead which assigns the
203    StudentsCourseAdviser role dynamically.
204    """
205    grok.name('waeup.StudentsCourseAdviser')
206    grok.title(u'Course Adviser (all students)')
207    grok.permissions('waeup.validateStudent',
208                     'waeup.viewStudent',
209                     'waeup.editStudyLevel')
210
211class StudentImpersonator(grok.Role):
212    """The Student Impersonator gains the LoginAsStudent permission,
213    nothing else, see description above.
214    """
215    grok.name('waeup.StudentImpersonator')
216    grok.title(u'Student Impersonator')
217    grok.permissions('waeup.loginAsStudent')
Note: See TracBrowser for help on using the repository browser.