source: main/waeup.sirp/trunk/src/waeup/sirp/students/container.py @ 6682

Last change on this file since 6682 was 6681, checked in by Henrik Bettermann, 13 years ago

Assign local StudentRecordOwner? role when adding a student.

  • Property svn:keywords set to Id
File size: 3.1 KB
Line 
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"""
17Containers for students.
18"""
19import grok
20import os
21from zope.component.interfaces import IFactory
22from zope.securitypolicy.interfaces import IPrincipalRoleManager
23from waeup.sirp.interfaces import IUserAccount
24from waeup.sirp.students.interfaces import (
25    IStudentsContainer, IStudent, IStudentPayments, IStudentAccommodation)
26from waeup.sirp.students.studycourse import StudentStudyCourse
27from waeup.sirp.students.payments import StudentPayments
28from waeup.sirp.students.accommodation import StudentAccommodation
29from waeup.sirp.utils.helpers import get_current_principal
30from waeup.sirp.utils.logger import Logger
31
32class StudentsContainer(grok.Container, Logger):
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
45    def addStudent(self, student):
46        """Add a student with subcontainers.
47        """
48        if not IStudent.providedBy(student):
49            raise TypeError(
50                'StudentsContainers contain only IStudent instances')
51        self[student.student_id] = student
52        studycourse = StudentStudyCourse()
53        self[student.student_id]['studycourse'] = studycourse
54        payments = StudentPayments()
55        self[student.student_id]['payments'] = payments
56        accommodation = StudentAccommodation()
57        self[student.student_id]['accommodation'] = accommodation
58        # Assign global student role for new student
59        account = IUserAccount(student)
60        account.roles = 'waeup.Student'
61        # Assign local StudentRecordOwner role
62        role_manager = IPrincipalRoleManager(self[student.student_id])
63        role_manager.assignRoleToPrincipal(
64            'waeup.local.StudentRecordOwner', student.student_id)
65        # Return student_id (only needed in tests)
66        return student.student_id
67
68    logger_name = 'waeup.sirp.${sitename}.students'
69    logger_filename = 'students.log'
70
71    def logger_info(self, ob_class, target, comment=None):
72        """Get the logger's info method.
73        """
74        user = get_current_principal()
75        if user is None:
76            user = 'system'
77        else:
78            user = user.id
79        self.logger.info('%s - %s - %s - %s' % (
80                user, ob_class, target, comment))
81        return
Note: See TracBrowser for help on using the repository browser.