1 | ## $Id: studycourse.py 7304 2011-12-07 08:53:50Z 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.interface import implementedBy |
---|
25 | from waeup.sirp.students.interfaces import ( |
---|
26 | IStudentStudyCourse, IStudentNavigation, IStudentStudyLevel) |
---|
27 | from waeup.sirp.students.studylevel import CourseTicket |
---|
28 | from waeup.sirp.utils.helpers import attrs_to_fields |
---|
29 | |
---|
30 | class StudentStudyCourse(grok.Container): |
---|
31 | """This is a container for study levels. |
---|
32 | """ |
---|
33 | grok.implements(IStudentStudyCourse, IStudentNavigation) |
---|
34 | grok.provides(IStudentStudyCourse) |
---|
35 | |
---|
36 | def __init__(self): |
---|
37 | super(StudentStudyCourse, self).__init__() |
---|
38 | return |
---|
39 | |
---|
40 | def getStudent(self): |
---|
41 | return self.__parent__ |
---|
42 | |
---|
43 | def addStudentStudyLevel(self, cert, studylevel): |
---|
44 | """Add a study level object. |
---|
45 | """ |
---|
46 | if not IStudentStudyLevel.providedBy(studylevel): |
---|
47 | raise TypeError( |
---|
48 | 'StudentStudyCourses contain only IStudentStudyLevel instances') |
---|
49 | self[str(studylevel.level)] = studylevel |
---|
50 | |
---|
51 | #Create course tickets automatically |
---|
52 | for key, val in cert.items(): |
---|
53 | if val.level != studylevel.level: |
---|
54 | continue |
---|
55 | ticket = CourseTicket() |
---|
56 | ticket.code = val.getCourseCode() |
---|
57 | ticket.automatic = True |
---|
58 | ticket.core_or_elective = val.core_or_elective |
---|
59 | ticket.title = val.course.title |
---|
60 | ticket.faculty = val.course.__parent__.__parent__.__parent__.title |
---|
61 | ticket.department = val.course.__parent__.__parent__.title |
---|
62 | ticket.fcode = val.course.__parent__.__parent__.__parent__.code |
---|
63 | ticket.dcode = val.course.__parent__.__parent__.code |
---|
64 | ticket.credits = val.course.credits |
---|
65 | ticket.passmark = val.course.passmark |
---|
66 | ticket.semester = val.course.semester |
---|
67 | self[str(studylevel.level)][val.getCourseCode()] = ticket |
---|
68 | return |
---|
69 | |
---|
70 | StudentStudyCourse = attrs_to_fields(StudentStudyCourse) |
---|
71 | |
---|
72 | class StudentStudyCourseFactory(grok.GlobalUtility): |
---|
73 | """A factory for students. |
---|
74 | """ |
---|
75 | grok.implements(IFactory) |
---|
76 | grok.name(u'waeup.StudentStudyCourse') |
---|
77 | title = u"Create a new student study course.", |
---|
78 | description = u"This factory instantiates new student study course instances." |
---|
79 | |
---|
80 | def __call__(self, *args, **kw): |
---|
81 | return StudentStudyCourse() |
---|
82 | |
---|
83 | def getInterfaces(self): |
---|
84 | return implementedBy(StudentStudyCourse) |
---|