source: main/waeup.kofa/trunk/src/waeup/kofa/students/studylevel.py @ 9235

Last change on this file since 9235 was 9235, checked in by Henrik Bettermann, 12 years ago

Export number of tickets contained in a StudentStudyLevel? container.

  • Property svn:keywords set to Id
File size: 5.2 KB
Line 
1## $Id: studylevel.py 9235 2012-09-26 14:59:20Z 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 a student study level
20and contains the course tickets.
21"""
22import grok
23from zope.component.interfaces import IFactory
24from zope.interface import implementedBy
25from waeup.kofa.students.interfaces import (
26    IStudentStudyLevel, IStudentNavigation, ICourseTicket)
27from waeup.kofa.utils.helpers import attrs_to_fields
28from waeup.kofa.students.vocabularies import StudyLevelSource
29
30class StudentStudyLevel(grok.Container):
31    """This is a container for course tickets.
32    """
33    grok.implements(IStudentStudyLevel, IStudentNavigation)
34    grok.provides(IStudentStudyLevel)
35
36    def __init__(self):
37        super(StudentStudyLevel, self).__init__()
38        self.level = None
39        return
40
41    @property
42    def student(self):
43        try:
44            return self.__parent__.__parent__
45        except AttributeError:
46            return None
47
48    @property
49    def number_of_tickets(self):
50        return len(self)
51
52    def writeLogMessage(self, view, message):
53        return self.__parent__.__parent__.writeLogMessage(view, message)
54
55    @property
56    def level_title(self):
57        studylevelsource = StudyLevelSource()
58        return studylevelsource.factory.getTitle(self.__parent__, self.level)
59
60    def addCourseTicket(self, ticket, course):
61        """Add a course ticket object.
62        """
63        if not ICourseTicket.providedBy(ticket):
64            raise TypeError(
65                'StudentStudyLeves contain only ICourseTicket instances')
66        ticket.code = course.code
67        ticket.title = course.title
68        ticket.fcode = course.__parent__.__parent__.__parent__.code
69        ticket.dcode = course.__parent__.__parent__.code
70        ticket.credits = course.credits
71        ticket.passmark = course.passmark
72        ticket.semester = course.semester
73        self[ticket.code] = ticket
74        return
75
76StudentStudyLevel = attrs_to_fields(StudentStudyLevel)
77
78class StudentStudyLevelFactory(grok.GlobalUtility):
79    """A factory for student study levels.
80    """
81    grok.implements(IFactory)
82    grok.name(u'waeup.StudentStudyLevel')
83    title = u"Create a new student study level.",
84    description = u"This factory instantiates new student study level instances."
85
86    def __call__(self, *args, **kw):
87        return StudentStudyLevel()
88
89    def getInterfaces(self):
90        return implementedBy(StudentStudyLevel)
91
92class CourseTicket(grok.Model):
93    """This is a course ticket which allows the
94    student to attend the course. Lecturers will enter scores and more at
95    the end of the term.
96
97    A course ticket contains a copy of the original course and
98    certificate course data. If the courses and/or the referrin certificate
99    courses are removed, the corresponding tickets remain unchanged.
100    So we do not need any event
101    triggered actions on course tickets.
102    """
103    grok.implements(ICourseTicket, IStudentNavigation)
104    grok.provides(ICourseTicket)
105
106    def __init__(self):
107        super(CourseTicket, self).__init__()
108        self.code = None
109        self.title = None
110        self.fcode = None
111        self.dcode = None
112        self.credits = None
113        self.passmark = None
114        self.semester = None
115        return
116
117    @property
118    def student(self):
119        """Get the associated student object.
120        """
121        try:
122            return self.__parent__.__parent__.__parent__
123        except AttributeError:
124            return None
125
126    def writeLogMessage(self, view, message):
127        return self.__parent__.__parent__.__parent__.writeLogMessage(view, message)
128
129    def getLevel(self):
130        """Returns the id of the level the ticket has been added to.
131        """
132        # XXX: shouldn't that be an attribute?
133        try:
134            return self.__parent__.level
135        except AttributeError:
136            return None
137
138    def getLevelSession(self):
139        """Returns the session of the level the ticket has been added to.
140        """
141        # XXX: shouldn't that be an attribute?
142        try:
143            return self.__parent__.level_session
144        except AttributeError:
145            return None
146
147
148CourseTicket = attrs_to_fields(CourseTicket)
149
150class CourseTicketFactory(grok.GlobalUtility):
151    """A factory for student study levels.
152    """
153    grok.implements(IFactory)
154    grok.name(u'waeup.CourseTicket')
155    title = u"Create a new course ticket.",
156    description = u"This factory instantiates new course ticket instances."
157
158    def __call__(self, *args, **kw):
159        return CourseTicket()
160
161    def getInterfaces(self):
162        return implementedBy(CourseTicket)
Note: See TracBrowser for help on using the repository browser.