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

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

Remove hostel package. Will be 'hostels' later.

  • Property svn:keywords set to Id
File size: 2.0 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 waeup.sirp.students.interfaces import (
22    IStudentsContainer, IStudent)
23from waeup.sirp.utils.helpers import get_current_principal
24from waeup.sirp.utils.logger import Logger
25
26class StudentsContainer(grok.Container, Logger):
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
39    def addStudent(self, student):
40        """Add a student with subcontainers.
41        """
42        if not IStudent.providedBy(student):
43            raise TypeError(
44                'StudentsContainers contain only IStudent instances')
45        self[student.student_id] = student
46        return
47
48    logger_name = 'waeup.sirp.${sitename}.students'
49    logger_filename = 'students.log'
50
51    def logger_info(self, ob_class, target, comment=None):
52        """Get the logger's info method.
53        """
54        user = get_current_principal()
55        if user is None:
56            user = 'system'
57        else:
58            user = user.id
59        self.logger.info('%s - %s - %s - %s' % (
60                user, ob_class, target, comment))
61        return
Note: See TracBrowser for help on using the repository browser.