[7191] | 1 | ## $Id: studylevel.py 9316 2012-10-08 13:19:14Z henrik $ |
---|
| 2 | ## |
---|
[6775] | 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 a student study level |
---|
| 20 | and contains the course tickets. |
---|
| 21 | """ |
---|
| 22 | import grok |
---|
[7536] | 23 | from zope.component.interfaces import IFactory |
---|
[8330] | 24 | from zope.interface import implementedBy |
---|
[7811] | 25 | from waeup.kofa.students.interfaces import ( |
---|
[6781] | 26 | IStudentStudyLevel, IStudentNavigation, ICourseTicket) |
---|
[7811] | 27 | from waeup.kofa.utils.helpers import attrs_to_fields |
---|
| 28 | from waeup.kofa.students.vocabularies import StudyLevelSource |
---|
[6775] | 29 | |
---|
| 30 | class 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 | |
---|
[8736] | 41 | @property |
---|
| 42 | def student(self): |
---|
| 43 | try: |
---|
| 44 | return self.__parent__.__parent__ |
---|
| 45 | except AttributeError: |
---|
| 46 | return None |
---|
[6775] | 47 | |
---|
[9235] | 48 | @property |
---|
[9253] | 49 | def certcode(self): |
---|
| 50 | try: |
---|
| 51 | return self.__parent__.certificate.code |
---|
| 52 | except AttributeError: |
---|
| 53 | return None |
---|
| 54 | |
---|
| 55 | @property |
---|
[9235] | 56 | def number_of_tickets(self): |
---|
| 57 | return len(self) |
---|
| 58 | |
---|
[9257] | 59 | @property |
---|
| 60 | def is_current_level(self): |
---|
| 61 | try: |
---|
| 62 | return self.__parent__.current_level == self.level |
---|
| 63 | except AttributeError: |
---|
| 64 | return False |
---|
| 65 | |
---|
[8735] | 66 | def writeLogMessage(self, view, message): |
---|
| 67 | return self.__parent__.__parent__.writeLogMessage(view, message) |
---|
| 68 | |
---|
[6775] | 69 | @property |
---|
| 70 | def level_title(self): |
---|
| 71 | studylevelsource = StudyLevelSource() |
---|
| 72 | return studylevelsource.factory.getTitle(self.__parent__, self.level) |
---|
| 73 | |
---|
[8920] | 74 | def addCourseTicket(self, ticket, course): |
---|
[6781] | 75 | """Add a course ticket object. |
---|
| 76 | """ |
---|
[8920] | 77 | if not ICourseTicket.providedBy(ticket): |
---|
[6781] | 78 | raise TypeError( |
---|
| 79 | 'StudentStudyLeves contain only ICourseTicket instances') |
---|
[8920] | 80 | ticket.code = course.code |
---|
| 81 | ticket.title = course.title |
---|
| 82 | ticket.fcode = course.__parent__.__parent__.__parent__.code |
---|
| 83 | ticket.dcode = course.__parent__.__parent__.code |
---|
| 84 | ticket.credits = course.credits |
---|
| 85 | ticket.passmark = course.passmark |
---|
| 86 | ticket.semester = course.semester |
---|
| 87 | self[ticket.code] = ticket |
---|
[6781] | 88 | return |
---|
| 89 | |
---|
| 90 | StudentStudyLevel = attrs_to_fields(StudentStudyLevel) |
---|
| 91 | |
---|
[7536] | 92 | class StudentStudyLevelFactory(grok.GlobalUtility): |
---|
| 93 | """A factory for student study levels. |
---|
| 94 | """ |
---|
| 95 | grok.implements(IFactory) |
---|
| 96 | grok.name(u'waeup.StudentStudyLevel') |
---|
| 97 | title = u"Create a new student study level.", |
---|
| 98 | description = u"This factory instantiates new student study level instances." |
---|
| 99 | |
---|
| 100 | def __call__(self, *args, **kw): |
---|
| 101 | return StudentStudyLevel() |
---|
| 102 | |
---|
| 103 | def getInterfaces(self): |
---|
| 104 | return implementedBy(StudentStudyLevel) |
---|
| 105 | |
---|
[6781] | 106 | class CourseTicket(grok.Model): |
---|
| 107 | """This is a course ticket which allows the |
---|
| 108 | student to attend the course. Lecturers will enter scores and more at |
---|
| 109 | the end of the term. |
---|
[6783] | 110 | |
---|
| 111 | A course ticket contains a copy of the original course and |
---|
[8920] | 112 | certificate course data. If the courses and/or the referrin certificate |
---|
| 113 | courses are removed, the corresponding tickets remain unchanged. |
---|
| 114 | So we do not need any event |
---|
[6783] | 115 | triggered actions on course tickets. |
---|
[6781] | 116 | """ |
---|
| 117 | grok.implements(ICourseTicket, IStudentNavigation) |
---|
| 118 | grok.provides(ICourseTicket) |
---|
| 119 | |
---|
[6795] | 120 | def __init__(self): |
---|
[6781] | 121 | super(CourseTicket, self).__init__() |
---|
[6795] | 122 | self.code = None |
---|
| 123 | self.title = None |
---|
[7304] | 124 | self.fcode = None |
---|
| 125 | self.dcode = None |
---|
[6795] | 126 | self.semester = None |
---|
[6781] | 127 | return |
---|
| 128 | |
---|
[8736] | 129 | @property |
---|
| 130 | def student(self): |
---|
[8338] | 131 | """Get the associated student object. |
---|
| 132 | """ |
---|
| 133 | try: |
---|
| 134 | return self.__parent__.__parent__.__parent__ |
---|
| 135 | except AttributeError: |
---|
| 136 | return None |
---|
[6781] | 137 | |
---|
[9253] | 138 | @property |
---|
| 139 | def certcode(self): |
---|
| 140 | try: |
---|
| 141 | return self.__parent__.__parent__.certificate.code |
---|
| 142 | except AttributeError: |
---|
| 143 | return None |
---|
| 144 | |
---|
[8735] | 145 | def writeLogMessage(self, view, message): |
---|
| 146 | return self.__parent__.__parent__.__parent__.writeLogMessage(view, message) |
---|
| 147 | |
---|
[7633] | 148 | def getLevel(self): |
---|
| 149 | """Returns the id of the level the ticket has been added to. |
---|
| 150 | """ |
---|
[8338] | 151 | # XXX: shouldn't that be an attribute? |
---|
| 152 | try: |
---|
| 153 | return self.__parent__.level |
---|
| 154 | except AttributeError: |
---|
| 155 | return None |
---|
[7633] | 156 | |
---|
| 157 | def getLevelSession(self): |
---|
| 158 | """Returns the session of the level the ticket has been added to. |
---|
| 159 | """ |
---|
[8338] | 160 | # XXX: shouldn't that be an attribute? |
---|
| 161 | try: |
---|
| 162 | return self.__parent__.level_session |
---|
| 163 | except AttributeError: |
---|
| 164 | return None |
---|
[7633] | 165 | |
---|
| 166 | |
---|
[6782] | 167 | CourseTicket = attrs_to_fields(CourseTicket) |
---|
[7548] | 168 | |
---|
| 169 | class CourseTicketFactory(grok.GlobalUtility): |
---|
| 170 | """A factory for student study levels. |
---|
| 171 | """ |
---|
| 172 | grok.implements(IFactory) |
---|
| 173 | grok.name(u'waeup.CourseTicket') |
---|
| 174 | title = u"Create a new course ticket.", |
---|
| 175 | description = u"This factory instantiates new course ticket instances." |
---|
| 176 | |
---|
| 177 | def __call__(self, *args, **kw): |
---|
| 178 | return CourseTicket() |
---|
| 179 | |
---|
| 180 | def getInterfaces(self): |
---|
| 181 | return implementedBy(CourseTicket) |
---|