[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 |
---|
[6633] | 21 | from waeup.sirp.students.interfaces import ( |
---|
[6838] | 22 | IStudentsContainer, IStudent) |
---|
[6637] | 23 | from waeup.sirp.utils.helpers import get_current_principal |
---|
| 24 | from waeup.sirp.utils.logger import Logger |
---|
[6621] | 25 | |
---|
[6637] | 26 | class StudentsContainer(grok.Container, Logger): |
---|
[6621] | 27 | """ |
---|
| 28 | The node containing the student models |
---|
| 29 | """ |
---|
| 30 | |
---|
| 31 | grok.implements(IStudentsContainer) |
---|
| 32 | |
---|
| 33 | def archive(self, id=None): |
---|
| 34 | raise NotImplementedError() |
---|
| 35 | |
---|
| 36 | def clear(self, id=None, archive=True): |
---|
| 37 | raise NotImplementedError() |
---|
| 38 | |
---|
[6633] | 39 | def addStudent(self, student): |
---|
| 40 | """Add a student with subcontainers. |
---|
| 41 | """ |
---|
| 42 | if not IStudent.providedBy(student): |
---|
[6663] | 43 | raise TypeError( |
---|
| 44 | 'StudentsContainers contain only IStudent instances') |
---|
[6633] | 45 | self[student.student_id] = student |
---|
[6845] | 46 | return |
---|
[6637] | 47 | |
---|
| 48 | logger_name = 'waeup.sirp.${sitename}.students' |
---|
| 49 | logger_filename = 'students.log' |
---|
| 50 | |
---|
[6644] | 51 | def logger_info(self, ob_class, target, comment=None): |
---|
[6637] | 52 | """Get the logger's info method. |
---|
| 53 | """ |
---|
| 54 | user = get_current_principal() |
---|
[7077] | 55 | user = user.id |
---|
[6637] | 56 | self.logger.info('%s - %s - %s - %s' % ( |
---|
[6644] | 57 | user, ob_class, target, comment)) |
---|
[6637] | 58 | return |
---|