## $Id: interfaces.py 16088 2020-05-11 07:50:40Z henrik $
##
## Copyright (C) 2012 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
##

from zope import schema
from waeup.kofa.interfaces import validate_email
from waeup.kofa.students.vocabularies import StudyLevelSource
from kofacustom.nigeria.students.interfaces import (
    INigeriaStudentBase, INigeriaUGStudentClearance, INigeriaPGStudentClearance,
    INigeriaStudentPersonal, INigeriaStudentPersonalEdit,
    INigeriaStudentStudyLevel,
    INigeriaStudentStudyCourse, INigeriaCourseTicket,
    INigeriaStudentUpdateByRegNo, INigeriaStudentUpdateByMatricNo,
    )
from waeup.uniben.payments.interfaces import ICustomOnlinePayment
from waeup.uniben.interfaces import MessageFactory as _

class ICustomStudentBase(INigeriaStudentBase):
    """Representation of student base data.
    """

    library = schema.Bool(
        title = _(u'Library Id Card'),
        default = False,
        required = False,
        )

    email2 = schema.ASCIILine(
        title = _(u'Institution Email'),
        required = False,
        constraint=validate_email,
        )

ICustomStudentBase['email2'].order = ICustomStudentBase[
    'phone'].order
ICustomStudentBase['phone'].order = ICustomStudentBase[
    'email'].order

class ICustomStudentPersonal(INigeriaStudentPersonal):
    """Student personal data.
    """

    parent_email = schema.ASCIILine(
        title = _(u'Parent Email'),
        required = False,
        constraint=validate_email,
        )

class ICustomStudentPersonalEdit(INigeriaStudentPersonalEdit):
    """Interface for editing personal data by students.
    """

    parent_email = schema.ASCIILine(
        title = _(u'Parent Email'),
        required = False,
        constraint=validate_email,
        )

class ICustomUGStudentClearance(INigeriaUGStudentClearance):
    """Representation of ug student clearance data.
    """

class ICustomPGStudentClearance(INigeriaPGStudentClearance):
    """Representation of pg student clearance data.
    """

class ICustomStudent(ICustomStudentBase, ICustomUGStudentClearance,
    ICustomPGStudentClearance, ICustomStudentPersonal):
    """Representation of a student.
    """

class ICustomStudentStudyCourse(INigeriaStudentStudyCourse):
    """A container for student study levels.
    """

class ICustomStudentStudyLevel(INigeriaStudentStudyLevel):
    """A container for course tickets.
    """

class ICustomStudentOnlinePayment(ICustomOnlinePayment):
    """A student payment via payment gateways.

    This Interface does not inherit from IStudentOnlinePayment.
    Thus all fields from IStudentOnlinePayment have to be repeated here.
    """

    p_current = schema.Bool(
        title = _(u'Current Session Payment'),
        default = True,
        required = False,
        )

    p_level = schema.Choice(
        title = _(u'Payment Level'),
        source = StudyLevelSource(),
        required = False,
        )

    staff_rebate = schema.Bool(
        title = _(u'Staff Rebate Payment'),
        default = False,
        required = False,
        )

    rebate_amount = schema.Float(
        title = _(u'Rebate'),
        default = 0.0,
        required = False,
        readonly = False,
        )

ICustomStudentOnlinePayment['p_level'].order = ICustomStudentOnlinePayment[
    'p_session'].order

class ICustomCourseTicket(INigeriaCourseTicket):
    """A course ticket.
    """

class ICustomStudentUpdateByRegNo(INigeriaStudentUpdateByRegNo):
    """Representation of a student. Skip regular reg_number validation.
    """

class ICustomStudentUpdateByMatricNo(INigeriaStudentUpdateByMatricNo):
    """Representation of a student. Skip regular matric_number validation.
    """
