[7191] | 1 | ## $Id: studylevel.py 14574 2017-02-23 11:44:30Z 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 |
---|
[13031] | 23 | import pytz |
---|
| 24 | from datetime import datetime |
---|
[7536] | 25 | from zope.component.interfaces import IFactory |
---|
[10539] | 26 | from zope.catalog.interfaces import ICatalog |
---|
[14574] | 27 | from zope.component import createObject, queryUtility, getUtility |
---|
[8330] | 28 | from zope.interface import implementedBy |
---|
[14574] | 29 | from waeup.kofa.interfaces import academic_sessions_vocab, VALIDATED, IKofaUtils |
---|
[7811] | 30 | from waeup.kofa.students.interfaces import ( |
---|
[6781] | 31 | IStudentStudyLevel, IStudentNavigation, ICourseTicket) |
---|
[7811] | 32 | from waeup.kofa.utils.helpers import attrs_to_fields |
---|
| 33 | from waeup.kofa.students.vocabularies import StudyLevelSource |
---|
[14247] | 34 | from waeup.kofa.interfaces import MessageFactory as _ |
---|
[6775] | 35 | |
---|
[10276] | 36 | def find_carry_over(ticket): |
---|
[10277] | 37 | studylevel = ticket.__parent__ |
---|
| 38 | studycourse = ticket.__parent__.__parent__ |
---|
| 39 | levels = sorted(studycourse.keys()) |
---|
| 40 | index = levels.index(str(studylevel.level)) |
---|
| 41 | try: |
---|
| 42 | next_level = levels[index+1] |
---|
| 43 | except IndexError: |
---|
| 44 | return None |
---|
| 45 | next_studylevel = studycourse[next_level] |
---|
| 46 | co_ticket = next_studylevel.get(ticket.code, None) |
---|
| 47 | return co_ticket |
---|
[10276] | 48 | |
---|
[6775] | 49 | class StudentStudyLevel(grok.Container): |
---|
| 50 | """This is a container for course tickets. |
---|
| 51 | """ |
---|
| 52 | grok.implements(IStudentStudyLevel, IStudentNavigation) |
---|
| 53 | grok.provides(IStudentStudyLevel) |
---|
| 54 | |
---|
| 55 | def __init__(self): |
---|
| 56 | super(StudentStudyLevel, self).__init__() |
---|
| 57 | return |
---|
| 58 | |
---|
[8736] | 59 | @property |
---|
| 60 | def student(self): |
---|
| 61 | try: |
---|
| 62 | return self.__parent__.__parent__ |
---|
| 63 | except AttributeError: |
---|
| 64 | return None |
---|
[6775] | 65 | |
---|
[9235] | 66 | @property |
---|
[9253] | 67 | def certcode(self): |
---|
| 68 | try: |
---|
| 69 | return self.__parent__.certificate.code |
---|
| 70 | except AttributeError: |
---|
| 71 | return None |
---|
| 72 | |
---|
| 73 | @property |
---|
[9235] | 74 | def number_of_tickets(self): |
---|
| 75 | return len(self) |
---|
| 76 | |
---|
[9257] | 77 | @property |
---|
[9532] | 78 | def total_credits(self): |
---|
| 79 | total = 0 |
---|
| 80 | for ticket in self.values(): |
---|
[14574] | 81 | if not ticket.outstanding: |
---|
| 82 | total += ticket.credits |
---|
[9532] | 83 | return total |
---|
| 84 | |
---|
| 85 | @property |
---|
[9912] | 86 | def getSessionString(self): |
---|
[13006] | 87 | try: |
---|
| 88 | session_string = academic_sessions_vocab.getTerm( |
---|
| 89 | self.level_session).title |
---|
| 90 | except LookupError: |
---|
| 91 | return None |
---|
| 92 | return session_string |
---|
[9912] | 93 | |
---|
| 94 | @property |
---|
[10479] | 95 | def gpa_params_rectified(self): |
---|
[13002] | 96 | """Calculate corrected level (sessional) gpa parameters. |
---|
[10598] | 97 | The corrected gpa is displayed on transcripts only. |
---|
| 98 | """ |
---|
| 99 | credits_weighted = 0.0 |
---|
[9687] | 100 | credits_counted = 0 |
---|
[10276] | 101 | level_gpa = 0.0 |
---|
[9687] | 102 | for ticket in self.values(): |
---|
[14133] | 103 | if ticket.carry_over is False and ticket.total_score: |
---|
| 104 | if ticket.total_score < ticket.passmark: |
---|
[10276] | 105 | co_ticket = find_carry_over(ticket) |
---|
[10313] | 106 | if co_ticket is not None and co_ticket.weight is not None: |
---|
[10276] | 107 | credits_counted += co_ticket.credits |
---|
[10598] | 108 | credits_weighted += co_ticket.credits * co_ticket.weight |
---|
[10276] | 109 | continue |
---|
[9687] | 110 | credits_counted += ticket.credits |
---|
[10598] | 111 | credits_weighted += ticket.credits * ticket.weight |
---|
[9687] | 112 | if credits_counted: |
---|
[14382] | 113 | level_gpa = credits_weighted/credits_counted |
---|
[10598] | 114 | return level_gpa, credits_counted, credits_weighted |
---|
[9687] | 115 | |
---|
| 116 | @property |
---|
[10479] | 117 | def gpa_params(self): |
---|
[10598] | 118 | """Calculate gpa parameters for this level. |
---|
| 119 | """ |
---|
| 120 | credits_weighted = 0.0 |
---|
[10479] | 121 | credits_counted = 0 |
---|
| 122 | level_gpa = 0.0 |
---|
| 123 | for ticket in self.values(): |
---|
[14133] | 124 | if ticket.total_score is not None: |
---|
[10479] | 125 | credits_counted += ticket.credits |
---|
[10598] | 126 | credits_weighted += ticket.credits * ticket.weight |
---|
[10479] | 127 | if credits_counted: |
---|
[14382] | 128 | level_gpa = credits_weighted/credits_counted |
---|
[14200] | 129 | # Override level_gpa if value has been imported |
---|
| 130 | # (not implemented in base package) |
---|
| 131 | imported_gpa = getattr(self, 'imported_gpa', None) |
---|
| 132 | if imported_gpa: |
---|
| 133 | level_gpa = imported_gpa |
---|
[10598] | 134 | return level_gpa, credits_counted, credits_weighted |
---|
[10479] | 135 | |
---|
| 136 | @property |
---|
| 137 | def gpa(self): |
---|
[14574] | 138 | """Return string formatted gpa value. |
---|
| 139 | """ |
---|
| 140 | format_float = getUtility(IKofaUtils).format_float |
---|
| 141 | return format_float(self.gpa_params[0], 2) |
---|
[10479] | 142 | |
---|
| 143 | @property |
---|
[10553] | 144 | def passed_params(self): |
---|
[10598] | 145 | """Determine the number and credits of passed and failed courses. |
---|
[14368] | 146 | Count the number of courses registered but not taken. |
---|
[10598] | 147 | This method is used for level reports. |
---|
| 148 | """ |
---|
[10553] | 149 | passed = failed = 0 |
---|
[13868] | 150 | courses_failed = '' |
---|
[10616] | 151 | credits_failed = 0 |
---|
| 152 | credits_passed = 0 |
---|
[14392] | 153 | courses_not_taken = '' |
---|
[10553] | 154 | for ticket in self.values(): |
---|
[14133] | 155 | if ticket.total_score is not None: |
---|
| 156 | if ticket.total_score < ticket.passmark: |
---|
[10553] | 157 | failed += 1 |
---|
[10616] | 158 | credits_failed += ticket.credits |
---|
[14123] | 159 | if ticket.mandatory: |
---|
| 160 | courses_failed += 'm_%s_m ' % ticket.code |
---|
| 161 | else: |
---|
| 162 | courses_failed += '%s ' % ticket.code |
---|
[10553] | 163 | else: |
---|
| 164 | passed += 1 |
---|
[10616] | 165 | credits_passed += ticket.credits |
---|
[14368] | 166 | else: |
---|
[14392] | 167 | courses_not_taken += '%s ' % ticket.code |
---|
[14368] | 168 | return (passed, failed, credits_passed, |
---|
| 169 | credits_failed, courses_failed, |
---|
[14392] | 170 | courses_not_taken) |
---|
[10553] | 171 | |
---|
| 172 | @property |
---|
[10598] | 173 | def cumulative_params(self): |
---|
| 174 | """Calculate the cumulative gpa and other cumulative parameters |
---|
| 175 | for this level. |
---|
| 176 | All levels below this level are taken under consideration |
---|
[14154] | 177 | (including repeating levels). |
---|
| 178 | This method is used for level reports and meanwhile also |
---|
| 179 | for session results presentations. |
---|
[10598] | 180 | """ |
---|
[10616] | 181 | credits_passed = 0 |
---|
[10598] | 182 | total_credits = 0 |
---|
| 183 | total_credits_counted = 0 |
---|
| 184 | total_credits_weighted = 0 |
---|
[10618] | 185 | cgpa = 0.0 |
---|
[13002] | 186 | if self.__parent__: |
---|
| 187 | for level in self.__parent__.values(): |
---|
| 188 | if level.level > self.level: |
---|
| 189 | continue |
---|
| 190 | credits_passed += level.passed_params[2] |
---|
| 191 | total_credits += level.total_credits |
---|
| 192 | gpa_params = level.gpa_params |
---|
| 193 | total_credits_counted += gpa_params[1] |
---|
| 194 | total_credits_weighted += gpa_params[2] |
---|
| 195 | if total_credits_counted: |
---|
[14382] | 196 | cgpa = total_credits_weighted/total_credits_counted |
---|
[14200] | 197 | # Override cgpa if value has been imported |
---|
| 198 | # (not implemented in base package) |
---|
| 199 | imported_cgpa = getattr(self, 'imported_cgpa', None) |
---|
| 200 | if imported_cgpa: |
---|
| 201 | cgpa = imported_cgpa |
---|
[10598] | 202 | return (cgpa, total_credits_counted, total_credits_weighted, |
---|
[10616] | 203 | total_credits, credits_passed) |
---|
[10598] | 204 | |
---|
| 205 | @property |
---|
[9257] | 206 | def is_current_level(self): |
---|
| 207 | try: |
---|
| 208 | return self.__parent__.current_level == self.level |
---|
| 209 | except AttributeError: |
---|
| 210 | return False |
---|
| 211 | |
---|
[8735] | 212 | def writeLogMessage(self, view, message): |
---|
| 213 | return self.__parent__.__parent__.writeLogMessage(view, message) |
---|
| 214 | |
---|
[6775] | 215 | @property |
---|
| 216 | def level_title(self): |
---|
| 217 | studylevelsource = StudyLevelSource() |
---|
| 218 | return studylevelsource.factory.getTitle(self.__parent__, self.level) |
---|
| 219 | |
---|
[13031] | 220 | @property |
---|
[14247] | 221 | def course_registration_forbidden(self): |
---|
[13031] | 222 | try: |
---|
| 223 | deadline = grok.getSite()['configuration'][ |
---|
[13057] | 224 | str(self.level_session)].coursereg_deadline |
---|
| 225 | except (TypeError, KeyError): |
---|
[14247] | 226 | return |
---|
[13069] | 227 | if not deadline or deadline > datetime.now(pytz.utc): |
---|
[14247] | 228 | return |
---|
[13031] | 229 | if len(self.student['payments']): |
---|
| 230 | for ticket in self.student['payments'].values(): |
---|
| 231 | if ticket.p_category == 'late_registration' and \ |
---|
| 232 | ticket.p_session == self.level_session and \ |
---|
| 233 | ticket.p_state == 'paid': |
---|
[14247] | 234 | return |
---|
| 235 | return _("Course registration has ended. " |
---|
| 236 | "Please pay the late registration fee.") |
---|
[13031] | 237 | |
---|
[8920] | 238 | def addCourseTicket(self, ticket, course): |
---|
[6781] | 239 | """Add a course ticket object. |
---|
| 240 | """ |
---|
[8920] | 241 | if not ICourseTicket.providedBy(ticket): |
---|
[6781] | 242 | raise TypeError( |
---|
| 243 | 'StudentStudyLeves contain only ICourseTicket instances') |
---|
[8920] | 244 | ticket.code = course.code |
---|
| 245 | ticket.title = course.title |
---|
| 246 | ticket.fcode = course.__parent__.__parent__.__parent__.code |
---|
| 247 | ticket.dcode = course.__parent__.__parent__.code |
---|
| 248 | ticket.credits = course.credits |
---|
| 249 | ticket.passmark = course.passmark |
---|
| 250 | ticket.semester = course.semester |
---|
| 251 | self[ticket.code] = ticket |
---|
[6781] | 252 | return |
---|
| 253 | |
---|
[9501] | 254 | def addCertCourseTickets(self, cert): |
---|
| 255 | """Collect all certificate courses and create course |
---|
| 256 | tickets automatically. |
---|
| 257 | """ |
---|
| 258 | if cert is not None: |
---|
| 259 | for key, val in cert.items(): |
---|
| 260 | if val.level != self.level: |
---|
| 261 | continue |
---|
| 262 | ticket = createObject(u'waeup.CourseTicket') |
---|
| 263 | ticket.automatic = True |
---|
| 264 | ticket.mandatory = val.mandatory |
---|
| 265 | ticket.carry_over = False |
---|
| 266 | self.addCourseTicket(ticket, val.course) |
---|
| 267 | return |
---|
| 268 | |
---|
[9690] | 269 | StudentStudyLevel = attrs_to_fields( |
---|
[10479] | 270 | StudentStudyLevel, omit=['total_credits', 'gpa']) |
---|
[6781] | 271 | |
---|
[7536] | 272 | class StudentStudyLevelFactory(grok.GlobalUtility): |
---|
| 273 | """A factory for student study levels. |
---|
| 274 | """ |
---|
| 275 | grok.implements(IFactory) |
---|
| 276 | grok.name(u'waeup.StudentStudyLevel') |
---|
| 277 | title = u"Create a new student study level.", |
---|
| 278 | description = u"This factory instantiates new student study level instances." |
---|
| 279 | |
---|
| 280 | def __call__(self, *args, **kw): |
---|
| 281 | return StudentStudyLevel() |
---|
| 282 | |
---|
| 283 | def getInterfaces(self): |
---|
| 284 | return implementedBy(StudentStudyLevel) |
---|
| 285 | |
---|
[6781] | 286 | class CourseTicket(grok.Model): |
---|
| 287 | """This is a course ticket which allows the |
---|
| 288 | student to attend the course. Lecturers will enter scores and more at |
---|
| 289 | the end of the term. |
---|
[6783] | 290 | |
---|
| 291 | A course ticket contains a copy of the original course and |
---|
[12882] | 292 | certificate course data. If the courses and/or the referring certificate |
---|
[8920] | 293 | courses are removed, the corresponding tickets remain unchanged. |
---|
[12882] | 294 | So we do not need any event triggered actions on course tickets. |
---|
[6781] | 295 | """ |
---|
| 296 | grok.implements(ICourseTicket, IStudentNavigation) |
---|
| 297 | grok.provides(ICourseTicket) |
---|
| 298 | |
---|
[6795] | 299 | def __init__(self): |
---|
[6781] | 300 | super(CourseTicket, self).__init__() |
---|
[6795] | 301 | self.code = None |
---|
[6781] | 302 | return |
---|
| 303 | |
---|
[8736] | 304 | @property |
---|
| 305 | def student(self): |
---|
[8338] | 306 | """Get the associated student object. |
---|
| 307 | """ |
---|
| 308 | try: |
---|
| 309 | return self.__parent__.__parent__.__parent__ |
---|
[13003] | 310 | except AttributeError: # in unit tests |
---|
[8338] | 311 | return None |
---|
[6781] | 312 | |
---|
[9253] | 313 | @property |
---|
| 314 | def certcode(self): |
---|
| 315 | try: |
---|
| 316 | return self.__parent__.__parent__.certificate.code |
---|
[13003] | 317 | except AttributeError: # in unit tests |
---|
[9253] | 318 | return None |
---|
| 319 | |
---|
[9698] | 320 | @property |
---|
| 321 | def removable_by_student(self): |
---|
[13046] | 322 | """True if student is allowed to remove the ticket. |
---|
| 323 | """ |
---|
[9698] | 324 | return not self.mandatory |
---|
| 325 | |
---|
[10631] | 326 | @property |
---|
| 327 | def editable_by_lecturer(self): |
---|
[13046] | 328 | """True if lecturer is allowed to edit the ticket. |
---|
| 329 | """ |
---|
[13003] | 330 | try: |
---|
[13031] | 331 | cas = grok.getSite()[ |
---|
| 332 | 'configuration'].current_academic_session |
---|
| 333 | if self.student.state == VALIDATED and \ |
---|
| 334 | self.student.current_session == cas: |
---|
[13003] | 335 | return True |
---|
[13008] | 336 | except (AttributeError, TypeError): # in unit tests |
---|
[13003] | 337 | pass |
---|
[10631] | 338 | return False |
---|
| 339 | |
---|
[8735] | 340 | def writeLogMessage(self, view, message): |
---|
[13031] | 341 | return self.__parent__.__parent__.__parent__.writeLogMessage( |
---|
| 342 | view, message) |
---|
[8735] | 343 | |
---|
[9925] | 344 | @property |
---|
| 345 | def level(self): |
---|
[7633] | 346 | """Returns the id of the level the ticket has been added to. |
---|
| 347 | """ |
---|
[8338] | 348 | try: |
---|
| 349 | return self.__parent__.level |
---|
[13003] | 350 | except AttributeError: # in unit tests |
---|
[8338] | 351 | return None |
---|
[7633] | 352 | |
---|
[9925] | 353 | @property |
---|
| 354 | def level_session(self): |
---|
[7633] | 355 | """Returns the session of the level the ticket has been added to. |
---|
| 356 | """ |
---|
[8338] | 357 | try: |
---|
| 358 | return self.__parent__.level_session |
---|
[13003] | 359 | except AttributeError: # in unit tests |
---|
[8338] | 360 | return None |
---|
[7633] | 361 | |
---|
[9684] | 362 | @property |
---|
[14133] | 363 | def total_score(self): |
---|
| 364 | """Returns the total score of this ticket. In the base package |
---|
| 365 | this is simply the score. In customized packages this could be |
---|
| 366 | something else. |
---|
| 367 | """ |
---|
| 368 | return self.score |
---|
| 369 | |
---|
| 370 | @property |
---|
[14531] | 371 | def _getGradeWeightFromScore(self): |
---|
| 372 | """Nigerian Course Grading System |
---|
| 373 | """ |
---|
| 374 | if self.total_score is None: |
---|
| 375 | return (None, None) |
---|
| 376 | if self.total_score >= 70: |
---|
| 377 | return ('A',5) |
---|
| 378 | if self.total_score >= 60: |
---|
| 379 | return ('B',4) |
---|
| 380 | if self.total_score >= 50: |
---|
| 381 | return ('C',3) |
---|
| 382 | if self.total_score >= 45: |
---|
| 383 | return ('D',2) |
---|
| 384 | if self.total_score >= self.passmark: # passmark changed in 2013 from 40 to 45 |
---|
| 385 | return ('E',1) |
---|
| 386 | return ('F',0) |
---|
| 387 | |
---|
| 388 | @property |
---|
[9684] | 389 | def grade(self): |
---|
[14133] | 390 | """Returns the grade calculated from total score. |
---|
[9684] | 391 | """ |
---|
[14531] | 392 | return self._getGradeWeightFromScore[0] |
---|
[7633] | 393 | |
---|
[9684] | 394 | @property |
---|
| 395 | def weight(self): |
---|
[14133] | 396 | """Returns the weight calculated from total score. |
---|
[9684] | 397 | """ |
---|
[14531] | 398 | return self._getGradeWeightFromScore[1] |
---|
[9684] | 399 | |
---|
[6782] | 400 | CourseTicket = attrs_to_fields(CourseTicket) |
---|
[7548] | 401 | |
---|
| 402 | class CourseTicketFactory(grok.GlobalUtility): |
---|
| 403 | """A factory for student study levels. |
---|
| 404 | """ |
---|
| 405 | grok.implements(IFactory) |
---|
| 406 | grok.name(u'waeup.CourseTicket') |
---|
| 407 | title = u"Create a new course ticket.", |
---|
| 408 | description = u"This factory instantiates new course ticket instances." |
---|
| 409 | |
---|
| 410 | def __call__(self, *args, **kw): |
---|
| 411 | return CourseTicket() |
---|
| 412 | |
---|
| 413 | def getInterfaces(self): |
---|
| 414 | return implementedBy(CourseTicket) |
---|