[7191] | 1 | ## $Id: interfaces.py 7983 2012-03-26 09:31:08Z 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 | ## |
---|
[6996] | 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 |
---|
[7811] | 23 | from waeup.kofa.interfaces import ( |
---|
[7819] | 24 | IKofaObject, academic_sessions_vocab, validate_email, IKofaUtils) |
---|
[7811] | 25 | from waeup.kofa.interfaces import MessageFactory as _ |
---|
| 26 | from waeup.kofa.schema import TextLineChoice |
---|
| 27 | from waeup.kofa.students.vocabularies import ( |
---|
[7915] | 28 | StudyLevelSource, contextual_reg_num_source, contextual_mat_num_source, |
---|
| 29 | GenderSource, nats_vocab, |
---|
| 30 | ) |
---|
[7811] | 31 | from waeup.kofa.payments.interfaces import IPaymentsContainer, IOnlinePayment |
---|
[7915] | 32 | from waeup.kofa.university.vocabularies import ( |
---|
| 33 | CourseSource, StudyModeSource, CertificateSource) |
---|
[6621] | 34 | |
---|
[7620] | 35 | # VerdictSource can't be placed into the vocabularies module because it |
---|
| 36 | # requires importing IStudentsUtils which then leads to circular imports. |
---|
| 37 | class VerdictSource(BasicContextualSourceFactory): |
---|
| 38 | """A verdicts source delivers all verdicts provided |
---|
| 39 | in the portal. |
---|
| 40 | """ |
---|
| 41 | def getValues(self, context): |
---|
[7841] | 42 | verdicts_dict = getUtility(IStudentsUtils).VERDICTS_DICT |
---|
[7688] | 43 | return verdicts_dict.keys() |
---|
[7620] | 44 | |
---|
| 45 | def getToken(self, context, value): |
---|
| 46 | return value |
---|
| 47 | |
---|
| 48 | def getTitle(self, context, value): |
---|
[7841] | 49 | verdicts_dict = getUtility(IStudentsUtils).VERDICTS_DICT |
---|
[7688] | 50 | return verdicts_dict[value] |
---|
[7620] | 51 | |
---|
[7681] | 52 | |
---|
[7150] | 53 | class IStudentsUtils(Interface): |
---|
| 54 | """A collection of methods which are subject to customization. |
---|
| 55 | |
---|
| 56 | """ |
---|
[7841] | 57 | def setReturningData(student): |
---|
| 58 | """ This method defines what happens after school fee payment |
---|
| 59 | depending on the student's senate verdict. |
---|
| 60 | |
---|
| 61 | In the base configuration current level is always increased |
---|
| 62 | by 100 no matter which verdict has been assigned. |
---|
| 63 | """ |
---|
| 64 | |
---|
[7186] | 65 | def getPaymentDetails(category, student): |
---|
[7150] | 66 | """Get the payment dates of a student for the payment category |
---|
| 67 | specified. |
---|
| 68 | |
---|
| 69 | """ |
---|
| 70 | |
---|
[7186] | 71 | def getAccommodation_details(student): |
---|
[7150] | 72 | """Determine the accommodation dates of a student. |
---|
| 73 | |
---|
| 74 | """ |
---|
| 75 | |
---|
[7186] | 76 | def selectBed(available_beds): |
---|
[7150] | 77 | """Select a bed from a list of available beds. |
---|
| 78 | |
---|
| 79 | In the standard configuration we select the first bed found, |
---|
| 80 | but can also randomize the selection if we like. |
---|
| 81 | """ |
---|
| 82 | |
---|
[7186] | 83 | def renderPDF(view, subject='', filename='slip.pdf',): |
---|
[7150] | 84 | """Render pdf slips for various pages. |
---|
| 85 | |
---|
| 86 | """ |
---|
| 87 | |
---|
[7819] | 88 | class IStudentsContainer(IKofaObject): |
---|
[7096] | 89 | """A students container contains university students. |
---|
[6692] | 90 | |
---|
| 91 | """ |
---|
| 92 | def addStudent(student): |
---|
| 93 | """Add an IStudent object and subcontainers. |
---|
| 94 | |
---|
| 95 | """ |
---|
| 96 | |
---|
| 97 | def archive(id=None): |
---|
| 98 | """Create on-dist archive of students. |
---|
| 99 | |
---|
| 100 | If id is `None`, all students are archived. |
---|
| 101 | |
---|
| 102 | If id contains a single id string, only the respective |
---|
| 103 | students are archived. |
---|
| 104 | |
---|
| 105 | If id contains a list of id strings all of the respective |
---|
| 106 | students types are saved to disk. |
---|
| 107 | """ |
---|
| 108 | |
---|
| 109 | def clear(id=None, archive=True): |
---|
| 110 | """Remove students of type given by 'id'. |
---|
| 111 | |
---|
| 112 | Optionally archive the students. |
---|
| 113 | |
---|
| 114 | If id is `None`, all students are archived. |
---|
| 115 | |
---|
| 116 | If id contains a single id string, only the respective |
---|
| 117 | students are archived. |
---|
| 118 | |
---|
| 119 | If id contains a list of id strings all of the respective |
---|
| 120 | student types are saved to disk. |
---|
| 121 | |
---|
| 122 | If `archive` is ``False`` none of the archive-handling is done |
---|
| 123 | and respective students are simply removed from the |
---|
| 124 | database. |
---|
| 125 | """ |
---|
| 126 | |
---|
[7819] | 127 | class IStudentNavigation(IKofaObject): |
---|
[6642] | 128 | """Interface needed for student navigation. |
---|
[7150] | 129 | |
---|
[6642] | 130 | """ |
---|
| 131 | def getStudent(): |
---|
| 132 | """Return student object. |
---|
[7150] | 133 | |
---|
[6642] | 134 | """ |
---|
| 135 | |
---|
[7819] | 136 | class IStudentBase(IKofaObject): |
---|
[6631] | 137 | """Representation of student base data. |
---|
[7150] | 138 | |
---|
[6621] | 139 | """ |
---|
[7062] | 140 | history = Attribute('Object history, a list of messages') |
---|
[6637] | 141 | state = Attribute('Returns the registration state of a student') |
---|
[6699] | 142 | password = Attribute('Encrypted password of a student') |
---|
[7203] | 143 | certcode = Attribute('The certificate code of any chosen study course') |
---|
| 144 | depcode = Attribute('The department code of any chosen study course') |
---|
| 145 | faccode = Attribute('The faculty code of any chosen study course') |
---|
[7062] | 146 | current_session = Attribute('The current session of the student') |
---|
[7641] | 147 | current_mode = Attribute('The current mode of the student') |
---|
[7364] | 148 | fullname = Attribute('All name parts separated by hyphens') |
---|
| 149 | display_fullname = Attribute('The fullname of an applicant') |
---|
[6637] | 150 | |
---|
| 151 | def loggerInfo(ob_class, comment): |
---|
[7150] | 152 | """Adds an INFO message to the log file. |
---|
| 153 | |
---|
[6637] | 154 | """ |
---|
| 155 | |
---|
[6665] | 156 | student_id = schema.TextLine( |
---|
[7723] | 157 | title = _(u'Student Id'), |
---|
[6849] | 158 | required = False, |
---|
[6665] | 159 | ) |
---|
| 160 | |
---|
[7357] | 161 | firstname = schema.TextLine( |
---|
[7723] | 162 | title = _(u'First Name'), |
---|
[6621] | 163 | required = True, |
---|
| 164 | ) |
---|
| 165 | |
---|
[7357] | 166 | middlename = schema.TextLine( |
---|
[7723] | 167 | title = _(u'Middle Name'), |
---|
[7357] | 168 | required = False, |
---|
| 169 | ) |
---|
| 170 | |
---|
| 171 | lastname = schema.TextLine( |
---|
[7723] | 172 | title = _(u'Last Name (Surname)'), |
---|
[7357] | 173 | required = True, |
---|
| 174 | ) |
---|
| 175 | |
---|
[6996] | 176 | sex = schema.Choice( |
---|
[7723] | 177 | title = _(u'Sex'), |
---|
[6996] | 178 | source = GenderSource(), |
---|
| 179 | required = True, |
---|
| 180 | ) |
---|
| 181 | |
---|
[6788] | 182 | reg_number = TextLineChoice( |
---|
[7723] | 183 | title = _(u'Registration Number'), |
---|
[6696] | 184 | required = True, |
---|
| 185 | readonly = False, |
---|
[6788] | 186 | source = contextual_reg_num_source, |
---|
[6696] | 187 | ) |
---|
| 188 | |
---|
[6788] | 189 | matric_number = TextLineChoice( |
---|
[7723] | 190 | title = _(u'Matriculation Number'), |
---|
[6750] | 191 | required = False, |
---|
| 192 | readonly = False, |
---|
[6788] | 193 | source = contextual_mat_num_source, |
---|
[6750] | 194 | ) |
---|
| 195 | |
---|
[6769] | 196 | adm_code = schema.TextLine( |
---|
[7723] | 197 | title = _(u'PWD Activation Code'), |
---|
[6769] | 198 | required = False, |
---|
| 199 | readonly = True, |
---|
| 200 | ) |
---|
| 201 | |
---|
[7133] | 202 | email = schema.ASCIILine( |
---|
[7723] | 203 | title = _(u'Email'), |
---|
[7133] | 204 | required = False, |
---|
| 205 | constraint=validate_email, |
---|
| 206 | ) |
---|
[7325] | 207 | phone = schema.TextLine( |
---|
[7723] | 208 | title = _(u'Phone'), |
---|
[7331] | 209 | description = u'', |
---|
[7133] | 210 | required = False, |
---|
| 211 | ) |
---|
| 212 | |
---|
[7819] | 213 | class IStudentClearance(IKofaObject): |
---|
[6631] | 214 | """Representation of student clearance data. |
---|
[7150] | 215 | |
---|
[6631] | 216 | """ |
---|
| 217 | date_of_birth = schema.Date( |
---|
[7723] | 218 | title = _(u'Date of Birth'), |
---|
[6631] | 219 | required = True, |
---|
| 220 | ) |
---|
| 221 | |
---|
[6695] | 222 | clearance_locked = schema.Bool( |
---|
[7723] | 223 | title = _(u'Clearance form locked'), |
---|
[6695] | 224 | default = False, |
---|
| 225 | ) |
---|
| 226 | |
---|
[6769] | 227 | clr_code = schema.TextLine( |
---|
[7723] | 228 | title = _(u'CLR Activation Code'), |
---|
[6769] | 229 | required = False, |
---|
| 230 | readonly = True, |
---|
| 231 | ) |
---|
| 232 | |
---|
[7523] | 233 | nationality = schema.Choice( |
---|
| 234 | source = nats_vocab, |
---|
[7723] | 235 | title = _(u'Nationality'), |
---|
[7523] | 236 | default = 'nigeria', |
---|
[7983] | 237 | required = False, |
---|
[7523] | 238 | ) |
---|
| 239 | |
---|
[7819] | 240 | class IStudentPersonal(IKofaObject): |
---|
[6631] | 241 | """Representation of student personal data. |
---|
[7150] | 242 | |
---|
[6631] | 243 | """ |
---|
[6651] | 244 | perm_address = schema.Text( |
---|
[7723] | 245 | title = _(u'Permanent Address'), |
---|
[6631] | 246 | required = False, |
---|
| 247 | ) |
---|
| 248 | |
---|
| 249 | class IStudent(IStudentBase,IStudentClearance,IStudentPersonal): |
---|
| 250 | """Representation of a student. |
---|
[7150] | 251 | |
---|
[6631] | 252 | """ |
---|
| 253 | |
---|
[6849] | 254 | class IStudentUpdateByRegNo(IStudent): |
---|
| 255 | """Representation of a student. Skip regular reg_number validation. |
---|
[7150] | 256 | |
---|
[6849] | 257 | """ |
---|
| 258 | reg_number = schema.TextLine( |
---|
[7723] | 259 | title = _(u'Registration Number'), |
---|
[6849] | 260 | required = False, |
---|
| 261 | ) |
---|
| 262 | |
---|
| 263 | class IStudentUpdateByMatricNo(IStudent): |
---|
| 264 | """Representation of a student. Skip regular matric_number validation. |
---|
[7150] | 265 | |
---|
[6849] | 266 | """ |
---|
| 267 | matric_number = schema.TextLine( |
---|
[7723] | 268 | title = _(u'Matriculation Number'), |
---|
[6849] | 269 | required = False, |
---|
| 270 | ) |
---|
| 271 | |
---|
[7819] | 272 | class IStudentStudyCourse(IKofaObject): |
---|
[6633] | 273 | """A container for student study levels. |
---|
| 274 | |
---|
| 275 | """ |
---|
[6648] | 276 | certificate = schema.Choice( |
---|
[7723] | 277 | title = _(u'Certificate'), |
---|
[6648] | 278 | source = CertificateSource(), |
---|
[7209] | 279 | required = False, |
---|
[6633] | 280 | ) |
---|
[6635] | 281 | |
---|
[6996] | 282 | entry_mode = schema.Choice( |
---|
[7723] | 283 | title = _(u'Entry Mode'), |
---|
[7681] | 284 | source = StudyModeSource(), |
---|
[6996] | 285 | required = True, |
---|
| 286 | readonly = False, |
---|
| 287 | ) |
---|
| 288 | |
---|
| 289 | entry_session = schema.Choice( |
---|
[7723] | 290 | title = _(u'Entry Session'), |
---|
[6996] | 291 | source = academic_sessions_vocab, |
---|
[7425] | 292 | #default = datetime.now().year, |
---|
[6996] | 293 | required = True, |
---|
| 294 | readonly = False, |
---|
| 295 | ) |
---|
| 296 | |
---|
[6724] | 297 | current_session = schema.Choice( |
---|
[7723] | 298 | title = _(u'Current Session'), |
---|
[6744] | 299 | source = academic_sessions_vocab, |
---|
[6724] | 300 | required = True, |
---|
[6996] | 301 | readonly = False, |
---|
[6724] | 302 | ) |
---|
| 303 | |
---|
| 304 | current_level = schema.Choice( |
---|
[7723] | 305 | title = _(u'Current Level'), |
---|
[6725] | 306 | source = StudyLevelSource(), |
---|
| 307 | required = False, |
---|
[6996] | 308 | readonly = False, |
---|
[6724] | 309 | ) |
---|
| 310 | |
---|
| 311 | current_verdict = schema.Choice( |
---|
[7723] | 312 | title = _(u'Current Verdict'), |
---|
[7619] | 313 | source = VerdictSource(), |
---|
[6804] | 314 | default = '0', |
---|
[6725] | 315 | required = False, |
---|
[6724] | 316 | ) |
---|
| 317 | |
---|
| 318 | previous_verdict = schema.Choice( |
---|
[7723] | 319 | title = _(u'Previous Verdict'), |
---|
[7619] | 320 | source = VerdictSource(), |
---|
[6805] | 321 | default = '0', |
---|
[6725] | 322 | required = False, |
---|
[6724] | 323 | ) |
---|
| 324 | |
---|
[7951] | 325 | class IStudentVerdictUpdate(IKofaObject): |
---|
| 326 | """A interface for verdict imports. |
---|
| 327 | |
---|
| 328 | """ |
---|
| 329 | |
---|
| 330 | current_verdict = schema.Choice( |
---|
| 331 | title = _(u'Current Verdict'), |
---|
| 332 | source = VerdictSource(), |
---|
| 333 | required = True, |
---|
| 334 | ) |
---|
| 335 | |
---|
| 336 | current_session = schema.Choice( |
---|
| 337 | title = _(u'Current Session'), |
---|
| 338 | source = academic_sessions_vocab, |
---|
| 339 | required = True, |
---|
| 340 | ) |
---|
| 341 | |
---|
| 342 | current_level = schema.Choice( |
---|
| 343 | title = _(u'Current Level'), |
---|
| 344 | source = StudyLevelSource(), |
---|
| 345 | required = True, |
---|
| 346 | ) |
---|
| 347 | |
---|
[7819] | 348 | class IStudentStudyLevel(IKofaObject): |
---|
[6774] | 349 | """A container for course tickets. |
---|
| 350 | |
---|
| 351 | """ |
---|
| 352 | level = Attribute('The level code') |
---|
[6793] | 353 | validation_date = Attribute('The date of validation') |
---|
| 354 | validated_by = Attribute('User Id of course adviser') |
---|
[6774] | 355 | |
---|
[6793] | 356 | level_session = schema.Choice( |
---|
[7723] | 357 | title = _(u'Session'), |
---|
[6793] | 358 | source = academic_sessions_vocab, |
---|
| 359 | required = True, |
---|
| 360 | ) |
---|
[6781] | 361 | |
---|
[6793] | 362 | level_verdict = schema.Choice( |
---|
[7723] | 363 | title = _(u'Verdict'), |
---|
[7619] | 364 | source = VerdictSource(), |
---|
[6805] | 365 | default = '0', |
---|
[6793] | 366 | required = False, |
---|
| 367 | ) |
---|
| 368 | |
---|
[7819] | 369 | class ICourseTicket(IKofaObject): |
---|
[6781] | 370 | """A course ticket. |
---|
| 371 | |
---|
| 372 | """ |
---|
[6783] | 373 | code = Attribute('code of the original course') |
---|
| 374 | title = Attribute('title of the original course') |
---|
| 375 | credits = Attribute('credits of the original course') |
---|
| 376 | passmark = Attribute('passmark of the original course') |
---|
| 377 | semester = Attribute('semester of the original course') |
---|
[7304] | 378 | fcode = Attribute('faculty code of the original course') |
---|
| 379 | dcode = Attribute('department code of the original course') |
---|
[6781] | 380 | |
---|
[7665] | 381 | mandatory = schema.Bool( |
---|
[7723] | 382 | title = _(u'Mandatory'), |
---|
[6795] | 383 | default = False, |
---|
| 384 | required = False, |
---|
| 385 | readonly = False, |
---|
| 386 | ) |
---|
| 387 | |
---|
[6781] | 388 | score = schema.Int( |
---|
[7723] | 389 | title = _(u'Score'), |
---|
[6781] | 390 | default = 0, |
---|
| 391 | required = False, |
---|
| 392 | readonly = False, |
---|
| 393 | ) |
---|
| 394 | |
---|
[6806] | 395 | automatic = schema.Bool( |
---|
[7723] | 396 | title = _(u'Automatical Creation'), |
---|
[6806] | 397 | default = False, |
---|
| 398 | required = False, |
---|
| 399 | readonly = True, |
---|
| 400 | ) |
---|
| 401 | |
---|
[7661] | 402 | carry_over = schema.Bool( |
---|
[7723] | 403 | title = _(u'Carry-over Course'), |
---|
[7661] | 404 | default = False, |
---|
| 405 | required = False, |
---|
| 406 | readonly = False, |
---|
| 407 | ) |
---|
| 408 | |
---|
[7633] | 409 | def getLevel(): |
---|
| 410 | """Returns the id of the level the ticket has been added to. |
---|
| 411 | """ |
---|
| 412 | |
---|
| 413 | def getLevelSession(): |
---|
| 414 | """Returns the session of the level the ticket has been added to. |
---|
| 415 | """ |
---|
| 416 | |
---|
[6795] | 417 | class ICourseTicketAdd(ICourseTicket): |
---|
[7150] | 418 | """An interface for adding course tickets. |
---|
[6795] | 419 | |
---|
| 420 | """ |
---|
| 421 | course = schema.Choice( |
---|
[7723] | 422 | title = _(u'Course'), |
---|
[6795] | 423 | source = CourseSource(), |
---|
| 424 | readonly = False, |
---|
| 425 | ) |
---|
| 426 | |
---|
[7819] | 427 | class IStudentAccommodation(IKofaObject): |
---|
[6635] | 428 | """A container for student accommodation objects. |
---|
| 429 | |
---|
| 430 | """ |
---|
| 431 | |
---|
[7819] | 432 | class IBedTicket(IKofaObject): |
---|
[6989] | 433 | """A ticket for accommodation booking. |
---|
| 434 | |
---|
| 435 | """ |
---|
[6996] | 436 | bed = Attribute('The bed object.') |
---|
| 437 | |
---|
| 438 | bed_coordinates = schema.TextLine( |
---|
[7723] | 439 | title = _(u'Bed Coordinates'), |
---|
[6992] | 440 | required = False, |
---|
[7014] | 441 | readonly = False, |
---|
[6992] | 442 | ) |
---|
| 443 | |
---|
[6996] | 444 | bed_type = schema.TextLine( |
---|
[7723] | 445 | title = _(u'Bed Type'), |
---|
[6996] | 446 | required = False, |
---|
[7014] | 447 | readonly = False, |
---|
[6996] | 448 | ) |
---|
| 449 | |
---|
[6992] | 450 | booking_session = schema.Choice( |
---|
[7723] | 451 | title = _(u'Session'), |
---|
[6992] | 452 | source = academic_sessions_vocab, |
---|
| 453 | required = True, |
---|
[7014] | 454 | readonly = True, |
---|
[6992] | 455 | ) |
---|
| 456 | |
---|
| 457 | booking_date = schema.Datetime( |
---|
[7723] | 458 | title = _(u'Booking Date'), |
---|
[6992] | 459 | required = False, |
---|
[7014] | 460 | readonly = True, |
---|
[6992] | 461 | ) |
---|
| 462 | |
---|
| 463 | booking_code = schema.TextLine( |
---|
[7723] | 464 | title = _(u'Booking Activation Code'), |
---|
[6992] | 465 | required = False, |
---|
[7014] | 466 | readonly = True, |
---|
[6992] | 467 | ) |
---|
| 468 | |
---|
[6994] | 469 | def getSessionString(): |
---|
[7633] | 470 | """Returns the title of academic_sessions_vocab term. |
---|
[7150] | 471 | |
---|
[6994] | 472 | """ |
---|
[6992] | 473 | |
---|
[6860] | 474 | class IStudentPaymentsContainer(IPaymentsContainer): |
---|
[6635] | 475 | """A container for student payment objects. |
---|
| 476 | |
---|
| 477 | """ |
---|
| 478 | |
---|
[6877] | 479 | class IStudentOnlinePayment(IOnlinePayment): |
---|
| 480 | """A student payment via payment gateways. |
---|
| 481 | |
---|
| 482 | """ |
---|
| 483 | p_session = schema.Choice( |
---|
[7723] | 484 | title = _(u'Payment Session'), |
---|
[6877] | 485 | source = academic_sessions_vocab, |
---|
| 486 | required = False, |
---|
| 487 | ) |
---|
| 488 | |
---|
| 489 | IStudentOnlinePayment['p_session'].order = IStudentOnlinePayment[ |
---|
| 490 | 'p_item'].order |
---|
| 491 | |
---|
[7819] | 492 | class IStudentChangePassword(IKofaObject): |
---|
[7369] | 493 | """Interface needed for change pasword page. |
---|
| 494 | |
---|
| 495 | """ |
---|
| 496 | |
---|
| 497 | reg_number = schema.TextLine( |
---|
[7723] | 498 | title = _(u'Registration Number'), |
---|
[7369] | 499 | required = True, |
---|
| 500 | readonly = False, |
---|
| 501 | ) |
---|
| 502 | |
---|
| 503 | email = schema.ASCIILine( |
---|
[7723] | 504 | title = _(u'Email Address'), |
---|
[7369] | 505 | required = True, |
---|
| 506 | constraint=validate_email, |
---|
| 507 | ) |
---|