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

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

Use factory for the creation of CourseTickets?.

  • Property svn:keywords set to Id
File size: 4.6 KB
Line 
1## $Id: studycourse.py 8325 2012-05-02 09:40:57Z 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.utils.helpers import attrs_to_fields
30
31class StudentStudyCourse(grok.Container):
32    """This is a container for study levels.
33    """
34    grok.implements(IStudentStudyCourse, IStudentNavigation)
35    grok.provides(IStudentStudyCourse)
36
37    def __init__(self):
38        super(StudentStudyCourse, self).__init__()
39        return
40
41    def getStudent(self):
42        return self.__parent__
43
44    @property
45    def may_register(self):
46        return True
47
48    def addStudentStudyLevel(self, cert, studylevel):
49        """Add a study level object.
50        """
51        if not IStudentStudyLevel.providedBy(studylevel):
52            raise TypeError(
53                'StudentStudyCourses contain only IStudentStudyLevel instances')
54        self[str(studylevel.level)] = studylevel
55
56        #Create course tickets automatically
57        if cert is not None:
58            for key, val in cert.items():
59                if val.level != studylevel.level:
60                    continue
61                ticket = createObject(u'waeup.CourseTicket')
62                ticket.code = val.getCourseCode()
63                ticket.automatic = True
64                ticket.mandatory = val.mandatory
65                ticket.title = val.course.title
66                ticket.fcode = val.course.__parent__.__parent__.__parent__.code
67                ticket.dcode = val.course.__parent__.__parent__.code
68                ticket.credits = val.course.credits
69                ticket.passmark = val.course.passmark
70                ticket.semester = val.course.semester
71                ticket.carry_over = False
72                self[str(studylevel.level)][ticket.code] = ticket
73        # Collect carry-over courses in base levels (not in repeating levels)
74        try:
75            co_enabled = grok.getSite()['configuration'].carry_over
76        except TypeError:
77            # In tests we might not have a site object
78            co_enabled = True
79        if co_enabled and studylevel.level % 100 == 0:
80            levels = sorted(self.keys())
81            index = levels.index(str(studylevel.level))
82            if  index > 0:
83                previous_level = self[levels[index-1]]
84                for key, val in previous_level.items():
85                    if val.score < val.passmark:
86                        if key in self[str(studylevel.level)]:
87                            # Carry-over ticket exists
88                            continue
89                        co_ticket = createObject(u'waeup.CourseTicket')
90                        for name in ['code', 'title', 'credits', 'passmark',
91                                     'semester', 'mandatory',
92                                     'fcode', 'dcode']:
93                            setattr(co_ticket, name, getattr(val, name))
94                        co_ticket.automatic = True
95                        co_ticket.carry_over = True
96                        self[str(studylevel.level)][co_ticket.code] = co_ticket
97        return
98
99StudentStudyCourse = attrs_to_fields(StudentStudyCourse)
100
101class StudentStudyCourseFactory(grok.GlobalUtility):
102    """A factory for student study courses.
103    """
104    grok.implements(IFactory)
105    grok.name(u'waeup.StudentStudyCourse')
106    title = u"Create a new student study course.",
107    description = u"This factory instantiates new student study course instances."
108
109    def __call__(self, *args, **kw):
110        return StudentStudyCourse()
111
112    def getInterfaces(self):
113        return implementedBy(StudentStudyCourse)
Note: See TracBrowser for help on using the repository browser.