## Copyright (C) 2011 Uli Fouquet & Henrik Bettermann
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 2 of the License, or
## (at your option) any later version.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program; if not, write to the Free Software
## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
##
"""
Containers for students.
"""
import grok
import os
from zope.component.interfaces import IFactory
from zope.securitypolicy.interfaces import IPrincipalRoleManager
from waeup.sirp.interfaces import IUserAccount
from waeup.sirp.students.interfaces import (
    IStudentsContainer, IStudent, IStudentPayments, IStudentAccommodation)
from waeup.sirp.students.studycourse import StudentStudyCourse
from waeup.sirp.students.payments import StudentPayments
from waeup.sirp.students.accommodation import StudentAccommodation
from waeup.sirp.utils.helpers import get_current_principal
from waeup.sirp.utils.logger import Logger

class StudentsContainer(grok.Container, Logger):
    """
    The node containing the student models
    """

    grok.implements(IStudentsContainer)

    def archive(self, id=None):
        raise NotImplementedError()

    def clear(self, id=None, archive=True):
        raise NotImplementedError()

    def addStudent(self, student):
        """Add a student with subcontainers.
        """
        if not IStudent.providedBy(student):
            raise TypeError(
                'StudentsContainers contain only IStudent instances')
        student.clearance_locked = True
        self[student.student_id] = student
        studycourse = StudentStudyCourse()
        self[student.student_id]['studycourse'] = studycourse
        payments = StudentPayments()
        self[student.student_id]['payments'] = payments
        accommodation = StudentAccommodation()
        self[student.student_id]['accommodation'] = accommodation
        # Assign global student role for new student
        account = IUserAccount(student)
        account.roles = ['waeup.Student']
        # Assign local StudentRecordOwner role
        role_manager = IPrincipalRoleManager(self[student.student_id])
        role_manager.assignRoleToPrincipal(
            'waeup.local.StudentRecordOwner', student.student_id)
        # Return student_id (only needed in tests)
        return student.student_id

    logger_name = 'waeup.sirp.${sitename}.students'
    logger_filename = 'students.log'

    def logger_info(self, ob_class, target, comment=None):
        """Get the logger's info method.
        """
        user = get_current_principal()
        if user is None:
            user = 'system'
        else:
            user = user.id
        self.logger.info('%s - %s - %s - %s' % (
                user, ob_class, target, comment))
        return
