1 | ## $Id: studycourse.py 9131 2012-08-31 09:21:59Z 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 | """ |
---|
19 | Container which holds the data of the student study courses |
---|
20 | and contains the (student) study level objects. |
---|
21 | """ |
---|
22 | import grok |
---|
23 | from zope.component.interfaces import IFactory |
---|
24 | from zope.component import createObject |
---|
25 | from zope.interface import implementedBy |
---|
26 | from waeup.kofa.students.interfaces import ( |
---|
27 | IStudentStudyCourse, IStudentNavigation, IStudentStudyLevel) |
---|
28 | from waeup.kofa.students.studylevel import CourseTicket |
---|
29 | from waeup.kofa.students.workflow import CLEARED, RETURNING, PAID |
---|
30 | from waeup.kofa.utils.helpers import attrs_to_fields |
---|
31 | |
---|
32 | class 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 | @property |
---|
43 | def student(self): |
---|
44 | return self.__parent__ |
---|
45 | |
---|
46 | def writeLogMessage(self, view, message): |
---|
47 | return self.__parent__.writeLogMessage(view, message) |
---|
48 | |
---|
49 | @property |
---|
50 | def next_session_allowed(self): |
---|
51 | certificate = getattr(self, 'certificate', None) |
---|
52 | if certificate == None: |
---|
53 | return False |
---|
54 | if self.student.state in (CLEARED, RETURNING): |
---|
55 | return True |
---|
56 | if self.student.state == PAID \ |
---|
57 | and self.student.is_postgrad: |
---|
58 | return True |
---|
59 | return False |
---|
60 | |
---|
61 | @property |
---|
62 | def is_postgrad(self): |
---|
63 | if self.certificate is None: |
---|
64 | return False |
---|
65 | return self.certificate.study_mode.startswith('pg') |
---|
66 | |
---|
67 | @property |
---|
68 | def is_current(self): |
---|
69 | if '_' in self.__name__: |
---|
70 | return False |
---|
71 | return True |
---|
72 | |
---|
73 | def addStudentStudyLevel(self, cert, studylevel): |
---|
74 | """Add a study level object. |
---|
75 | """ |
---|
76 | if not IStudentStudyLevel.providedBy(studylevel): |
---|
77 | raise TypeError( |
---|
78 | 'StudentStudyCourses contain only IStudentStudyLevel instances') |
---|
79 | self[str(studylevel.level)] = studylevel |
---|
80 | |
---|
81 | #Create course tickets automatically |
---|
82 | if cert is not None: |
---|
83 | for key, val in cert.items(): |
---|
84 | if val.level != studylevel.level: |
---|
85 | continue |
---|
86 | ticket = createObject(u'waeup.CourseTicket') |
---|
87 | ticket.code = val.getCourseCode() |
---|
88 | ticket.automatic = True |
---|
89 | ticket.mandatory = val.mandatory |
---|
90 | ticket.title = val.course.title |
---|
91 | ticket.fcode = val.course.__parent__.__parent__.__parent__.code |
---|
92 | ticket.dcode = val.course.__parent__.__parent__.code |
---|
93 | ticket.credits = val.course.credits |
---|
94 | ticket.passmark = val.course.passmark |
---|
95 | ticket.semester = val.course.semester |
---|
96 | ticket.carry_over = False |
---|
97 | self[str(studylevel.level)][ticket.code] = ticket |
---|
98 | # Collect carry-over courses in base levels (not in repeating levels) |
---|
99 | try: |
---|
100 | co_enabled = grok.getSite()['configuration'].carry_over |
---|
101 | except TypeError: |
---|
102 | # In tests we might not have a site object |
---|
103 | co_enabled = True |
---|
104 | if not co_enabled or studylevel.level % 100 != 0: |
---|
105 | return |
---|
106 | levels = sorted(self.keys()) |
---|
107 | index = levels.index(str(studylevel.level)) |
---|
108 | if index <= 0: |
---|
109 | return |
---|
110 | previous_level = self[levels[index-1]] |
---|
111 | for key, val in previous_level.items(): |
---|
112 | if val.score >= val.passmark: |
---|
113 | continue |
---|
114 | if key in self[str(studylevel.level)]: |
---|
115 | # Carry-over ticket exists |
---|
116 | continue |
---|
117 | co_ticket = createObject(u'waeup.CourseTicket') |
---|
118 | for name in ['code', 'title', 'credits', 'passmark', |
---|
119 | 'semester', 'mandatory', 'fcode', 'dcode']: |
---|
120 | setattr(co_ticket, name, getattr(val, name)) |
---|
121 | co_ticket.automatic = True |
---|
122 | co_ticket.carry_over = True |
---|
123 | self[str(studylevel.level)][co_ticket.code] = co_ticket |
---|
124 | return |
---|
125 | |
---|
126 | StudentStudyCourse = attrs_to_fields(StudentStudyCourse) |
---|
127 | |
---|
128 | class StudentStudyCourseFactory(grok.GlobalUtility): |
---|
129 | """A factory for student study courses. |
---|
130 | """ |
---|
131 | grok.implements(IFactory) |
---|
132 | grok.name(u'waeup.StudentStudyCourse') |
---|
133 | title = u"Create a new student study course.", |
---|
134 | description = u"This factory instantiates new student study course instances." |
---|
135 | |
---|
136 | def __call__(self, *args, **kw): |
---|
137 | return StudentStudyCourse() |
---|
138 | |
---|
139 | def getInterfaces(self): |
---|
140 | return implementedBy(StudentStudyCourse) |
---|