[7191] | 1 | ## $Id: interfaces.py 14247 2016-11-02 07:14:58Z henrik $ |
---|
[6621] | 2 | ## |
---|
[7191] | 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 | ## |
---|
[8409] | 18 | #from datetime import datetime |
---|
[7620] | 19 | from zope.component import getUtility |
---|
[7256] | 20 | from zope.interface import Attribute, Interface |
---|
[6621] | 21 | from zope import schema |
---|
[7620] | 22 | from zc.sourcefactory.contextual import BasicContextualSourceFactory |
---|
[9217] | 23 | from waeup.kofa.browser.interfaces import IStudentNavigationBase |
---|
[7811] | 24 | from waeup.kofa.interfaces import ( |
---|
[11450] | 25 | IKofaObject, academic_sessions_vocab, validate_email, ICSVExporter, |
---|
[13125] | 26 | ContextualDictSourceFactoryBase, IKofaUtils) |
---|
[7811] | 27 | from waeup.kofa.interfaces import MessageFactory as _ |
---|
[8176] | 28 | from waeup.kofa.schema import TextLineChoice, FormattedDate, PhoneNumber |
---|
[7811] | 29 | from waeup.kofa.students.vocabularies import ( |
---|
[7915] | 30 | StudyLevelSource, contextual_reg_num_source, contextual_mat_num_source, |
---|
[9420] | 31 | GenderSource, nats_vocab |
---|
[7915] | 32 | ) |
---|
[8160] | 33 | from waeup.kofa.payments.interfaces import ( |
---|
[8174] | 34 | IPaymentsContainer, IOnlinePayment) |
---|
[7915] | 35 | from waeup.kofa.university.vocabularies import ( |
---|
[9864] | 36 | CourseSource, StudyModeSource, CertificateSource, SemesterSource, |
---|
[11450] | 37 | ) |
---|
[6621] | 38 | |
---|
[9864] | 39 | class PreviousPaymentCategorySource(ContextualDictSourceFactoryBase): |
---|
| 40 | """A source that delivers all selectable categories of previous session |
---|
| 41 | payments. |
---|
| 42 | """ |
---|
| 43 | #: name of dict to deliver from kofa utils. |
---|
| 44 | DICT_NAME = 'PREVIOUS_PAYMENT_CATEGORIES' |
---|
| 45 | |
---|
[9868] | 46 | class BalancePaymentCategorySource(ContextualDictSourceFactoryBase): |
---|
[9864] | 47 | """A source that delivers all selectable items of balance payments. |
---|
| 48 | """ |
---|
| 49 | #: name of dict to deliver from kofa utils. |
---|
[9868] | 50 | DICT_NAME = 'BALANCE_PAYMENT_CATEGORIES' |
---|
[9864] | 51 | |
---|
[7620] | 52 | # VerdictSource can't be placed into the vocabularies module because it |
---|
| 53 | # requires importing IStudentsUtils which then leads to circular imports. |
---|
| 54 | class VerdictSource(BasicContextualSourceFactory): |
---|
| 55 | """A verdicts source delivers all verdicts provided |
---|
| 56 | in the portal. |
---|
| 57 | """ |
---|
| 58 | def getValues(self, context): |
---|
[13125] | 59 | verdicts_dict = getUtility(IKofaUtils).VERDICTS_DICT |
---|
[8820] | 60 | return sorted(verdicts_dict.keys()) |
---|
[7620] | 61 | |
---|
| 62 | def getToken(self, context, value): |
---|
| 63 | return value |
---|
| 64 | |
---|
| 65 | def getTitle(self, context, value): |
---|
[13125] | 66 | verdicts_dict = getUtility(IKofaUtils).VERDICTS_DICT |
---|
[8820] | 67 | if value != '0': |
---|
| 68 | return verdicts_dict[value] + ' (%s)' % value |
---|
[7688] | 69 | return verdicts_dict[value] |
---|
[7620] | 70 | |
---|
[7681] | 71 | |
---|
[7150] | 72 | class IStudentsUtils(Interface): |
---|
| 73 | """A collection of methods which are subject to customization. |
---|
| 74 | """ |
---|
[7841] | 75 | def setReturningData(student): |
---|
| 76 | """ This method defines what happens after school fee payment |
---|
| 77 | depending on the student's senate verdict. |
---|
| 78 | |
---|
| 79 | In the base configuration current level is always increased |
---|
| 80 | by 100 no matter which verdict has been assigned. |
---|
| 81 | """ |
---|
| 82 | |
---|
[9148] | 83 | def setPaymentDetails(category, student, previous_session=None, |
---|
| 84 | previous_level=None,): |
---|
[8595] | 85 | """Create Payment object and set the payment data of a student for |
---|
| 86 | the payment category specified. |
---|
[12902] | 87 | """ |
---|
[7150] | 88 | |
---|
[12902] | 89 | def increaseMatricInteger(student): |
---|
| 90 | """Increase counter for matric numbers. |
---|
| 91 | |
---|
| 92 | This counter can be a centrally stored attribute or an attribute of |
---|
| 93 | faculties, departments or certificates. In the base package the counter |
---|
| 94 | is as an attribute of the site configuration object. |
---|
[7150] | 95 | """ |
---|
| 96 | |
---|
[12902] | 97 | def constructMatricNumber(student): |
---|
| 98 | """Fetch the matric number counter which fits the student and |
---|
| 99 | construct the new matric number of the student. |
---|
| 100 | |
---|
| 101 | In the base package the counter is returned which is as an attribute |
---|
| 102 | of the site configuration object. |
---|
| 103 | """ |
---|
| 104 | |
---|
[11589] | 105 | def setMatricNumber(student): |
---|
| 106 | """Set matriculation number of student. |
---|
| 107 | |
---|
| 108 | If the student's matric number is unset a new matric number is |
---|
[12902] | 109 | constructed according to the matriculation number construction rules |
---|
| 110 | defined in the constructMatricNumber method. The new matric number is |
---|
| 111 | set, the students catalog updated. The corresponding matric number |
---|
| 112 | counter is increased by one. |
---|
[11589] | 113 | |
---|
| 114 | This method is tested but not used in the base package. It can |
---|
| 115 | be used in custom packages by adding respective views |
---|
[12902] | 116 | and by customizing increaseMatricInteger and constructMatricNumber |
---|
| 117 | according to the university's matriculation number construction rules. |
---|
[11589] | 118 | |
---|
[12902] | 119 | The method can be disabled by setting the counter to zero. |
---|
[11589] | 120 | """ |
---|
| 121 | |
---|
[7186] | 122 | def getAccommodation_details(student): |
---|
[7150] | 123 | """Determine the accommodation dates of a student. |
---|
| 124 | """ |
---|
| 125 | |
---|
[7186] | 126 | def selectBed(available_beds): |
---|
[7150] | 127 | """Select a bed from a list of available beds. |
---|
| 128 | In the standard configuration we select the first bed found, |
---|
| 129 | but can also randomize the selection if we like. |
---|
| 130 | """ |
---|
| 131 | |
---|
[9949] | 132 | def getPDFCreator(context): |
---|
| 133 | """Get some IPDFCreator instance suitable for use with `context`. |
---|
| 134 | """ |
---|
| 135 | |
---|
[7186] | 136 | def renderPDF(view, subject='', filename='slip.pdf',): |
---|
[7150] | 137 | """Render pdf slips for various pages. |
---|
| 138 | """ |
---|
| 139 | |
---|
[14159] | 140 | def getDegreeClassNumber(level_obj): |
---|
| 141 | """Get degree class number (used for SessionResultsPresentation |
---|
[14157] | 142 | reports). |
---|
| 143 | """ |
---|
| 144 | |
---|
[7819] | 145 | class IStudentsContainer(IKofaObject): |
---|
[7096] | 146 | """A students container contains university students. |
---|
[6692] | 147 | """ |
---|
| 148 | def addStudent(student): |
---|
| 149 | """Add an IStudent object and subcontainers. |
---|
| 150 | """ |
---|
| 151 | |
---|
[13736] | 152 | unique_student_id = Attribute('A unique student id') |
---|
[8408] | 153 | |
---|
[9217] | 154 | class IStudentNavigation(IStudentNavigationBase): |
---|
[13003] | 155 | """Interface needed for navigation and logging. This interface is |
---|
[13076] | 156 | implemented by all content classes in the students section. |
---|
[6642] | 157 | """ |
---|
[13003] | 158 | student = Attribute('Student object of context') |
---|
[7150] | 159 | |
---|
[8735] | 160 | def writeLogMessage(view, message): |
---|
[13167] | 161 | """Add an INFO message to students.log. |
---|
[8735] | 162 | """ |
---|
| 163 | |
---|
[7819] | 164 | class IStudentBase(IKofaObject): |
---|
[6631] | 165 | """Representation of student base data. |
---|
[6621] | 166 | """ |
---|
[12997] | 167 | history = Attribute('Object history, a list of messages') |
---|
| 168 | state = Attribute('Registration state') |
---|
[13080] | 169 | translated_state = Attribute('Real name of the registration state') |
---|
[12997] | 170 | certcode = Attribute('Certificate code of any chosen study course') |
---|
| 171 | depcode = Attribute('Department code of any chosen study course') |
---|
| 172 | faccode = Attribute('Faculty code of any chosen study course') |
---|
| 173 | entry_session = Attribute('Entry session') |
---|
| 174 | current_session = Attribute('Current session') |
---|
| 175 | current_level = Attribute('Current level') |
---|
| 176 | current_mode = Attribute('Current mode') |
---|
| 177 | current_verdict = Attribute('Current verdict') |
---|
[7364] | 178 | fullname = Attribute('All name parts separated by hyphens') |
---|
[12997] | 179 | display_fullname = Attribute('Fullname as displayed on pages') |
---|
[8969] | 180 | is_postgrad = Attribute('True if postgraduate student') |
---|
[12997] | 181 | is_special_postgrad = Attribute('True if special postgraduate student') |
---|
| 182 | is_fresh = Attribute('True if fresh student') |
---|
| 183 | before_payment = Attribute('True if no previous payment has to be made') |
---|
| 184 | personal_data_expired = Attribute('True if personal data expired') |
---|
| 185 | transcript_enabled = Attribute('True if transcript processing is enabled') |
---|
[13103] | 186 | clearance_locked = Attribute('True if clearance form is locked') |
---|
[6637] | 187 | |
---|
[13003] | 188 | password = Attribute('Encrypted password') |
---|
| 189 | temp_password = Attribute('Dictionary with user name, timestamp and encrypted password') |
---|
| 190 | |
---|
[8983] | 191 | suspended = schema.Bool( |
---|
| 192 | title = _(u'Account suspended'), |
---|
| 193 | default = False, |
---|
[9035] | 194 | required = False, |
---|
[8983] | 195 | ) |
---|
| 196 | |
---|
[9702] | 197 | suspended_comment = schema.Text( |
---|
| 198 | title = _(u"Reasons for Deactivation"), |
---|
| 199 | required = False, |
---|
| 200 | description = _( |
---|
| 201 | u'This message will be shown if and only if deactivated ' |
---|
| 202 | 'students try to login.'), |
---|
| 203 | ) |
---|
| 204 | |
---|
[13711] | 205 | flash_notice = schema.TextLine( |
---|
| 206 | title = _(u'Flash Notice'), |
---|
| 207 | required = False, |
---|
| 208 | readonly = False, |
---|
| 209 | description = _( |
---|
| 210 | u'This single-line message will be shown in a flash box.'), |
---|
| 211 | ) |
---|
| 212 | |
---|
[6665] | 213 | student_id = schema.TextLine( |
---|
[7723] | 214 | title = _(u'Student Id'), |
---|
[6849] | 215 | required = False, |
---|
[6665] | 216 | ) |
---|
| 217 | |
---|
[7357] | 218 | firstname = schema.TextLine( |
---|
[7723] | 219 | title = _(u'First Name'), |
---|
[6621] | 220 | required = True, |
---|
| 221 | ) |
---|
| 222 | |
---|
[7357] | 223 | middlename = schema.TextLine( |
---|
[7723] | 224 | title = _(u'Middle Name'), |
---|
[7357] | 225 | required = False, |
---|
| 226 | ) |
---|
| 227 | |
---|
| 228 | lastname = schema.TextLine( |
---|
[7723] | 229 | title = _(u'Last Name (Surname)'), |
---|
[7357] | 230 | required = True, |
---|
| 231 | ) |
---|
| 232 | |
---|
[6996] | 233 | sex = schema.Choice( |
---|
[7723] | 234 | title = _(u'Sex'), |
---|
[6996] | 235 | source = GenderSource(), |
---|
| 236 | required = True, |
---|
| 237 | ) |
---|
| 238 | |
---|
[6788] | 239 | reg_number = TextLineChoice( |
---|
[7723] | 240 | title = _(u'Registration Number'), |
---|
[6696] | 241 | required = True, |
---|
| 242 | readonly = False, |
---|
[6788] | 243 | source = contextual_reg_num_source, |
---|
[6696] | 244 | ) |
---|
| 245 | |
---|
[6788] | 246 | matric_number = TextLineChoice( |
---|
[7723] | 247 | title = _(u'Matriculation Number'), |
---|
[6750] | 248 | required = False, |
---|
| 249 | readonly = False, |
---|
[6788] | 250 | source = contextual_mat_num_source, |
---|
[6750] | 251 | ) |
---|
| 252 | |
---|
[6769] | 253 | adm_code = schema.TextLine( |
---|
[7723] | 254 | title = _(u'PWD Activation Code'), |
---|
[6769] | 255 | required = False, |
---|
[8977] | 256 | readonly = False, |
---|
[6769] | 257 | ) |
---|
| 258 | |
---|
[7133] | 259 | email = schema.ASCIILine( |
---|
[7723] | 260 | title = _(u'Email'), |
---|
[13345] | 261 | required = False, |
---|
[7133] | 262 | constraint=validate_email, |
---|
| 263 | ) |
---|
[8176] | 264 | phone = PhoneNumber( |
---|
[7723] | 265 | title = _(u'Phone'), |
---|
[7133] | 266 | required = False, |
---|
| 267 | ) |
---|
| 268 | |
---|
[9334] | 269 | def setTempPassword(user, password): |
---|
| 270 | """Set a temporary password (LDAP-compatible) SSHA encoded for |
---|
| 271 | officers. |
---|
| 272 | """ |
---|
| 273 | |
---|
| 274 | def getTempPassword(): |
---|
| 275 | """Check if a temporary password has been set and if it |
---|
[12997] | 276 | is not expired. Return the temporary password if valid, |
---|
[9334] | 277 | None otherwise. Unset the temporary password if expired. |
---|
| 278 | """ |
---|
| 279 | |
---|
[9131] | 280 | def transfer(certificate, current_session, |
---|
| 281 | current_level, current_verdict): |
---|
| 282 | """ Creates a new studycourse and backups the old one. |
---|
[12997] | 283 | """ |
---|
[9131] | 284 | |
---|
[12997] | 285 | def revert_transfer(): |
---|
| 286 | """ Revert previous transfer. |
---|
[9131] | 287 | """ |
---|
| 288 | |
---|
[7993] | 289 | class IUGStudentClearance(IKofaObject): |
---|
| 290 | """Representation of undergraduate student clearance data. |
---|
[6631] | 291 | """ |
---|
[9543] | 292 | officer_comment = schema.Text( |
---|
| 293 | title = _(u"Officer's Comment"), |
---|
| 294 | required = False, |
---|
[6631] | 295 | ) |
---|
| 296 | |
---|
[6769] | 297 | clr_code = schema.TextLine( |
---|
[7723] | 298 | title = _(u'CLR Activation Code'), |
---|
[6769] | 299 | required = False, |
---|
[8977] | 300 | readonly = False, |
---|
[6769] | 301 | ) |
---|
| 302 | |
---|
[9543] | 303 | date_of_birth = FormattedDate( |
---|
| 304 | title = _(u'Date of Birth'), |
---|
| 305 | required = True, |
---|
| 306 | show_year = True, |
---|
| 307 | ) |
---|
| 308 | |
---|
[7523] | 309 | nationality = schema.Choice( |
---|
[8069] | 310 | vocabulary = nats_vocab, |
---|
[7723] | 311 | title = _(u'Nationality'), |
---|
[7983] | 312 | required = False, |
---|
[7523] | 313 | ) |
---|
| 314 | |
---|
[7993] | 315 | class IPGStudentClearance(IUGStudentClearance): |
---|
| 316 | """Representation of postgraduate student clearance data. |
---|
| 317 | """ |
---|
| 318 | employer = schema.TextLine( |
---|
| 319 | title = _(u'Employer'), |
---|
| 320 | required = False, |
---|
| 321 | readonly = False, |
---|
| 322 | ) |
---|
| 323 | |
---|
[7819] | 324 | class IStudentPersonal(IKofaObject): |
---|
[6631] | 325 | """Representation of student personal data. |
---|
| 326 | """ |
---|
[9543] | 327 | personal_updated = schema.Datetime( |
---|
| 328 | title = _(u'Updated'), |
---|
| 329 | required = False, |
---|
| 330 | readonly = False, |
---|
| 331 | ) |
---|
| 332 | |
---|
[6651] | 333 | perm_address = schema.Text( |
---|
[7723] | 334 | title = _(u'Permanent Address'), |
---|
[6631] | 335 | required = False, |
---|
| 336 | ) |
---|
| 337 | |
---|
[10447] | 338 | class IStudentTranscript(IKofaObject): |
---|
| 339 | """Representation of student transcript data. |
---|
| 340 | """ |
---|
| 341 | |
---|
[10458] | 342 | transcript_comment = schema.Text( |
---|
| 343 | title = _(u'Comment'), |
---|
[10447] | 344 | required = False, |
---|
| 345 | ) |
---|
| 346 | |
---|
| 347 | |
---|
[8008] | 348 | class IStudent(IStudentBase,IUGStudentClearance,IPGStudentClearance, |
---|
[10447] | 349 | IStudentPersonal, IStudentTranscript): |
---|
[6631] | 350 | """Representation of a student. |
---|
| 351 | """ |
---|
| 352 | |
---|
[9563] | 353 | class IStudentPersonalEdit(IStudentPersonal): |
---|
| 354 | """Interface for editing personal data by students. |
---|
| 355 | Here we can repeat the fields from IStudentPersonal and set the |
---|
| 356 | `required` if necessary. |
---|
| 357 | """ |
---|
| 358 | |
---|
| 359 | perm_address = schema.Text( |
---|
| 360 | title = _(u'Permanent Address'), |
---|
| 361 | required = True, |
---|
| 362 | ) |
---|
| 363 | |
---|
[6849] | 364 | class IStudentUpdateByRegNo(IStudent): |
---|
| 365 | """Representation of a student. Skip regular reg_number validation. |
---|
| 366 | """ |
---|
| 367 | reg_number = schema.TextLine( |
---|
[7723] | 368 | title = _(u'Registration Number'), |
---|
[6849] | 369 | required = False, |
---|
| 370 | ) |
---|
| 371 | |
---|
| 372 | class IStudentUpdateByMatricNo(IStudent): |
---|
| 373 | """Representation of a student. Skip regular matric_number validation. |
---|
| 374 | """ |
---|
| 375 | matric_number = schema.TextLine( |
---|
[7723] | 376 | title = _(u'Matriculation Number'), |
---|
[6849] | 377 | required = False, |
---|
| 378 | ) |
---|
| 379 | |
---|
[8779] | 380 | class IStudentRequestPW(IStudent): |
---|
[12999] | 381 | """Representation of a student for first-time password request. |
---|
[8779] | 382 | This interface is used when students use the requestpw page to |
---|
| 383 | login for the the first time. |
---|
| 384 | """ |
---|
[8854] | 385 | number = schema.TextLine( |
---|
| 386 | title = _(u'Registr. or Matric. Number'), |
---|
[8779] | 387 | required = True, |
---|
| 388 | ) |
---|
| 389 | |
---|
| 390 | firstname = schema.TextLine( |
---|
| 391 | title = _(u'First Name'), |
---|
| 392 | required = True, |
---|
| 393 | ) |
---|
| 394 | |
---|
| 395 | email = schema.ASCIILine( |
---|
| 396 | title = _(u'Email Address'), |
---|
| 397 | required = True, |
---|
| 398 | constraint=validate_email, |
---|
| 399 | ) |
---|
| 400 | |
---|
[7819] | 401 | class IStudentStudyCourse(IKofaObject): |
---|
[12999] | 402 | """Representation of student study course data. |
---|
[6633] | 403 | """ |
---|
[13002] | 404 | next_session_allowed = Attribute('True if the student can proceed to next session') |
---|
| 405 | is_postgrad = Attribute('True if student is postgraduate student') |
---|
| 406 | is_current = Attribute('True if the study course is the current course of studies') |
---|
| 407 | is_previous = Attribute('True if the study course is the previous course of studies') |
---|
| 408 | |
---|
[6648] | 409 | certificate = schema.Choice( |
---|
[7723] | 410 | title = _(u'Certificate'), |
---|
[6648] | 411 | source = CertificateSource(), |
---|
[7209] | 412 | required = False, |
---|
[6633] | 413 | ) |
---|
[6635] | 414 | |
---|
[6996] | 415 | entry_mode = schema.Choice( |
---|
[7723] | 416 | title = _(u'Entry Mode'), |
---|
[7681] | 417 | source = StudyModeSource(), |
---|
[6996] | 418 | required = True, |
---|
| 419 | readonly = False, |
---|
| 420 | ) |
---|
| 421 | |
---|
| 422 | entry_session = schema.Choice( |
---|
[7723] | 423 | title = _(u'Entry Session'), |
---|
[6996] | 424 | source = academic_sessions_vocab, |
---|
[7425] | 425 | #default = datetime.now().year, |
---|
[6996] | 426 | required = True, |
---|
| 427 | readonly = False, |
---|
| 428 | ) |
---|
| 429 | |
---|
[6724] | 430 | current_session = schema.Choice( |
---|
[7723] | 431 | title = _(u'Current Session'), |
---|
[6744] | 432 | source = academic_sessions_vocab, |
---|
[6724] | 433 | required = True, |
---|
[6996] | 434 | readonly = False, |
---|
[6724] | 435 | ) |
---|
| 436 | |
---|
| 437 | current_level = schema.Choice( |
---|
[7723] | 438 | title = _(u'Current Level'), |
---|
[6725] | 439 | source = StudyLevelSource(), |
---|
| 440 | required = False, |
---|
[6996] | 441 | readonly = False, |
---|
[6724] | 442 | ) |
---|
| 443 | |
---|
| 444 | current_verdict = schema.Choice( |
---|
[7723] | 445 | title = _(u'Current Verdict'), |
---|
[7619] | 446 | source = VerdictSource(), |
---|
[8820] | 447 | default = '0', |
---|
[6725] | 448 | required = False, |
---|
[6724] | 449 | ) |
---|
| 450 | |
---|
| 451 | previous_verdict = schema.Choice( |
---|
[7723] | 452 | title = _(u'Previous Verdict'), |
---|
[7619] | 453 | source = VerdictSource(), |
---|
[8820] | 454 | default = '0', |
---|
[6725] | 455 | required = False, |
---|
[6724] | 456 | ) |
---|
| 457 | |
---|
[13002] | 458 | def addStudentStudyLevel(cert, studylevel): |
---|
| 459 | """Add a study level object. |
---|
| 460 | """ |
---|
| 461 | |
---|
| 462 | def getTranscriptData(): |
---|
| 463 | """Get a sorted list of dicts with level and course ticket data. |
---|
| 464 | This method is used for transcripts. |
---|
| 465 | """ |
---|
| 466 | |
---|
[9138] | 467 | class IStudentStudyCourseTransfer(IStudentStudyCourse): |
---|
[12999] | 468 | """An interface used for student transfers. |
---|
[9138] | 469 | """ |
---|
| 470 | certificate = schema.Choice( |
---|
| 471 | title = _(u'Certificate'), |
---|
| 472 | source = CertificateSource(), |
---|
| 473 | required = True, |
---|
| 474 | ) |
---|
| 475 | |
---|
| 476 | current_level = schema.Choice( |
---|
| 477 | title = _(u'Current Level'), |
---|
| 478 | source = StudyLevelSource(), |
---|
| 479 | required = True, |
---|
| 480 | readonly = False, |
---|
| 481 | ) |
---|
| 482 | |
---|
[9960] | 483 | entry_session = schema.Choice( |
---|
| 484 | title = _(u'Entry Session'), |
---|
| 485 | source = academic_sessions_vocab, |
---|
| 486 | #default = datetime.now().year, |
---|
| 487 | required = False, |
---|
| 488 | readonly = False, |
---|
| 489 | ) |
---|
| 490 | |
---|
| 491 | |
---|
[9138] | 492 | IStudentStudyCourseTransfer['certificate'].order = IStudentStudyCourse[ |
---|
| 493 | 'certificate'].order |
---|
| 494 | IStudentStudyCourseTransfer['current_level'].order = IStudentStudyCourse[ |
---|
| 495 | 'current_level'].order |
---|
| 496 | |
---|
[10250] | 497 | class IStudentStudyCourseTranscript(IKofaObject): |
---|
| 498 | """An interface for student transcripts. |
---|
| 499 | """ |
---|
| 500 | entry_mode = schema.Choice( |
---|
| 501 | title = _(u'Entry Mode'), |
---|
| 502 | source = StudyModeSource(), |
---|
| 503 | required = True, |
---|
| 504 | readonly = False, |
---|
| 505 | ) |
---|
| 506 | |
---|
| 507 | entry_session = schema.Choice( |
---|
| 508 | title = _(u'Entry Session'), |
---|
| 509 | source = academic_sessions_vocab, |
---|
| 510 | #default = datetime.now().year, |
---|
| 511 | required = True, |
---|
| 512 | readonly = False, |
---|
| 513 | ) |
---|
| 514 | |
---|
[7951] | 515 | class IStudentVerdictUpdate(IKofaObject): |
---|
| 516 | """A interface for verdict imports. |
---|
| 517 | """ |
---|
| 518 | current_verdict = schema.Choice( |
---|
| 519 | title = _(u'Current Verdict'), |
---|
| 520 | source = VerdictSource(), |
---|
| 521 | required = True, |
---|
| 522 | ) |
---|
| 523 | |
---|
| 524 | current_session = schema.Choice( |
---|
| 525 | title = _(u'Current Session'), |
---|
| 526 | source = academic_sessions_vocab, |
---|
| 527 | required = True, |
---|
| 528 | ) |
---|
| 529 | |
---|
| 530 | current_level = schema.Choice( |
---|
| 531 | title = _(u'Current Level'), |
---|
| 532 | source = StudyLevelSource(), |
---|
| 533 | required = True, |
---|
| 534 | ) |
---|
| 535 | |
---|
[9296] | 536 | bypass_validation = schema.Bool( |
---|
| 537 | title = _(u'Bypass validation'), |
---|
| 538 | required = False, |
---|
| 539 | ) |
---|
| 540 | |
---|
| 541 | validated_by = schema.TextLine( |
---|
| 542 | title = _(u'Validated by'), |
---|
| 543 | required = False, |
---|
| 544 | ) |
---|
| 545 | |
---|
[7819] | 546 | class IStudentStudyLevel(IKofaObject): |
---|
[12999] | 547 | """A representation of student study level data. |
---|
[6774] | 548 | """ |
---|
[13002] | 549 | certcode = Attribute('The certificate code of the study course') |
---|
| 550 | is_current_level = Attribute('True if level is current level of the student') |
---|
| 551 | level_title = Attribute('Level title from source') |
---|
| 552 | getSessionString = Attribute('Session title from source') |
---|
[9235] | 553 | number_of_tickets = Attribute('Number of tickets contained in this level') |
---|
[10553] | 554 | passed_params = Attribute('Information about passed and failed courses') |
---|
[13002] | 555 | gpa_params_rectified = Attribute('Corrected sessional GPA parameters') |
---|
| 556 | gpa_params = Attribute('GPA parameters for this level.') |
---|
[14247] | 557 | cumulative_params = Attribute( |
---|
| 558 | 'Cumulative GPA and other cumulative parameters for this level') |
---|
| 559 | course_registration_forbidden = Attribute( |
---|
| 560 | 'Return error message if course registration is forbidden') |
---|
[6774] | 561 | |
---|
[12873] | 562 | level = schema.Choice( |
---|
| 563 | title = _(u'Level'), |
---|
| 564 | source = StudyLevelSource(), |
---|
| 565 | required = True, |
---|
| 566 | readonly = False, |
---|
| 567 | ) |
---|
| 568 | |
---|
[6793] | 569 | level_session = schema.Choice( |
---|
[7723] | 570 | title = _(u'Session'), |
---|
[6793] | 571 | source = academic_sessions_vocab, |
---|
[9437] | 572 | required = True, |
---|
[6793] | 573 | ) |
---|
[6781] | 574 | |
---|
[6793] | 575 | level_verdict = schema.Choice( |
---|
[7723] | 576 | title = _(u'Verdict'), |
---|
[7619] | 577 | source = VerdictSource(), |
---|
[8820] | 578 | default = '0', |
---|
[6793] | 579 | required = False, |
---|
| 580 | ) |
---|
| 581 | |
---|
[9161] | 582 | validated_by = schema.TextLine( |
---|
| 583 | title = _(u'Validated by'), |
---|
| 584 | default = None, |
---|
| 585 | required = False, |
---|
| 586 | ) |
---|
| 587 | |
---|
| 588 | validation_date = schema.Datetime( |
---|
| 589 | title = _(u'Validation Date'), |
---|
| 590 | required = False, |
---|
| 591 | readonly = False, |
---|
| 592 | ) |
---|
| 593 | |
---|
[9690] | 594 | total_credits = schema.Int( |
---|
| 595 | title = _(u'Total Credits'), |
---|
| 596 | required = False, |
---|
| 597 | readonly = True, |
---|
| 598 | ) |
---|
| 599 | |
---|
[10479] | 600 | gpa = schema.Int( |
---|
| 601 | title = _(u'Unrectified GPA'), |
---|
| 602 | required = False, |
---|
| 603 | readonly = True, |
---|
| 604 | ) |
---|
[9690] | 605 | |
---|
[8920] | 606 | def addCourseTicket(ticket, course): |
---|
[8182] | 607 | """Add a course ticket object. |
---|
| 608 | """ |
---|
| 609 | |
---|
[9501] | 610 | def addCertCourseTickets(cert): |
---|
| 611 | """Collect all certificate courses and create course |
---|
| 612 | tickets automatically. |
---|
| 613 | """ |
---|
| 614 | |
---|
[7819] | 615 | class ICourseTicket(IKofaObject): |
---|
[12999] | 616 | """A representation of course ticket data. |
---|
[6781] | 617 | """ |
---|
[13003] | 618 | certcode = Attribute('Certificate code of the study course') |
---|
| 619 | level_session = Attribute('Session of the study level the ticket has been added to') |
---|
| 620 | level = Attribute('Level value of the study level the ticket has been added to') |
---|
[14133] | 621 | total_score = Attribute('Score') |
---|
| 622 | grade = Attribute('Grade calculated from total score') |
---|
| 623 | weight = Attribute('Weight calculated from total score') |
---|
[13003] | 624 | removable_by_student = Attribute('True if student is allowed to remove the ticket') |
---|
| 625 | editable_by_lecturer = Attribute('True if lecturer is allowed to edit the ticket') |
---|
[6781] | 626 | |
---|
[13003] | 627 | code = Attribute('Code of the original course') |
---|
| 628 | |
---|
[9420] | 629 | title = schema.TextLine( |
---|
| 630 | title = _(u'Title'), |
---|
| 631 | required = False, |
---|
| 632 | ) |
---|
| 633 | |
---|
| 634 | fcode = schema.TextLine( |
---|
| 635 | title = _(u'Faculty Code'), |
---|
| 636 | required = False, |
---|
| 637 | ) |
---|
| 638 | |
---|
| 639 | dcode = schema.TextLine( |
---|
| 640 | title = _(u'Department Code'), |
---|
| 641 | required = False, |
---|
| 642 | ) |
---|
| 643 | |
---|
| 644 | semester = schema.Choice( |
---|
| 645 | title = _(u'Semester/Term'), |
---|
| 646 | source = SemesterSource(), |
---|
| 647 | required = False, |
---|
| 648 | ) |
---|
| 649 | |
---|
| 650 | passmark = schema.Int( |
---|
| 651 | title = _(u'Passmark'), |
---|
| 652 | required = False, |
---|
| 653 | ) |
---|
| 654 | |
---|
| 655 | credits = schema.Int( |
---|
| 656 | title = _(u'Credits'), |
---|
| 657 | required = False, |
---|
| 658 | ) |
---|
| 659 | |
---|
[7665] | 660 | mandatory = schema.Bool( |
---|
[9320] | 661 | title = _(u'Required'), |
---|
[6795] | 662 | default = False, |
---|
| 663 | required = False, |
---|
| 664 | ) |
---|
| 665 | |
---|
[6781] | 666 | score = schema.Int( |
---|
[7723] | 667 | title = _(u'Score'), |
---|
[9684] | 668 | default = None, |
---|
[6781] | 669 | required = False, |
---|
[10637] | 670 | missing_value = None, |
---|
[6781] | 671 | ) |
---|
| 672 | |
---|
[7661] | 673 | carry_over = schema.Bool( |
---|
[7723] | 674 | title = _(u'Carry-over Course'), |
---|
[7661] | 675 | default = False, |
---|
| 676 | required = False, |
---|
| 677 | ) |
---|
| 678 | |
---|
[9420] | 679 | automatic = schema.Bool( |
---|
| 680 | title = _(u'Automatical Creation'), |
---|
| 681 | default = False, |
---|
[9316] | 682 | required = False, |
---|
| 683 | ) |
---|
| 684 | |
---|
[9420] | 685 | class ICourseTicketAdd(IKofaObject): |
---|
[7150] | 686 | """An interface for adding course tickets. |
---|
[6795] | 687 | """ |
---|
| 688 | course = schema.Choice( |
---|
[7723] | 689 | title = _(u'Course'), |
---|
[6795] | 690 | source = CourseSource(), |
---|
| 691 | readonly = False, |
---|
| 692 | ) |
---|
| 693 | |
---|
[9420] | 694 | class ICourseTicketImport(ICourseTicket): |
---|
| 695 | """An interface for importing course results and nothing more. |
---|
| 696 | """ |
---|
| 697 | score = schema.Int( |
---|
| 698 | title = _(u'Score'), |
---|
| 699 | required = False, |
---|
| 700 | readonly = False, |
---|
| 701 | ) |
---|
| 702 | |
---|
| 703 | level_session = schema.Choice( |
---|
| 704 | title = _(u'Level Session'), |
---|
| 705 | source = academic_sessions_vocab, |
---|
| 706 | required = False, |
---|
| 707 | readonly = False, |
---|
| 708 | ) |
---|
| 709 | |
---|
[7819] | 710 | class IStudentAccommodation(IKofaObject): |
---|
[6635] | 711 | """A container for student accommodation objects. |
---|
| 712 | """ |
---|
| 713 | |
---|
[13457] | 714 | desired_hostel = schema.TextLine( |
---|
| 715 | title = _(u'Desired Hostel'), |
---|
| 716 | required = False, |
---|
| 717 | ) |
---|
| 718 | |
---|
[9423] | 719 | def addBedTicket(bedticket): |
---|
| 720 | """Add a bed ticket object. |
---|
| 721 | """ |
---|
| 722 | |
---|
| 723 | |
---|
[7819] | 724 | class IBedTicket(IKofaObject): |
---|
[12999] | 725 | """A representation of accommodation booking data. |
---|
[6989] | 726 | """ |
---|
[13314] | 727 | bed = Attribute('The bed object') |
---|
| 728 | maint_payment_made = Attribute('True if maintenance payment is made') |
---|
[6996] | 729 | |
---|
[13012] | 730 | display_coordinates = schema.TextLine( |
---|
| 731 | title = _(u'Allocated Bed'), |
---|
| 732 | required = False, |
---|
| 733 | readonly = True, |
---|
| 734 | ) |
---|
| 735 | |
---|
[6996] | 736 | bed_coordinates = schema.TextLine( |
---|
[9984] | 737 | title = u'', |
---|
[9423] | 738 | required = True, |
---|
[7014] | 739 | readonly = False, |
---|
[6992] | 740 | ) |
---|
| 741 | |
---|
[6996] | 742 | bed_type = schema.TextLine( |
---|
[9424] | 743 | title = _(u'Requested Bed Type'), |
---|
[9423] | 744 | required = True, |
---|
[7014] | 745 | readonly = False, |
---|
[6996] | 746 | ) |
---|
| 747 | |
---|
[6992] | 748 | booking_session = schema.Choice( |
---|
[7723] | 749 | title = _(u'Session'), |
---|
[6992] | 750 | source = academic_sessions_vocab, |
---|
| 751 | required = True, |
---|
[13316] | 752 | readonly = False |
---|
[6992] | 753 | ) |
---|
| 754 | |
---|
[8170] | 755 | booking_date = schema.Datetime( |
---|
[7723] | 756 | title = _(u'Booking Date'), |
---|
[6992] | 757 | required = False, |
---|
[13316] | 758 | readonly = False, |
---|
[6992] | 759 | ) |
---|
| 760 | |
---|
| 761 | booking_code = schema.TextLine( |
---|
[7723] | 762 | title = _(u'Booking Activation Code'), |
---|
[6992] | 763 | required = False, |
---|
[13316] | 764 | readonly = False, |
---|
[6992] | 765 | ) |
---|
| 766 | |
---|
[6994] | 767 | def getSessionString(): |
---|
[13012] | 768 | """Returns the title of academic_sessions_vocab term of the session |
---|
| 769 | when the bed was booked. |
---|
[6994] | 770 | """ |
---|
[6992] | 771 | |
---|
[6860] | 772 | class IStudentPaymentsContainer(IPaymentsContainer): |
---|
[6635] | 773 | """A container for student payment objects. |
---|
| 774 | """ |
---|
| 775 | |
---|
[13736] | 776 | certificate = Attribute('Certificate to determine the correct p_level value') |
---|
| 777 | |
---|
[6877] | 778 | class IStudentOnlinePayment(IOnlinePayment): |
---|
| 779 | """A student payment via payment gateways. |
---|
| 780 | """ |
---|
| 781 | |
---|
[13736] | 782 | certificate = Attribute('Certificate to determine the correct p_level value') |
---|
[13871] | 783 | student = Attribute('Student') |
---|
[13736] | 784 | |
---|
[9148] | 785 | p_current = schema.Bool( |
---|
| 786 | title = _(u'Current Session Payment'), |
---|
| 787 | default = True, |
---|
| 788 | required = False, |
---|
| 789 | ) |
---|
| 790 | |
---|
[13733] | 791 | p_level = schema.Choice( |
---|
[8268] | 792 | title = _(u'Payment Level'), |
---|
[13733] | 793 | source = StudyLevelSource(), |
---|
[8268] | 794 | required = False, |
---|
| 795 | ) |
---|
[6877] | 796 | |
---|
[13871] | 797 | def redeemTicket(): |
---|
| 798 | """Either create an appropriate access code or trigger an action |
---|
| 799 | directly. |
---|
| 800 | """ |
---|
| 801 | |
---|
[8422] | 802 | def doAfterStudentPayment(): |
---|
| 803 | """Process student after payment was made. |
---|
| 804 | """ |
---|
| 805 | |
---|
[8453] | 806 | def doAfterStudentPaymentApproval(): |
---|
| 807 | """Process student after payment was approved. |
---|
| 808 | """ |
---|
| 809 | |
---|
[8420] | 810 | def approveStudentPayment(): |
---|
[8422] | 811 | """Approve payment and process student. |
---|
[8420] | 812 | """ |
---|
| 813 | |
---|
[8268] | 814 | IStudentOnlinePayment['p_level'].order = IStudentOnlinePayment[ |
---|
| 815 | 'p_session'].order |
---|
[8408] | 816 | |
---|
[9864] | 817 | class IStudentPreviousPayment(IKofaObject): |
---|
[9148] | 818 | """An interface for adding previous session payments. |
---|
| 819 | """ |
---|
| 820 | |
---|
[9864] | 821 | p_category = schema.Choice( |
---|
| 822 | title = _(u'Payment Category'), |
---|
| 823 | default = u'schoolfee', |
---|
| 824 | source = PreviousPaymentCategorySource(), |
---|
| 825 | required = True, |
---|
| 826 | ) |
---|
| 827 | |
---|
[9148] | 828 | p_session = schema.Choice( |
---|
| 829 | title = _(u'Payment Session'), |
---|
| 830 | source = academic_sessions_vocab, |
---|
| 831 | required = True, |
---|
| 832 | ) |
---|
| 833 | |
---|
| 834 | p_level = schema.Choice( |
---|
| 835 | title = _(u'Payment Level'), |
---|
| 836 | source = StudyLevelSource(), |
---|
| 837 | required = True, |
---|
| 838 | ) |
---|
| 839 | |
---|
[9864] | 840 | class IStudentBalancePayment(IKofaObject): |
---|
| 841 | """An interface for adding balances. |
---|
| 842 | """ |
---|
| 843 | |
---|
[9868] | 844 | p_category = schema.Choice( |
---|
[9864] | 845 | title = _(u'Payment Category'), |
---|
| 846 | default = u'schoolfee', |
---|
| 847 | required = True, |
---|
[9868] | 848 | source = BalancePaymentCategorySource(), |
---|
[9864] | 849 | ) |
---|
| 850 | |
---|
| 851 | balance_session = schema.Choice( |
---|
| 852 | title = _(u'Payment Session'), |
---|
| 853 | source = academic_sessions_vocab, |
---|
| 854 | required = True, |
---|
| 855 | ) |
---|
| 856 | |
---|
| 857 | balance_level = schema.Choice( |
---|
| 858 | title = _(u'Payment Level'), |
---|
| 859 | source = StudyLevelSource(), |
---|
| 860 | required = True, |
---|
| 861 | ) |
---|
| 862 | |
---|
| 863 | balance_amount = schema.Float( |
---|
| 864 | title = _(u'Balance Amount'), |
---|
[9874] | 865 | default = None, |
---|
[9864] | 866 | required = True, |
---|
| 867 | readonly = False, |
---|
| 868 | description = _( |
---|
| 869 | u'Balance in Naira '), |
---|
| 870 | ) |
---|
| 871 | |
---|
[8408] | 872 | class ICSVStudentExporter(ICSVExporter): |
---|
| 873 | """A regular ICSVExporter that additionally supports exporting |
---|
| 874 | data from a given student object. |
---|
| 875 | """ |
---|
[9801] | 876 | def get_filtered(site, **kw): |
---|
[9797] | 877 | """Get a filtered set of students. |
---|
| 878 | """ |
---|
[8408] | 879 | |
---|
[12518] | 880 | def get_selected(site, selected): |
---|
| 881 | """Get set of selected students. |
---|
| 882 | """ |
---|
| 883 | |
---|
[8408] | 884 | def export_student(student, filepath=None): |
---|
| 885 | """Export data for a given student. |
---|
| 886 | """ |
---|
[9734] | 887 | |
---|
[9797] | 888 | def export_filtered(site, filepath=None, **kw): |
---|
[12518] | 889 | """Export data for filtered set of students. |
---|
[9734] | 890 | """ |
---|
[12518] | 891 | |
---|
| 892 | def export_selected(site, filepath=None, **kw): |
---|
| 893 | """Export data for selected set of students. |
---|
| 894 | """ |
---|