[7191] | 1 | ## $Id: permissions.py 7334 2011-12-12 14:11:21Z henrik $ |
---|
| 2 | ## |
---|
[6655] | 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 | """ |
---|
| 19 | Permissions for the student section. |
---|
| 20 | """ |
---|
| 21 | import grok |
---|
| 22 | |
---|
| 23 | # Student section permissions |
---|
| 24 | |
---|
[6660] | 25 | class HandleStudent(grok.Permission): |
---|
| 26 | grok.name('waeup.handleStudent') |
---|
[6655] | 27 | |
---|
[6660] | 28 | class ViewStudent(grok.Permission): |
---|
| 29 | grok.name('waeup.viewStudent') |
---|
| 30 | |
---|
[7240] | 31 | class ViewStudentsTab(grok.Permission): |
---|
| 32 | grok.name('waeup.viewStudentsTab') |
---|
[7184] | 33 | |
---|
[7240] | 34 | class ViewMyStudentDataTab(grok.Permission): |
---|
| 35 | grok.name('waeup.viewMyStudentDataTab') |
---|
| 36 | |
---|
| 37 | class ViewStudentsContainer(grok.Permission): |
---|
| 38 | grok.name('waeup.viewStudentsContainer') |
---|
| 39 | |
---|
[6930] | 40 | class PayStudent(grok.Permission): |
---|
| 41 | grok.name('waeup.payStudent') |
---|
| 42 | |
---|
[7181] | 43 | class HandleAccommodation(grok.Permission): |
---|
| 44 | grok.name('waeup.handleAccommodation') |
---|
| 45 | |
---|
[7127] | 46 | class UploadStudentFile(grok.Permission): |
---|
| 47 | grok.name('waeup.uploadStudentFile') |
---|
| 48 | |
---|
[7136] | 49 | class ManageStudent(grok.Permission): |
---|
| 50 | grok.name('waeup.manageStudent') |
---|
[6655] | 51 | |
---|
[7136] | 52 | class ClearStudent(grok.Permission): |
---|
| 53 | grok.name('waeup.clearStudent') |
---|
| 54 | |
---|
[7334] | 55 | class ValidateStudent(grok.Permission): |
---|
| 56 | grok.name('waeup.validateStudent') |
---|
| 57 | |
---|
[6660] | 58 | # Local role |
---|
| 59 | class StudentRecordOwner(grok.Role): |
---|
| 60 | grok.name('waeup.local.StudentRecordOwner') |
---|
| 61 | grok.title(u'Student Record Owner') |
---|
[7127] | 62 | grok.permissions('waeup.handleStudent', 'waeup.uploadStudentFile', |
---|
[7181] | 63 | 'waeup.viewStudent', 'waeup.payStudent', |
---|
[7184] | 64 | 'waeup.handleAccommodation', 'waeup.Authenticated') |
---|
[6660] | 65 | |
---|
[7178] | 66 | # Site Roles |
---|
[6678] | 67 | class StudentRole(grok.Role): |
---|
| 68 | grok.name('waeup.Student') |
---|
[7240] | 69 | grok.permissions('waeup.viewAcademics', 'waeup.viewMyStudentDataTab') |
---|
[6678] | 70 | |
---|
[6655] | 71 | class StudentsOfficer(grok.Role): |
---|
| 72 | grok.name('waeup.StudentsOfficer') |
---|
[7154] | 73 | grok.title(u'Students Officer (view only)') |
---|
[7240] | 74 | grok.permissions('waeup.viewStudent','waeup.viewStudents', |
---|
| 75 | 'waeup.viewStudentsTab', 'waeup.viewStudentsContainer') |
---|
[7154] | 76 | |
---|
| 77 | class StudentsManager(grok.Role): |
---|
| 78 | grok.name('waeup.StudentsManager') |
---|
| 79 | grok.title(u'Students Manager') |
---|
[7168] | 80 | grok.permissions('waeup.viewStudent', 'waeup.manageStudent', |
---|
[7181] | 81 | 'waeup.payStudent', 'waeup.uploadStudentFile', |
---|
[7184] | 82 | 'waeup.handleAccommodation', 'waeup.viewStudents') |
---|
[7154] | 83 | |
---|
| 84 | class StudentsClearanceOfficer(grok.Role): |
---|
| 85 | grok.name('waeup.StudentsClearanceOfficer') |
---|
| 86 | grok.title(u'Clearance Officer (all students)') |
---|
[7334] | 87 | grok.permissions('waeup.clearStudent','waeup.viewStudent') |
---|
| 88 | |
---|
| 89 | class StudentsCourseAdviser(grok.Role): |
---|
| 90 | grok.name('waeup.StudentsCourseAdviser') |
---|
| 91 | grok.title(u'Course Adviser (all students)') |
---|
| 92 | grok.permissions('waeup.validateStudent','waeup.viewStudent') |
---|