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

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

Add clearance_locked attribute and set True when a student is added.

Add clearance edit page for students.

Shorten page template names.

Rename Edit buttons for officers. Officers are managing and students are editing objects.

  • 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        student.clearance_locked = True
52        self[student.student_id] = student
53        studycourse = StudentStudyCourse()
54        self[student.student_id]['studycourse'] = studycourse
55        payments = StudentPayments()
56        self[student.student_id]['payments'] = payments
57        accommodation = StudentAccommodation()
58        self[student.student_id]['accommodation'] = accommodation
59        # Assign global student role for new student
60        account = IUserAccount(student)
61        account.roles = ['waeup.Student']
62        # Assign local StudentRecordOwner role
63        role_manager = IPrincipalRoleManager(self[student.student_id])
64        role_manager.assignRoleToPrincipal(
65            'waeup.local.StudentRecordOwner', student.student_id)
66        # Return student_id (only needed in tests)
67        return student.student_id
68
69    logger_name = 'waeup.sirp.${sitename}.students'
70    logger_filename = 'students.log'
71
72    def logger_info(self, ob_class, target, comment=None):
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' % (
81                user, ob_class, target, comment))
82        return
Note: See TracBrowser for help on using the repository browser.