[6621] | 1 | ## Copyright (C) 2011 Uli Fouquet & Henrik Bettermann |
---|
| 2 | ## This program is free software; you can redistribute it and/or modify |
---|
| 3 | ## it under the terms of the GNU General Public License as published by |
---|
| 4 | ## the Free Software Foundation; either version 2 of the License, or |
---|
| 5 | ## (at your option) any later version. |
---|
| 6 | ## |
---|
| 7 | ## This program is distributed in the hope that it will be useful, |
---|
| 8 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 9 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 10 | ## GNU General Public License for more details. |
---|
| 11 | ## |
---|
| 12 | ## You should have received a copy of the GNU General Public License |
---|
| 13 | ## along with this program; if not, write to the Free Software |
---|
| 14 | ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
---|
| 15 | ## |
---|
| 16 | """ |
---|
| 17 | Containers for students. |
---|
| 18 | """ |
---|
| 19 | import grok |
---|
| 20 | import os |
---|
| 21 | from zope.component.interfaces import IFactory |
---|
[6681] | 22 | from zope.securitypolicy.interfaces import IPrincipalRoleManager |
---|
[6679] | 23 | from waeup.sirp.interfaces import IUserAccount |
---|
[6633] | 24 | from waeup.sirp.students.interfaces import ( |
---|
[6635] | 25 | IStudentsContainer, IStudent, IStudentPayments, IStudentAccommodation) |
---|
[6633] | 26 | from waeup.sirp.students.studycourse import StudentStudyCourse |
---|
[6635] | 27 | from waeup.sirp.students.payments import StudentPayments |
---|
| 28 | from waeup.sirp.students.accommodation import StudentAccommodation |
---|
[6637] | 29 | from waeup.sirp.utils.helpers import get_current_principal |
---|
| 30 | from waeup.sirp.utils.logger import Logger |
---|
[6621] | 31 | |
---|
[6637] | 32 | class StudentsContainer(grok.Container, Logger): |
---|
[6621] | 33 | """ |
---|
| 34 | The node containing the student models |
---|
| 35 | """ |
---|
| 36 | |
---|
| 37 | grok.implements(IStudentsContainer) |
---|
| 38 | |
---|
| 39 | def archive(self, id=None): |
---|
| 40 | raise NotImplementedError() |
---|
| 41 | |
---|
| 42 | def clear(self, id=None, archive=True): |
---|
| 43 | raise NotImplementedError() |
---|
| 44 | |
---|
[6633] | 45 | def addStudent(self, student): |
---|
| 46 | """Add a student with subcontainers. |
---|
| 47 | """ |
---|
| 48 | if not IStudent.providedBy(student): |
---|
[6663] | 49 | raise TypeError( |
---|
| 50 | 'StudentsContainers contain only IStudent instances') |
---|
[6695] | 51 | student.clearance_locked = True |
---|
[6633] | 52 | self[student.student_id] = student |
---|
| 53 | studycourse = StudentStudyCourse() |
---|
| 54 | self[student.student_id]['studycourse'] = studycourse |
---|
[6635] | 55 | payments = StudentPayments() |
---|
| 56 | self[student.student_id]['payments'] = payments |
---|
| 57 | accommodation = StudentAccommodation() |
---|
| 58 | self[student.student_id]['accommodation'] = accommodation |
---|
[6681] | 59 | # Assign global student role for new student |
---|
[6679] | 60 | account = IUserAccount(student) |
---|
[6684] | 61 | account.roles = ['waeup.Student'] |
---|
[6681] | 62 | # Assign local StudentRecordOwner role |
---|
| 63 | role_manager = IPrincipalRoleManager(self[student.student_id]) |
---|
| 64 | role_manager.assignRoleToPrincipal( |
---|
| 65 | 'waeup.local.StudentRecordOwner', student.student_id) |
---|
[6652] | 66 | # Return student_id (only needed in tests) |
---|
| 67 | return student.student_id |
---|
[6637] | 68 | |
---|
| 69 | logger_name = 'waeup.sirp.${sitename}.students' |
---|
| 70 | logger_filename = 'students.log' |
---|
| 71 | |
---|
[6644] | 72 | def logger_info(self, ob_class, target, comment=None): |
---|
[6637] | 73 | """Get the logger's info method. |
---|
| 74 | """ |
---|
| 75 | user = get_current_principal() |
---|
| 76 | if user is None: |
---|
| 77 | user = 'system' |
---|
| 78 | else: |
---|
| 79 | user = user.id |
---|
| 80 | self.logger.info('%s - %s - %s - %s' % ( |
---|
[6644] | 81 | user, ob_class, target, comment)) |
---|
[6637] | 82 | return |
---|