[7191] | 1 | ## $Id: studylevel.py 9925 2013-01-30 09:08:39Z 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 |
---|
[9501] | 24 | from zope.component import createObject |
---|
[8330] | 25 | from zope.interface import implementedBy |
---|
[9912] | 26 | from waeup.kofa.interfaces import academic_sessions_vocab |
---|
[7811] | 27 | from waeup.kofa.students.interfaces import ( |
---|
[6781] | 28 | IStudentStudyLevel, IStudentNavigation, ICourseTicket) |
---|
[7811] | 29 | from waeup.kofa.utils.helpers import attrs_to_fields |
---|
| 30 | from waeup.kofa.students.vocabularies import StudyLevelSource |
---|
[6775] | 31 | |
---|
[9684] | 32 | def getGradeWeightFromScore(score): |
---|
| 33 | if score is None: |
---|
| 34 | return (None, None) |
---|
| 35 | if score >= 70: |
---|
| 36 | return ('A',5) |
---|
| 37 | if score >= 60: |
---|
| 38 | return ('B',4) |
---|
| 39 | if score >= 50: |
---|
| 40 | return ('C',3) |
---|
| 41 | if score >= 45: |
---|
| 42 | return ('D',2) |
---|
| 43 | if score >= 40: |
---|
| 44 | return ('E',1) |
---|
| 45 | return ('F',0) |
---|
| 46 | |
---|
[6775] | 47 | class StudentStudyLevel(grok.Container): |
---|
| 48 | """This is a container for course tickets. |
---|
| 49 | """ |
---|
| 50 | grok.implements(IStudentStudyLevel, IStudentNavigation) |
---|
| 51 | grok.provides(IStudentStudyLevel) |
---|
| 52 | |
---|
| 53 | def __init__(self): |
---|
| 54 | super(StudentStudyLevel, self).__init__() |
---|
| 55 | self.level = None |
---|
| 56 | return |
---|
| 57 | |
---|
[8736] | 58 | @property |
---|
| 59 | def student(self): |
---|
| 60 | try: |
---|
| 61 | return self.__parent__.__parent__ |
---|
| 62 | except AttributeError: |
---|
| 63 | return None |
---|
[6775] | 64 | |
---|
[9235] | 65 | @property |
---|
[9253] | 66 | def certcode(self): |
---|
| 67 | try: |
---|
| 68 | return self.__parent__.certificate.code |
---|
| 69 | except AttributeError: |
---|
| 70 | return None |
---|
| 71 | |
---|
| 72 | @property |
---|
[9235] | 73 | def number_of_tickets(self): |
---|
| 74 | return len(self) |
---|
| 75 | |
---|
[9257] | 76 | @property |
---|
[9532] | 77 | def total_credits(self): |
---|
| 78 | total = 0 |
---|
| 79 | for ticket in self.values(): |
---|
| 80 | total += ticket.credits |
---|
| 81 | return total |
---|
| 82 | |
---|
| 83 | @property |
---|
[9912] | 84 | def getSessionString(self): |
---|
| 85 | return academic_sessions_vocab.getTerm( |
---|
| 86 | self.level_session).title |
---|
| 87 | |
---|
| 88 | @property |
---|
[9687] | 89 | def gpa(self): |
---|
[9812] | 90 | gpa = 0.0 |
---|
[9687] | 91 | credits_counted = 0 |
---|
| 92 | for ticket in self.values(): |
---|
| 93 | if ticket.score: |
---|
| 94 | credits_counted += ticket.credits |
---|
| 95 | gpa += ticket.credits * ticket.weight |
---|
| 96 | if credits_counted: |
---|
[9812] | 97 | gpa = round(gpa/credits_counted, 2) |
---|
| 98 | return gpa |
---|
[9687] | 99 | |
---|
| 100 | @property |
---|
[9257] | 101 | def is_current_level(self): |
---|
| 102 | try: |
---|
| 103 | return self.__parent__.current_level == self.level |
---|
| 104 | except AttributeError: |
---|
| 105 | return False |
---|
| 106 | |
---|
[8735] | 107 | def writeLogMessage(self, view, message): |
---|
| 108 | return self.__parent__.__parent__.writeLogMessage(view, message) |
---|
| 109 | |
---|
[6775] | 110 | @property |
---|
| 111 | def level_title(self): |
---|
| 112 | studylevelsource = StudyLevelSource() |
---|
| 113 | return studylevelsource.factory.getTitle(self.__parent__, self.level) |
---|
| 114 | |
---|
[8920] | 115 | def addCourseTicket(self, ticket, course): |
---|
[6781] | 116 | """Add a course ticket object. |
---|
| 117 | """ |
---|
[8920] | 118 | if not ICourseTicket.providedBy(ticket): |
---|
[6781] | 119 | raise TypeError( |
---|
| 120 | 'StudentStudyLeves contain only ICourseTicket instances') |
---|
[8920] | 121 | ticket.code = course.code |
---|
| 122 | ticket.title = course.title |
---|
| 123 | ticket.fcode = course.__parent__.__parent__.__parent__.code |
---|
| 124 | ticket.dcode = course.__parent__.__parent__.code |
---|
| 125 | ticket.credits = course.credits |
---|
| 126 | ticket.passmark = course.passmark |
---|
| 127 | ticket.semester = course.semester |
---|
| 128 | self[ticket.code] = ticket |
---|
[6781] | 129 | return |
---|
| 130 | |
---|
[9501] | 131 | def addCertCourseTickets(self, cert): |
---|
| 132 | """Collect all certificate courses and create course |
---|
| 133 | tickets automatically. |
---|
| 134 | """ |
---|
| 135 | if cert is not None: |
---|
| 136 | for key, val in cert.items(): |
---|
| 137 | if val.level != self.level: |
---|
| 138 | continue |
---|
| 139 | ticket = createObject(u'waeup.CourseTicket') |
---|
| 140 | ticket.automatic = True |
---|
| 141 | ticket.mandatory = val.mandatory |
---|
| 142 | ticket.carry_over = False |
---|
| 143 | self.addCourseTicket(ticket, val.course) |
---|
| 144 | return |
---|
| 145 | |
---|
[9690] | 146 | StudentStudyLevel = attrs_to_fields( |
---|
| 147 | StudentStudyLevel, omit=['total_credits', 'gpa']) |
---|
[6781] | 148 | |
---|
[7536] | 149 | class StudentStudyLevelFactory(grok.GlobalUtility): |
---|
| 150 | """A factory for student study levels. |
---|
| 151 | """ |
---|
| 152 | grok.implements(IFactory) |
---|
| 153 | grok.name(u'waeup.StudentStudyLevel') |
---|
| 154 | title = u"Create a new student study level.", |
---|
| 155 | description = u"This factory instantiates new student study level instances." |
---|
| 156 | |
---|
| 157 | def __call__(self, *args, **kw): |
---|
| 158 | return StudentStudyLevel() |
---|
| 159 | |
---|
| 160 | def getInterfaces(self): |
---|
| 161 | return implementedBy(StudentStudyLevel) |
---|
| 162 | |
---|
[6781] | 163 | class CourseTicket(grok.Model): |
---|
| 164 | """This is a course ticket which allows the |
---|
| 165 | student to attend the course. Lecturers will enter scores and more at |
---|
| 166 | the end of the term. |
---|
[6783] | 167 | |
---|
| 168 | A course ticket contains a copy of the original course and |
---|
[8920] | 169 | certificate course data. If the courses and/or the referrin certificate |
---|
| 170 | courses are removed, the corresponding tickets remain unchanged. |
---|
| 171 | So we do not need any event |
---|
[6783] | 172 | triggered actions on course tickets. |
---|
[6781] | 173 | """ |
---|
| 174 | grok.implements(ICourseTicket, IStudentNavigation) |
---|
| 175 | grok.provides(ICourseTicket) |
---|
| 176 | |
---|
[6795] | 177 | def __init__(self): |
---|
[6781] | 178 | super(CourseTicket, self).__init__() |
---|
[6795] | 179 | self.code = None |
---|
[6781] | 180 | return |
---|
| 181 | |
---|
[8736] | 182 | @property |
---|
| 183 | def student(self): |
---|
[8338] | 184 | """Get the associated student object. |
---|
| 185 | """ |
---|
| 186 | try: |
---|
| 187 | return self.__parent__.__parent__.__parent__ |
---|
| 188 | except AttributeError: |
---|
| 189 | return None |
---|
[6781] | 190 | |
---|
[9253] | 191 | @property |
---|
| 192 | def certcode(self): |
---|
| 193 | try: |
---|
| 194 | return self.__parent__.__parent__.certificate.code |
---|
| 195 | except AttributeError: |
---|
| 196 | return None |
---|
| 197 | |
---|
[9698] | 198 | @property |
---|
| 199 | def removable_by_student(self): |
---|
| 200 | return not self.mandatory |
---|
| 201 | |
---|
[8735] | 202 | def writeLogMessage(self, view, message): |
---|
| 203 | return self.__parent__.__parent__.__parent__.writeLogMessage(view, message) |
---|
| 204 | |
---|
[9925] | 205 | @property |
---|
| 206 | def level(self): |
---|
[7633] | 207 | """Returns the id of the level the ticket has been added to. |
---|
| 208 | """ |
---|
[8338] | 209 | try: |
---|
| 210 | return self.__parent__.level |
---|
| 211 | except AttributeError: |
---|
| 212 | return None |
---|
[7633] | 213 | |
---|
[9925] | 214 | @property |
---|
| 215 | def level_session(self): |
---|
[7633] | 216 | """Returns the session of the level the ticket has been added to. |
---|
| 217 | """ |
---|
[8338] | 218 | try: |
---|
| 219 | return self.__parent__.level_session |
---|
| 220 | except AttributeError: |
---|
| 221 | return None |
---|
[7633] | 222 | |
---|
[9684] | 223 | @property |
---|
| 224 | def grade(self): |
---|
| 225 | """Returns the grade calculated from score. |
---|
| 226 | """ |
---|
| 227 | return getGradeWeightFromScore(self.score)[0] |
---|
[7633] | 228 | |
---|
[9684] | 229 | @property |
---|
| 230 | def weight(self): |
---|
| 231 | """Returns the weight calculated from score. |
---|
| 232 | """ |
---|
| 233 | return getGradeWeightFromScore(self.score)[1] |
---|
| 234 | |
---|
[6782] | 235 | CourseTicket = attrs_to_fields(CourseTicket) |
---|
[7548] | 236 | |
---|
| 237 | class CourseTicketFactory(grok.GlobalUtility): |
---|
| 238 | """A factory for student study levels. |
---|
| 239 | """ |
---|
| 240 | grok.implements(IFactory) |
---|
| 241 | grok.name(u'waeup.CourseTicket') |
---|
| 242 | title = u"Create a new course ticket.", |
---|
| 243 | description = u"This factory instantiates new course ticket instances." |
---|
| 244 | |
---|
| 245 | def __call__(self, *args, **kw): |
---|
| 246 | return CourseTicket() |
---|
| 247 | |
---|
| 248 | def getInterfaces(self): |
---|
| 249 | return implementedBy(CourseTicket) |
---|