[7505] | 1 | ## $Id: student.py 16688 2021-10-28 06:50:14Z 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 | """ |
---|
| 19 | Container for the various objects owned by students. |
---|
| 20 | """ |
---|
| 21 | import grok |
---|
| 22 | from zope.interface import implementedBy |
---|
[16371] | 23 | from waeup.kofa.interfaces import CLEARANCE, REQUESTED |
---|
[7822] | 24 | from waeup.kofa.utils.helpers import attrs_to_fields |
---|
[8988] | 25 | from waeup.kofa.students.student import StudentFactory |
---|
[8865] | 26 | from waeup.kofa.students.interfaces import IStudentNavigation |
---|
[10488] | 27 | from waeup.kofa.utils.helpers import get_current_principal |
---|
[8988] | 28 | from kofacustom.nigeria.students.student import NigeriaStudent |
---|
[13085] | 29 | from waeup.uniben.students.interfaces import ( |
---|
[16382] | 30 | ICustomStudent, ICustomStudentPersonalEdit, IMedicalHistory) |
---|
[7505] | 31 | |
---|
| 32 | |
---|
[8988] | 33 | class CustomStudent(NigeriaStudent): |
---|
[7505] | 34 | """This is a student container for the various objects |
---|
| 35 | owned by students. |
---|
| 36 | """ |
---|
[13085] | 37 | grok.implements( |
---|
[16382] | 38 | ICustomStudent, IStudentNavigation, ICustomStudentPersonalEdit, |
---|
| 39 | IMedicalHistory) |
---|
[8204] | 40 | grok.provides(ICustomStudent) |
---|
[7505] | 41 | |
---|
[10312] | 42 | @property |
---|
| 43 | def transcript_enabled(self): |
---|
[15172] | 44 | return True |
---|
| 45 | #user = get_current_principal() |
---|
| 46 | #if user.id in ('admin', 'isouaba', 'med', 'zope.mgr'): |
---|
| 47 | # return True |
---|
| 48 | #return False |
---|
[7505] | 49 | |
---|
[14902] | 50 | @property |
---|
| 51 | def is_jupeb(self): |
---|
[16337] | 52 | if self.current_mode == 'found': |
---|
[14902] | 53 | return True |
---|
[16371] | 54 | return |
---|
[10312] | 55 | |
---|
[16371] | 56 | @property |
---|
| 57 | def clearance_locked(self): |
---|
[16688] | 58 | return self.state not in (CLEARANCE, ) |
---|
[14902] | 59 | |
---|
[16371] | 60 | |
---|
[7505] | 61 | # Set all attributes of Student required in IStudent as field |
---|
| 62 | # properties. Doing this, we do not have to set initial attributes |
---|
| 63 | # ourselves and as a bonus we get free validation when an attribute is |
---|
| 64 | # set. |
---|
[8204] | 65 | CustomStudent = attrs_to_fields(CustomStudent) |
---|
[7603] | 66 | |
---|
[8204] | 67 | class CustomStudentFactory(StudentFactory): |
---|
[7603] | 68 | """A factory for students. |
---|
| 69 | """ |
---|
| 70 | |
---|
| 71 | def __call__(self, *args, **kw): |
---|
[8204] | 72 | return CustomStudent() |
---|
[7603] | 73 | |
---|
| 74 | def getInterfaces(self): |
---|
[8204] | 75 | return implementedBy(CustomStudent) |
---|