source: main/waeup.kofa/trunk/src/waeup/kofa/students/studycourse.py @ 8472

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

Add property is_postgrad.

Add invariant constraint to ICertificate.

  • Property svn:keywords set to Id
File size: 5.0 KB
Line 
1## $Id: studycourse.py 8472 2012-05-20 09:57:09Z henrik $
2##
3## Copyright (C) 2011 Uli Fouquet & Henrik Bettermann
4## This program is free software; you can redistribute it and/or modify
5## it under the terms of the GNU General Public License as published by
6## the Free Software Foundation; either version 2 of the License, or
7## (at your option) any later version.
8##
9## This program is distributed in the hope that it will be useful,
10## but WITHOUT ANY WARRANTY; without even the implied warranty of
11## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12## GNU General Public License for more details.
13##
14## You should have received a copy of the GNU General Public License
15## along with this program; if not, write to the Free Software
16## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17##
18"""
19Container which holds the data of the student study courses
20and contains the (student) study level objects.
21"""
22import grok
23from zope.component.interfaces import IFactory
24from zope.component import createObject
25from zope.interface import implementedBy
26from waeup.kofa.students.interfaces import (
27    IStudentStudyCourse, IStudentNavigation, IStudentStudyLevel)
28from waeup.kofa.students.studylevel import CourseTicket
29from waeup.kofa.students.workflow import CLEARED, RETURNING, PAID
30from waeup.kofa.utils.helpers import attrs_to_fields
31
32class StudentStudyCourse(grok.Container):
33    """This is a container for study levels.
34    """
35    grok.implements(IStudentStudyCourse, IStudentNavigation)
36    grok.provides(IStudentStudyCourse)
37
38    def __init__(self):
39        super(StudentStudyCourse, self).__init__()
40        return
41
42    def getStudent(self):
43        return self.__parent__
44
45    @property
46    def next_session_allowed(self):
47        if self.getStudent().state in (CLEARED, RETURNING):
48            return True
49        if self.getStudent().state == PAID \
50            and self.getStudent().is_postgrad:
51            return True
52        return False
53
54    def addStudentStudyLevel(self, cert, studylevel):
55        """Add a study level object.
56        """
57        if not IStudentStudyLevel.providedBy(studylevel):
58            raise TypeError(
59                'StudentStudyCourses contain only IStudentStudyLevel instances')
60        self[str(studylevel.level)] = studylevel
61
62        #Create course tickets automatically
63        if cert is not None:
64            for key, val in cert.items():
65                if val.level != studylevel.level:
66                    continue
67                ticket = createObject(u'waeup.CourseTicket')
68                ticket.code = val.getCourseCode()
69                ticket.automatic = True
70                ticket.mandatory = val.mandatory
71                ticket.title = val.course.title
72                ticket.fcode = val.course.__parent__.__parent__.__parent__.code
73                ticket.dcode = val.course.__parent__.__parent__.code
74                ticket.credits = val.course.credits
75                ticket.passmark = val.course.passmark
76                ticket.semester = val.course.semester
77                ticket.carry_over = False
78                self[str(studylevel.level)][ticket.code] = ticket
79        # Collect carry-over courses in base levels (not in repeating levels)
80        try:
81            co_enabled = grok.getSite()['configuration'].carry_over
82        except TypeError:
83            # In tests we might not have a site object
84            co_enabled = True
85        if not co_enabled or studylevel.level % 100 != 0:
86            return
87        levels = sorted(self.keys())
88        index = levels.index(str(studylevel.level))
89        if index <= 0:
90            return
91        previous_level = self[levels[index-1]]
92        for key, val in previous_level.items():
93            if val.score >= val.passmark:
94                continue
95            if key in self[str(studylevel.level)]:
96                # Carry-over ticket exists
97                continue
98            co_ticket = createObject(u'waeup.CourseTicket')
99            for name in ['code', 'title', 'credits', 'passmark',
100                         'semester', 'mandatory', 'fcode', 'dcode']:
101                setattr(co_ticket, name, getattr(val, name))
102            co_ticket.automatic = True
103            co_ticket.carry_over = True
104            self[str(studylevel.level)][co_ticket.code] = co_ticket
105        return
106
107    @property
108    def is_postgrad(self):
109        cert = getattr(self, 'certificate', None)
110        if cert is not None:
111            return cert.study_mode.startswith('pg')
112            #return cert.start_level == 999 or cert.end_level == 999
113        return False
114
115StudentStudyCourse = attrs_to_fields(StudentStudyCourse)
116
117class StudentStudyCourseFactory(grok.GlobalUtility):
118    """A factory for student study courses.
119    """
120    grok.implements(IFactory)
121    grok.name(u'waeup.StudentStudyCourse')
122    title = u"Create a new student study course.",
123    description = u"This factory instantiates new student study course instances."
124
125    def __call__(self, *args, **kw):
126        return StudentStudyCourse()
127
128    def getInterfaces(self):
129        return implementedBy(StudentStudyCourse)
Note: See TracBrowser for help on using the repository browser.