[8326] | 1 | ## $Id: studylevel.py 14206 2016-09-29 08:54:32Z henrik $ |
---|
| 2 | ## |
---|
| 3 | ## Copyright (C) 2012 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 |
---|
[13036] | 23 | import pytz |
---|
| 24 | from datetime import datetime |
---|
[8326] | 25 | from zope.component.interfaces import IFactory |
---|
[9502] | 26 | from zope.component import createObject |
---|
[8326] | 27 | from zope.interface import implementedBy |
---|
| 28 | from waeup.kofa.utils.helpers import attrs_to_fields |
---|
[13036] | 29 | from waeup.kofa.interfaces import CREATED |
---|
[8326] | 30 | from waeup.kofa.students.studylevel import ( |
---|
| 31 | StudentStudyLevel, CourseTicket, |
---|
| 32 | CourseTicketFactory, StudentStudyLevelFactory) |
---|
[14075] | 33 | from waeup.kofa.students.interfaces import IStudentNavigation, ICourseTicket |
---|
[8444] | 34 | from waeup.aaue.students.interfaces import ( |
---|
[8867] | 35 | ICustomStudentStudyLevel, ICustomCourseTicket) |
---|
[8326] | 36 | |
---|
| 37 | |
---|
[14136] | 38 | def getGradeWeightFromScore(total, student): |
---|
| 39 | if total is None: |
---|
[13834] | 40 | return (None, None) |
---|
| 41 | if total >= 70: |
---|
| 42 | return ('A',5) |
---|
| 43 | if total >= 60: |
---|
| 44 | return ('B',4) |
---|
| 45 | if total >= 50: |
---|
| 46 | return ('C',3) |
---|
| 47 | if total >= 45: |
---|
| 48 | return ('D',2) |
---|
[14075] | 49 | if total >= 40 and student.entry_session < 2013: |
---|
[13834] | 50 | return ('E',1) |
---|
| 51 | return ('F',0) |
---|
| 52 | |
---|
| 53 | |
---|
[8326] | 54 | class CustomStudentStudyLevel(StudentStudyLevel): |
---|
| 55 | """This is a container for course tickets. |
---|
| 56 | """ |
---|
| 57 | grok.implements(ICustomStudentStudyLevel, IStudentNavigation) |
---|
| 58 | grok.provides(ICustomStudentStudyLevel) |
---|
| 59 | |
---|
[9914] | 60 | @property |
---|
| 61 | def total_credits_s1(self): |
---|
| 62 | total = 0 |
---|
| 63 | for ticket in self.values(): |
---|
| 64 | if ticket.semester == 1: |
---|
| 65 | total += ticket.credits |
---|
| 66 | return total |
---|
| 67 | |
---|
| 68 | @property |
---|
| 69 | def total_credits_s2(self): |
---|
| 70 | total = 0 |
---|
| 71 | for ticket in self.values(): |
---|
| 72 | if ticket.semester == 2: |
---|
| 73 | total += ticket.credits |
---|
| 74 | return total |
---|
| 75 | |
---|
[10443] | 76 | @property |
---|
[13834] | 77 | def gpa_params(self): |
---|
| 78 | """Calculate gpa parameters for this level. |
---|
| 79 | """ |
---|
| 80 | credits_weighted = 0.0 |
---|
| 81 | credits_counted = 0 |
---|
| 82 | level_gpa = 0.0 |
---|
| 83 | for ticket in self.values(): |
---|
| 84 | if None not in (ticket.score, ticket.ca): |
---|
| 85 | credits_counted += ticket.credits |
---|
| 86 | credits_weighted += ticket.credits * ticket.weight |
---|
| 87 | if credits_counted: |
---|
| 88 | level_gpa = round(credits_weighted/credits_counted, 3) |
---|
[14206] | 89 | # Override level_gpa if value has been imported |
---|
| 90 | imported_gpa = getattr(self, 'imported_gpa', None) |
---|
| 91 | if imported_gpa: |
---|
| 92 | level_gpa = imported_gpa |
---|
[13834] | 93 | return level_gpa, credits_counted, credits_weighted |
---|
| 94 | |
---|
| 95 | @property |
---|
[10480] | 96 | def gpa_params_rectified(self): |
---|
| 97 | return self.gpa_params |
---|
[10443] | 98 | |
---|
[13036] | 99 | @property |
---|
| 100 | def course_registration_allowed(self): |
---|
| 101 | if self.student.is_fresh: |
---|
| 102 | return True |
---|
| 103 | try: |
---|
[14117] | 104 | if self.student.is_postgrad: |
---|
| 105 | deadline = grok.getSite()['configuration'][ |
---|
| 106 | str(self.level_session)].coursereg_deadline_pg |
---|
| 107 | elif self.student.current_mode.startswith('dp'): |
---|
| 108 | deadline = grok.getSite()['configuration'][ |
---|
| 109 | str(self.level_session)].coursereg_deadline_dp |
---|
| 110 | elif self.student.current_mode.endswith('_pt'): |
---|
| 111 | deadline = grok.getSite()['configuration'][ |
---|
| 112 | str(self.level_session)].coursereg_deadline_pt |
---|
| 113 | elif self.student.current_mode == 'found': |
---|
| 114 | deadline = grok.getSite()['configuration'][ |
---|
| 115 | str(self.level_session)].coursereg_deadline_found |
---|
| 116 | else: |
---|
| 117 | deadline = grok.getSite()['configuration'][ |
---|
| 118 | str(self.level_session)].coursereg_deadline |
---|
[13071] | 119 | except (TypeError, KeyError): |
---|
[13036] | 120 | return True |
---|
[13070] | 121 | if not deadline or deadline > datetime.now(pytz.utc): |
---|
| 122 | return True |
---|
[13036] | 123 | payment_made = False |
---|
| 124 | if len(self.student['payments']): |
---|
| 125 | for ticket in self.student['payments'].values(): |
---|
| 126 | if ticket.p_category == 'late_registration' and \ |
---|
| 127 | ticket.p_session == self.level_session and \ |
---|
| 128 | ticket.p_state == 'paid': |
---|
| 129 | payment_made = True |
---|
[13070] | 130 | if payment_made: |
---|
| 131 | return True |
---|
| 132 | return False |
---|
[13036] | 133 | |
---|
[14082] | 134 | # only AAUE |
---|
| 135 | @property |
---|
| 136 | def remark(self): |
---|
[14161] | 137 | certificate = getattr(self.__parent__,'certificate',None) |
---|
| 138 | end_level = getattr(certificate, 'end_level', None) |
---|
| 139 | # final student remark |
---|
| 140 | if end_level and self.student.current_level >= end_level: |
---|
| 141 | failed_courses = self.passed_params[4] |
---|
| 142 | if '_m' in failed_courses: |
---|
| 143 | return 'FRNS' |
---|
| 144 | if self.cumulative_params[0] < 1.5: |
---|
| 145 | return 'Fail' |
---|
| 146 | if self.cumulative_params[0] < 2.4: |
---|
| 147 | return '3rd' |
---|
| 148 | if self.cumulative_params[0] < 3.5: |
---|
| 149 | return '2nd Lower' |
---|
| 150 | if self.cumulative_params[0] < 4.5: |
---|
| 151 | return '2nd Upper' |
---|
| 152 | if self.cumulative_params[0] < 5.1: |
---|
| 153 | return '1st' |
---|
| 154 | return 'N/A' |
---|
| 155 | # returning student remark |
---|
[14082] | 156 | if self.cumulative_params[0] < 1.5: |
---|
| 157 | return 'Probation' |
---|
| 158 | if self.cumulative_params[0] < 5.1: |
---|
| 159 | return 'Proceed' |
---|
| 160 | return 'N/A' |
---|
| 161 | |
---|
[14075] | 162 | def addCourseTicket(self, ticket, course): |
---|
| 163 | """Add a course ticket object. |
---|
| 164 | """ |
---|
| 165 | if not ICourseTicket.providedBy(ticket): |
---|
| 166 | raise TypeError( |
---|
| 167 | 'StudentStudyLeves contain only ICourseTicket instances') |
---|
| 168 | ticket.code = course.code |
---|
| 169 | ticket.title = course.title |
---|
| 170 | ticket.fcode = course.__parent__.__parent__.__parent__.code |
---|
| 171 | ticket.dcode = course.__parent__.__parent__.code |
---|
| 172 | ticket.credits = course.credits |
---|
| 173 | if self.student.entry_session < 2013: |
---|
| 174 | ticket.passmark = course.passmark - 5 |
---|
| 175 | else: |
---|
| 176 | ticket.passmark = course.passmark |
---|
| 177 | ticket.semester = course.semester |
---|
| 178 | self[ticket.code] = ticket |
---|
| 179 | return |
---|
| 180 | |
---|
[9692] | 181 | CustomStudentStudyLevel = attrs_to_fields( |
---|
[9914] | 182 | CustomStudentStudyLevel, omit=[ |
---|
[10480] | 183 | 'total_credits', 'total_credits_s1', 'total_credits_s2', 'gpa']) |
---|
[8326] | 184 | |
---|
| 185 | class CustomStudentStudyLevelFactory(StudentStudyLevelFactory): |
---|
| 186 | """A factory for student study levels. |
---|
| 187 | """ |
---|
| 188 | |
---|
| 189 | def __call__(self, *args, **kw): |
---|
| 190 | return CustomStudentStudyLevel() |
---|
| 191 | |
---|
| 192 | def getInterfaces(self): |
---|
| 193 | return implementedBy(CustomStudentStudyLevel) |
---|
| 194 | |
---|
| 195 | class CustomCourseTicket(CourseTicket): |
---|
| 196 | """This is a course ticket which allows the |
---|
| 197 | student to attend the course. Lecturers will enter scores and more at |
---|
| 198 | the end of the term. |
---|
| 199 | |
---|
| 200 | A course ticket contains a copy of the original course and |
---|
| 201 | course referrer data. If the courses and/or their referrers are removed, the |
---|
| 202 | corresponding tickets remain unchanged. So we do not need any event |
---|
| 203 | triggered actions on course tickets. |
---|
| 204 | """ |
---|
| 205 | grok.implements(ICustomCourseTicket, IStudentNavigation) |
---|
| 206 | grok.provides(ICustomCourseTicket) |
---|
| 207 | |
---|
[13834] | 208 | @property |
---|
| 209 | def grade(self): |
---|
| 210 | """Returns the grade calculated from score. |
---|
| 211 | """ |
---|
[14136] | 212 | return getGradeWeightFromScore(self.total_score, self.student)[0] |
---|
[13834] | 213 | |
---|
| 214 | @property |
---|
| 215 | def weight(self): |
---|
| 216 | """Returns the weight calculated from score. |
---|
| 217 | """ |
---|
[14136] | 218 | return getGradeWeightFromScore(self.total_score, self.student)[1] |
---|
[13834] | 219 | |
---|
[14136] | 220 | @property |
---|
| 221 | def total_score(self): |
---|
| 222 | """Returns ca + score. |
---|
| 223 | """ |
---|
| 224 | if not None in (self.score, self.ca): |
---|
| 225 | return self.score + self.ca |
---|
| 226 | |
---|
[8326] | 227 | CustomCourseTicket = attrs_to_fields(CustomCourseTicket) |
---|
| 228 | |
---|
| 229 | class CustomCourseTicketFactory(CourseTicketFactory): |
---|
| 230 | """A factory for student study levels. |
---|
| 231 | """ |
---|
| 232 | |
---|
| 233 | def __call__(self, *args, **kw): |
---|
| 234 | return CustomCourseTicket() |
---|
| 235 | |
---|
| 236 | def getInterfaces(self): |
---|
| 237 | return implementedBy(CustomCourseTicket) |
---|