[7191] | 1 | ## $Id: browser.py 7520 2012-01-27 16:24:09Z henrik $ |
---|
| 2 | ## |
---|
[6621] | 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 | """UI components for students and related components. |
---|
| 19 | """ |
---|
[7006] | 20 | import sys |
---|
[6621] | 21 | import grok |
---|
[7275] | 22 | from urllib import urlencode |
---|
[6869] | 23 | from time import time |
---|
[7256] | 24 | from datetime import datetime |
---|
[7015] | 25 | from zope.event import notify |
---|
[6996] | 26 | from zope.catalog.interfaces import ICatalog |
---|
[7386] | 27 | from zope.component import queryUtility, getUtility, createObject |
---|
| 28 | from zope.formlib.textwidgets import BytesDisplayWidget |
---|
[7369] | 29 | #from hurry.query import Eq |
---|
| 30 | #from hurry.query.query import Query |
---|
[6621] | 31 | from hurry.workflow.interfaces import IWorkflowInfo, IWorkflowState |
---|
[6936] | 32 | from waeup.sirp.accesscodes import ( |
---|
[6937] | 33 | invalidate_accesscode, get_access_code, create_accesscode) |
---|
[6621] | 34 | from waeup.sirp.accesscodes.workflow import USED |
---|
| 35 | from waeup.sirp.browser import ( |
---|
[7321] | 36 | SIRPPage, SIRPEditFormPage, SIRPAddFormPage, SIRPDisplayFormPage, |
---|
[7369] | 37 | ContactAdminForm, SIRPForm) |
---|
[7459] | 38 | from waeup.sirp.browser.interfaces import ICaptchaManager, IBreadcrumbIgnorable |
---|
[6621] | 39 | from waeup.sirp.browser.breadcrumbs import Breadcrumb |
---|
[7329] | 40 | from waeup.sirp.browser.resources import datepicker, datatable, tabs, warning |
---|
[6621] | 41 | from waeup.sirp.browser.viewlets import ( |
---|
[7184] | 42 | ManageActionButton, AddActionButton) |
---|
[7459] | 43 | from waeup.sirp.browser.layout import jsaction, action, UtilityView |
---|
[7147] | 44 | from waeup.sirp.interfaces import ( |
---|
[7358] | 45 | ISIRPObject, IUserAccount, IExtFileStore, IPasswordValidator, IContactForm, |
---|
[7369] | 46 | ISIRPUtils, IUniversity) |
---|
[6621] | 47 | from waeup.sirp.widgets.datewidget import ( |
---|
[6869] | 48 | FriendlyDateWidget, FriendlyDateDisplayWidget, |
---|
| 49 | FriendlyDatetimeDisplayWidget) |
---|
[6912] | 50 | from waeup.sirp.university.vocabularies import study_modes |
---|
[6621] | 51 | from waeup.sirp.students.interfaces import ( |
---|
[7144] | 52 | IStudentsContainer, IStudent, IStudentClearance, |
---|
[6859] | 53 | IStudentPersonal, IStudentBase, IStudentStudyCourse, |
---|
[6774] | 54 | IStudentAccommodation, IStudentClearanceEdit, IStudentStudyLevel, |
---|
[6877] | 55 | ICourseTicket, ICourseTicketAdd, IStudentPaymentsContainer, |
---|
[7369] | 56 | IStudentOnlinePayment, IBedTicket, IStudentsUtils, IStudentChangePassword |
---|
[6621] | 57 | ) |
---|
[6626] | 58 | from waeup.sirp.students.catalog import search |
---|
[6992] | 59 | from waeup.sirp.students.workflow import ( |
---|
[7158] | 60 | CLEARANCE, REQUESTED, RETURNING, CLEARED, REGISTERED, VALIDATED) |
---|
[6795] | 61 | from waeup.sirp.students.studylevel import StudentStudyLevel, CourseTicket |
---|
[6775] | 62 | from waeup.sirp.students.vocabularies import StudyLevelSource |
---|
[6820] | 63 | from waeup.sirp.browser.resources import toggleall |
---|
[7340] | 64 | from waeup.sirp.applicants.interfaces import IApplicantBaseData |
---|
[6997] | 65 | from waeup.sirp.hostels.hostel import NOT_OCCUPIED |
---|
[7459] | 66 | from waeup.sirp.utils.helpers import get_current_principal |
---|
[6621] | 67 | |
---|
[6943] | 68 | def write_log_message(view, message): |
---|
| 69 | ob_class = view.__implemented__.__name__.replace('waeup.sirp.','') |
---|
| 70 | view.context.getStudent().loggerInfo(ob_class, message) |
---|
| 71 | return |
---|
| 72 | |
---|
[7133] | 73 | # Save function used for save methods in pages |
---|
[6762] | 74 | def msave(view, **data): |
---|
| 75 | changed_fields = view.applyData(view.context, **data) |
---|
[6771] | 76 | # Turn list of lists into single list |
---|
| 77 | if changed_fields: |
---|
| 78 | changed_fields = reduce(lambda x,y: x+y, changed_fields.values()) |
---|
[7205] | 79 | # Inform catalog if certificate has changed |
---|
| 80 | # (applyData does this only for the context) |
---|
| 81 | if 'certificate' in changed_fields: |
---|
| 82 | notify(grok.ObjectModifiedEvent(view.context.getStudent())) |
---|
[6771] | 83 | fields_string = ' + '.join(changed_fields) |
---|
[6762] | 84 | view.flash('Form has been saved.') |
---|
| 85 | if fields_string: |
---|
[7108] | 86 | write_log_message(view, 'saved: %s' % fields_string) |
---|
[6762] | 87 | return |
---|
| 88 | |
---|
[7145] | 89 | def emit_lock_message(view): |
---|
[7133] | 90 | view.flash('The requested form is locked (read-only).') |
---|
| 91 | view.redirect(view.url(view.context)) |
---|
| 92 | return |
---|
| 93 | |
---|
[6629] | 94 | class StudentsBreadcrumb(Breadcrumb): |
---|
| 95 | """A breadcrumb for the students container. |
---|
| 96 | """ |
---|
| 97 | grok.context(IStudentsContainer) |
---|
[7318] | 98 | title = 'Students' |
---|
[7459] | 99 | #grok.implements(IBreadcrumbIgnorable) |
---|
[6629] | 100 | |
---|
[7459] | 101 | @property |
---|
| 102 | def target(self): |
---|
| 103 | user = get_current_principal() |
---|
| 104 | #import pdb; pdb.set_trace() |
---|
| 105 | if getattr(user, 'user_type', None) == 'student': |
---|
| 106 | return None |
---|
| 107 | return self.viewname |
---|
| 108 | |
---|
[6818] | 109 | class StudentBreadcrumb(Breadcrumb): |
---|
| 110 | """A breadcrumb for the student container. |
---|
| 111 | """ |
---|
| 112 | grok.context(IStudent) |
---|
| 113 | |
---|
| 114 | def title(self): |
---|
[7364] | 115 | return self.context.display_fullname |
---|
[6818] | 116 | |
---|
[6635] | 117 | class SudyCourseBreadcrumb(Breadcrumb): |
---|
| 118 | """A breadcrumb for the student study course. |
---|
| 119 | """ |
---|
| 120 | grok.context(IStudentStudyCourse) |
---|
[7318] | 121 | title = 'Study Course' |
---|
[6635] | 122 | |
---|
| 123 | class PaymentsBreadcrumb(Breadcrumb): |
---|
| 124 | """A breadcrumb for the student payments folder. |
---|
| 125 | """ |
---|
[6859] | 126 | grok.context(IStudentPaymentsContainer) |
---|
[7318] | 127 | title = 'Payments' |
---|
[6635] | 128 | |
---|
[6870] | 129 | class OnlinePaymentBreadcrumb(Breadcrumb): |
---|
[7251] | 130 | """A breadcrumb for payments. |
---|
[6870] | 131 | """ |
---|
[6877] | 132 | grok.context(IStudentOnlinePayment) |
---|
[6870] | 133 | |
---|
| 134 | @property |
---|
| 135 | def title(self): |
---|
| 136 | return self.context.p_id |
---|
| 137 | |
---|
[6635] | 138 | class AccommodationBreadcrumb(Breadcrumb): |
---|
| 139 | """A breadcrumb for the student accommodation folder. |
---|
| 140 | """ |
---|
| 141 | grok.context(IStudentAccommodation) |
---|
[7318] | 142 | title = 'Accommodation' |
---|
[6635] | 143 | |
---|
[6994] | 144 | class BedTicketBreadcrumb(Breadcrumb): |
---|
| 145 | """A breadcrumb for bed tickets. |
---|
| 146 | """ |
---|
| 147 | grok.context(IBedTicket) |
---|
[7009] | 148 | |
---|
[6994] | 149 | @property |
---|
| 150 | def title(self): |
---|
| 151 | return 'Bed Ticket %s' % self.context.getSessionString() |
---|
| 152 | |
---|
[6776] | 153 | class StudyLevelBreadcrumb(Breadcrumb): |
---|
| 154 | """A breadcrumb for course lists. |
---|
| 155 | """ |
---|
| 156 | grok.context(IStudentStudyLevel) |
---|
| 157 | |
---|
| 158 | @property |
---|
| 159 | def title(self): |
---|
| 160 | return self.context.level_title |
---|
| 161 | |
---|
[7321] | 162 | class StudentsContainerPage(SIRPPage): |
---|
[6626] | 163 | """The standard view for student containers. |
---|
[6621] | 164 | """ |
---|
| 165 | grok.context(IStudentsContainer) |
---|
| 166 | grok.name('index') |
---|
[7240] | 167 | grok.require('waeup.viewStudentsContainer') |
---|
[6695] | 168 | grok.template('containerpage') |
---|
[6654] | 169 | label = 'Student Section' |
---|
[6642] | 170 | pnav = 4 |
---|
[6621] | 171 | |
---|
[6626] | 172 | def update(self, *args, **kw): |
---|
| 173 | datatable.need() |
---|
| 174 | form = self.request.form |
---|
| 175 | self.hitlist = [] |
---|
| 176 | if 'searchterm' in form and form['searchterm']: |
---|
| 177 | self.searchterm = form['searchterm'] |
---|
| 178 | self.searchtype = form['searchtype'] |
---|
| 179 | elif 'old_searchterm' in form: |
---|
| 180 | self.searchterm = form['old_searchterm'] |
---|
| 181 | self.searchtype = form['old_searchtype'] |
---|
| 182 | else: |
---|
| 183 | if 'search' in form: |
---|
| 184 | self.flash('Empty search string.') |
---|
| 185 | return |
---|
[7068] | 186 | if self.searchtype == 'current_session': |
---|
| 187 | self.searchterm = int(self.searchterm) |
---|
[6626] | 188 | self.hitlist = search(query=self.searchterm, |
---|
| 189 | searchtype=self.searchtype, view=self) |
---|
| 190 | if not self.hitlist: |
---|
| 191 | self.flash('No student found.') |
---|
| 192 | return |
---|
| 193 | |
---|
[7321] | 194 | class SetPasswordPage(SIRPPage): |
---|
| 195 | grok.context(ISIRPObject) |
---|
[6699] | 196 | grok.name('setpassword') |
---|
[7369] | 197 | grok.require('waeup.Anonymous') |
---|
[6774] | 198 | grok.template('setpassword') |
---|
[6699] | 199 | label = 'Set password for first-time login' |
---|
[6758] | 200 | ac_prefix = 'PWD' |
---|
[6715] | 201 | pnav = 0 |
---|
[6699] | 202 | |
---|
| 203 | def update(self, SUBMIT=None): |
---|
[6758] | 204 | self.reg_number = self.request.form.get('reg_number', None) |
---|
| 205 | self.ac_series = self.request.form.get('ac_series', None) |
---|
| 206 | self.ac_number = self.request.form.get('ac_number', None) |
---|
[6756] | 207 | |
---|
[6699] | 208 | if SUBMIT is None: |
---|
| 209 | return |
---|
| 210 | hitlist = search(query=self.reg_number, |
---|
| 211 | searchtype='reg_number', view=self) |
---|
| 212 | if not hitlist: |
---|
| 213 | self.flash('No student found.') |
---|
| 214 | return |
---|
| 215 | if len(hitlist) != 1: # Cannot happen but anyway |
---|
| 216 | self.flash('More than one student found.') |
---|
| 217 | return |
---|
[6704] | 218 | student = hitlist[0].context |
---|
| 219 | self.student_id = student.student_id |
---|
| 220 | student_pw = student.password |
---|
[6758] | 221 | pin = '%s-%s-%s' % (self.ac_prefix, self.ac_series, self.ac_number) |
---|
[6699] | 222 | code = get_access_code(pin) |
---|
| 223 | if not code: |
---|
| 224 | self.flash('Access code is invalid.') |
---|
| 225 | return |
---|
[6704] | 226 | if student_pw and pin == student.adm_code: |
---|
| 227 | self.flash('Password has already been set. Your Student Id is %s' |
---|
| 228 | % self.student_id) |
---|
| 229 | return |
---|
| 230 | elif student_pw: |
---|
[6800] | 231 | self.flash('Password has already been set. You are using the wrong Access Code.') |
---|
[6704] | 232 | return |
---|
[6699] | 233 | # Mark pin as used (this also fires a pin related transition) |
---|
| 234 | # and set student password |
---|
| 235 | if code.state == USED: |
---|
| 236 | self.flash('Access code has already been used.') |
---|
| 237 | return |
---|
| 238 | else: |
---|
[6704] | 239 | comment = u"AC invalidated for %s" % self.student_id |
---|
[6699] | 240 | # Here we know that the ac is in state initialized so we do not |
---|
| 241 | # expect an exception |
---|
| 242 | #import pdb; pdb.set_trace() |
---|
| 243 | invalidate_accesscode(pin,comment) |
---|
[6758] | 244 | IUserAccount(student).setPassword(self.ac_number) |
---|
[6769] | 245 | student.adm_code = pin |
---|
[6704] | 246 | self.flash('Password has been set. Your Student Id is %s' |
---|
| 247 | % self.student_id) |
---|
[6699] | 248 | return |
---|
| 249 | |
---|
[6626] | 250 | class StudentsContainerManageActionButton(ManageActionButton): |
---|
[6622] | 251 | grok.order(1) |
---|
| 252 | grok.context(IStudentsContainer) |
---|
| 253 | grok.view(StudentsContainerPage) |
---|
[7136] | 254 | grok.require('waeup.manageStudent') |
---|
[6647] | 255 | text = 'Manage student section' |
---|
[6622] | 256 | |
---|
[6626] | 257 | |
---|
[7321] | 258 | class StudentsContainerManagePage(SIRPPage): |
---|
[6626] | 259 | """The manage page for student containers. |
---|
[6622] | 260 | """ |
---|
| 261 | grok.context(IStudentsContainer) |
---|
| 262 | grok.name('manage') |
---|
[7136] | 263 | grok.require('waeup.manageStudent') |
---|
[6695] | 264 | grok.template('containermanagepage') |
---|
[6642] | 265 | pnav = 4 |
---|
[7466] | 266 | label = 'Manage student section' |
---|
[6622] | 267 | |
---|
[6626] | 268 | def update(self, *args, **kw): |
---|
| 269 | datatable.need() |
---|
[6820] | 270 | toggleall.need() |
---|
[7329] | 271 | warning.need() |
---|
[6626] | 272 | form = self.request.form |
---|
| 273 | self.hitlist = [] |
---|
| 274 | if 'searchterm' in form and form['searchterm']: |
---|
| 275 | self.searchterm = form['searchterm'] |
---|
| 276 | self.searchtype = form['searchtype'] |
---|
| 277 | elif 'old_searchterm' in form: |
---|
| 278 | self.searchterm = form['old_searchterm'] |
---|
| 279 | self.searchtype = form['old_searchtype'] |
---|
| 280 | else: |
---|
| 281 | if 'search' in form: |
---|
| 282 | self.flash('Empty search string.') |
---|
| 283 | return |
---|
| 284 | if not 'entries' in form: |
---|
| 285 | self.hitlist = search(query=self.searchterm, |
---|
| 286 | searchtype=self.searchtype, view=self) |
---|
| 287 | if not self.hitlist: |
---|
| 288 | self.flash('No student found.') |
---|
[7459] | 289 | if 'remove' in form: |
---|
| 290 | self.flash('No item selected.') |
---|
[6626] | 291 | return |
---|
| 292 | entries = form['entries'] |
---|
| 293 | if isinstance(entries, basestring): |
---|
| 294 | entries = [entries] |
---|
| 295 | deleted = [] |
---|
| 296 | for entry in entries: |
---|
| 297 | if 'remove' in form: |
---|
| 298 | del self.context[entry] |
---|
| 299 | deleted.append(entry) |
---|
| 300 | self.hitlist = search(query=self.searchterm, |
---|
| 301 | searchtype=self.searchtype, view=self) |
---|
| 302 | if len(deleted): |
---|
| 303 | self.flash('Successfully removed: %s' % ', '.join(deleted)) |
---|
[6622] | 304 | return |
---|
| 305 | |
---|
[6626] | 306 | class StudentsContainerAddActionButton(AddActionButton): |
---|
| 307 | grok.order(1) |
---|
| 308 | grok.context(IStudentsContainer) |
---|
| 309 | grok.view(StudentsContainerManagePage) |
---|
[7136] | 310 | grok.require('waeup.manageStudent') |
---|
[6626] | 311 | text = 'Add student' |
---|
| 312 | target = 'addstudent' |
---|
| 313 | |
---|
[7321] | 314 | class StudentAddFormPage(SIRPAddFormPage): |
---|
[6622] | 315 | """Add-form to add a student. |
---|
| 316 | """ |
---|
| 317 | grok.context(IStudentsContainer) |
---|
[7136] | 318 | grok.require('waeup.manageStudent') |
---|
[6622] | 319 | grok.name('addstudent') |
---|
[7357] | 320 | form_fields = grok.AutoFields(IStudent).select( |
---|
[7520] | 321 | 'firstname', 'middlename', 'lastname', 'reg_number') |
---|
[6622] | 322 | label = 'Add student' |
---|
[6642] | 323 | pnav = 4 |
---|
[6622] | 324 | |
---|
[7459] | 325 | @action('Create student record', style='primary') |
---|
[6622] | 326 | def addStudent(self, **data): |
---|
| 327 | student = createObject(u'waeup.Student') |
---|
| 328 | self.applyData(student, **data) |
---|
[6652] | 329 | self.context.addStudent(student) |
---|
[6626] | 330 | self.flash('Student record created.') |
---|
[6651] | 331 | self.redirect(self.url(self.context[student.student_id], 'index')) |
---|
[6622] | 332 | return |
---|
| 333 | |
---|
[7321] | 334 | class StudentBaseDisplayFormPage(SIRPDisplayFormPage): |
---|
[6631] | 335 | """ Page to display student base data |
---|
| 336 | """ |
---|
[6622] | 337 | grok.context(IStudent) |
---|
| 338 | grok.name('index') |
---|
[6660] | 339 | grok.require('waeup.viewStudent') |
---|
[6695] | 340 | grok.template('basepage') |
---|
[6756] | 341 | form_fields = grok.AutoFields(IStudentBase).omit('password') |
---|
[6642] | 342 | pnav = 4 |
---|
[6622] | 343 | |
---|
| 344 | @property |
---|
| 345 | def label(self): |
---|
[7364] | 346 | return '%s: Base Data' % self.context.display_fullname |
---|
[6631] | 347 | |
---|
[6699] | 348 | @property |
---|
| 349 | def hasPassword(self): |
---|
| 350 | if self.context.password: |
---|
| 351 | return 'set' |
---|
| 352 | return 'unset' |
---|
| 353 | |
---|
[7229] | 354 | class ContactActionButton(ManageActionButton): |
---|
| 355 | grok.order(4) |
---|
| 356 | grok.context(IStudent) |
---|
| 357 | grok.view(StudentBaseDisplayFormPage) |
---|
| 358 | grok.require('waeup.manageStudent') |
---|
| 359 | icon = 'actionicon_mail.png' |
---|
| 360 | text = 'Send email' |
---|
[7230] | 361 | target = 'contactstudent' |
---|
[7229] | 362 | |
---|
| 363 | class ContactStudentForm(ContactAdminForm): |
---|
| 364 | grok.context(IStudent) |
---|
[7230] | 365 | grok.name('contactstudent') |
---|
[7275] | 366 | grok.require('waeup.viewStudent') |
---|
[7229] | 367 | pnav = 4 |
---|
| 368 | form_fields = grok.AutoFields(IContactForm).select('subject', 'body') |
---|
| 369 | |
---|
[7275] | 370 | def update(self, subject=u''): |
---|
| 371 | self.form_fields.get('subject').field.default = subject |
---|
| 372 | self.subject = subject |
---|
| 373 | return |
---|
| 374 | |
---|
[7229] | 375 | def label(self): |
---|
[7364] | 376 | return u'Send message to %s' % self.context.display_fullname |
---|
[7229] | 377 | |
---|
[7459] | 378 | @action('Send message now', style='primary') |
---|
[7229] | 379 | def send(self, *args, **data): |
---|
[7234] | 380 | try: |
---|
[7403] | 381 | email = self.request.principal.email |
---|
[7234] | 382 | except AttributeError: |
---|
[7403] | 383 | email = self.config.email_admin |
---|
| 384 | usertype = getattr(self.request.principal, |
---|
| 385 | 'user_type', 'system').title() |
---|
[7358] | 386 | sirp_utils = getUtility(ISIRPUtils) |
---|
[7404] | 387 | success = sirp_utils.sendContactForm( |
---|
[7403] | 388 | self.request.principal.title,email, |
---|
| 389 | self.context.display_fullname,self.context.email, |
---|
| 390 | self.request.principal.id,usertype, |
---|
| 391 | self.config.name, |
---|
| 392 | data['body'],data['subject']) |
---|
[7229] | 393 | if success: |
---|
| 394 | self.flash('Your message has been sent.') |
---|
| 395 | else: |
---|
| 396 | self.flash('An smtp server error occurred.') |
---|
| 397 | return |
---|
| 398 | |
---|
[6631] | 399 | class StudentBaseManageActionButton(ManageActionButton): |
---|
| 400 | grok.order(1) |
---|
| 401 | grok.context(IStudent) |
---|
| 402 | grok.view(StudentBaseDisplayFormPage) |
---|
[7136] | 403 | grok.require('waeup.manageStudent') |
---|
[6695] | 404 | text = 'Manage' |
---|
[7133] | 405 | target = 'manage_base' |
---|
[6631] | 406 | |
---|
[7321] | 407 | class StudentBaseManageFormPage(SIRPEditFormPage): |
---|
[7133] | 408 | """ View to manage student base data |
---|
[6631] | 409 | """ |
---|
| 410 | grok.context(IStudent) |
---|
[7133] | 411 | grok.name('manage_base') |
---|
[7136] | 412 | grok.require('waeup.manageStudent') |
---|
[6631] | 413 | form_fields = grok.AutoFields(IStudentBase).omit('student_id') |
---|
[6695] | 414 | grok.template('basemanagepage') |
---|
| 415 | label = 'Manage base data' |
---|
[6642] | 416 | pnav = 4 |
---|
[6631] | 417 | |
---|
[6638] | 418 | def update(self): |
---|
| 419 | datepicker.need() # Enable jQuery datepicker in date fields. |
---|
[7134] | 420 | tabs.need() |
---|
[7490] | 421 | self.tab1 = self.tab2 = '' |
---|
| 422 | qs = self.request.get('QUERY_STRING', '') |
---|
| 423 | if not qs: |
---|
| 424 | qs = 'tab1' |
---|
| 425 | setattr(self, qs, 'active') |
---|
[6638] | 426 | super(StudentBaseManageFormPage, self).update() |
---|
| 427 | self.wf_info = IWorkflowInfo(self.context) |
---|
| 428 | return |
---|
| 429 | |
---|
| 430 | def getTransitions(self): |
---|
| 431 | """Return a list of dicts of allowed transition ids and titles. |
---|
| 432 | |
---|
| 433 | Each list entry provides keys ``name`` and ``title`` for |
---|
| 434 | internal name and (human readable) title of a single |
---|
| 435 | transition. |
---|
| 436 | """ |
---|
| 437 | allowed_transitions = self.wf_info.getManualTransitions() |
---|
| 438 | return [dict(name='', title='No transition')] +[ |
---|
| 439 | dict(name=x, title=y) for x, y in allowed_transitions] |
---|
| 440 | |
---|
[7459] | 441 | @action('Save', style='primary') |
---|
[6638] | 442 | def save(self, **data): |
---|
[6701] | 443 | form = self.request.form |
---|
[6790] | 444 | password = form.get('password', None) |
---|
| 445 | password_ctl = form.get('control_password', None) |
---|
| 446 | if password: |
---|
[7147] | 447 | validator = getUtility(IPasswordValidator) |
---|
| 448 | errors = validator.validate_password(password, password_ctl) |
---|
| 449 | if errors: |
---|
| 450 | self.flash( ' '.join(errors)) |
---|
| 451 | return |
---|
| 452 | changed_fields = self.applyData(self.context, **data) |
---|
[6771] | 453 | # Turn list of lists into single list |
---|
| 454 | if changed_fields: |
---|
| 455 | changed_fields = reduce(lambda x,y: x+y, changed_fields.values()) |
---|
[7147] | 456 | else: |
---|
| 457 | changed_fields = [] |
---|
| 458 | if password: |
---|
| 459 | # Now we know that the form has no errors and can set password ... |
---|
| 460 | IUserAccount(self.context).setPassword(password) |
---|
| 461 | changed_fields.append('password') |
---|
| 462 | # ... and execute transition |
---|
[6638] | 463 | if form.has_key('transition') and form['transition']: |
---|
| 464 | transition_id = form['transition'] |
---|
| 465 | self.wf_info.fireTransition(transition_id) |
---|
[7147] | 466 | fields_string = ' + '.join(changed_fields) |
---|
[6638] | 467 | self.flash('Form has been saved.') |
---|
[6644] | 468 | if fields_string: |
---|
[6943] | 469 | write_log_message(self, 'saved: % s' % fields_string) |
---|
[6638] | 470 | return |
---|
| 471 | |
---|
[7321] | 472 | class StudentClearanceDisplayFormPage(SIRPDisplayFormPage): |
---|
[6631] | 473 | """ Page to display student clearance data |
---|
| 474 | """ |
---|
| 475 | grok.context(IStudent) |
---|
| 476 | grok.name('view_clearance') |
---|
[6660] | 477 | grok.require('waeup.viewStudent') |
---|
[6695] | 478 | form_fields = grok.AutoFields(IStudentClearance).omit('clearance_locked') |
---|
[6650] | 479 | form_fields['date_of_birth'].custom_widget = FriendlyDateDisplayWidget('le') |
---|
[6642] | 480 | pnav = 4 |
---|
[6631] | 481 | |
---|
| 482 | @property |
---|
| 483 | def label(self): |
---|
[7364] | 484 | return '%s: Clearance Data' % self.context.display_fullname |
---|
[6631] | 485 | |
---|
| 486 | class StudentClearanceManageActionButton(ManageActionButton): |
---|
| 487 | grok.order(1) |
---|
| 488 | grok.context(IStudent) |
---|
| 489 | grok.view(StudentClearanceDisplayFormPage) |
---|
[7136] | 490 | grok.require('waeup.manageStudent') |
---|
[6695] | 491 | text = 'Manage' |
---|
[6631] | 492 | target = 'edit_clearance' |
---|
| 493 | |
---|
[7158] | 494 | class StudentClearActionButton(ManageActionButton): |
---|
| 495 | grok.order(2) |
---|
| 496 | grok.context(IStudent) |
---|
| 497 | grok.view(StudentClearanceDisplayFormPage) |
---|
| 498 | grok.require('waeup.clearStudent') |
---|
| 499 | text = 'Clear student' |
---|
| 500 | target = 'clear' |
---|
[7160] | 501 | icon = 'actionicon_accept.png' |
---|
[7158] | 502 | |
---|
| 503 | @property |
---|
| 504 | def target_url(self): |
---|
| 505 | if self.context.state != REQUESTED: |
---|
| 506 | return '' |
---|
| 507 | return self.view.url(self.view.context, self.target) |
---|
| 508 | |
---|
| 509 | class StudentRejectClearanceActionButton(ManageActionButton): |
---|
[7277] | 510 | grok.order(3) |
---|
[7158] | 511 | grok.context(IStudent) |
---|
| 512 | grok.view(StudentClearanceDisplayFormPage) |
---|
| 513 | grok.require('waeup.clearStudent') |
---|
| 514 | text = 'Reject clearance' |
---|
| 515 | target = 'reject_clearance' |
---|
[7160] | 516 | icon = 'actionicon_reject.png' |
---|
[7158] | 517 | |
---|
| 518 | @property |
---|
| 519 | def target_url(self): |
---|
| 520 | if self.context.state not in (REQUESTED, CLEARED): |
---|
| 521 | return '' |
---|
| 522 | return self.view.url(self.view.context, self.target) |
---|
| 523 | |
---|
[7277] | 524 | class ClearanceSlipActionButton(ManageActionButton): |
---|
| 525 | grok.order(4) |
---|
| 526 | grok.context(IStudent) |
---|
| 527 | grok.view(StudentClearanceDisplayFormPage) |
---|
| 528 | grok.require('waeup.viewStudent') |
---|
| 529 | icon = 'actionicon_pdf.png' |
---|
| 530 | text = 'Download clearance slip' |
---|
| 531 | target = 'clearance.pdf' |
---|
| 532 | |
---|
| 533 | class ExportPDFClearanceSlipPage(grok.View): |
---|
| 534 | """Deliver a PDF slip of the context. |
---|
| 535 | """ |
---|
| 536 | grok.context(IStudent) |
---|
| 537 | grok.name('clearance.pdf') |
---|
| 538 | grok.require('waeup.viewStudent') |
---|
| 539 | form_fields = grok.AutoFields(IStudentClearance).omit('clearance_locked') |
---|
[7318] | 540 | form_fields['date_of_birth'].custom_widget = FriendlyDateDisplayWidget('le') |
---|
[7277] | 541 | prefix = 'form' |
---|
[7318] | 542 | title = 'Clearance Data' |
---|
[7277] | 543 | |
---|
| 544 | @property |
---|
| 545 | def label(self): |
---|
[7364] | 546 | return 'Clearance Slip of %s' % self.context.display_fullname |
---|
[7277] | 547 | |
---|
| 548 | def render(self): |
---|
| 549 | studentview = StudentBaseDisplayFormPage(self.context.getStudent(), |
---|
| 550 | self.request) |
---|
| 551 | students_utils = getUtility(IStudentsUtils) |
---|
| 552 | return students_utils.renderPDF( |
---|
[7318] | 553 | self, 'clearance.pdf', |
---|
[7310] | 554 | self.context.getStudent(), studentview) |
---|
[7277] | 555 | |
---|
[7321] | 556 | class StudentClearanceManageFormPage(SIRPEditFormPage): |
---|
[6631] | 557 | """ Page to edit student clearance data |
---|
| 558 | """ |
---|
| 559 | grok.context(IStudent) |
---|
| 560 | grok.name('edit_clearance') |
---|
[7136] | 561 | grok.require('waeup.manageStudent') |
---|
[7134] | 562 | grok.template('clearanceeditpage') |
---|
[6631] | 563 | form_fields = grok.AutoFields(IStudentClearance) |
---|
[6695] | 564 | label = 'Manage clearance data' |
---|
[6642] | 565 | pnav = 4 |
---|
[6650] | 566 | form_fields['date_of_birth'].custom_widget = FriendlyDateWidget('le-year') |
---|
| 567 | |
---|
| 568 | def update(self): |
---|
| 569 | datepicker.need() # Enable jQuery datepicker in date fields. |
---|
[7134] | 570 | tabs.need() |
---|
[7490] | 571 | self.tab1 = self.tab2 = '' |
---|
| 572 | qs = self.request.get('QUERY_STRING', '') |
---|
| 573 | if not qs: |
---|
| 574 | qs = 'tab1' |
---|
| 575 | setattr(self, qs, 'active') |
---|
[6650] | 576 | return super(StudentClearanceManageFormPage, self).update() |
---|
| 577 | |
---|
[7459] | 578 | @action('Save', style='primary') |
---|
[6695] | 579 | def save(self, **data): |
---|
[6762] | 580 | msave(self, **data) |
---|
[6695] | 581 | return |
---|
| 582 | |
---|
[7459] | 583 | class StudentClearPage(UtilityView, grok.View): |
---|
[7158] | 584 | """ Clear student by clearance officer |
---|
| 585 | """ |
---|
| 586 | grok.context(IStudent) |
---|
| 587 | grok.name('clear') |
---|
| 588 | grok.require('waeup.clearStudent') |
---|
| 589 | |
---|
| 590 | def update(self): |
---|
| 591 | if self.context.state == REQUESTED: |
---|
| 592 | IWorkflowInfo(self.context).fireTransition('clear') |
---|
| 593 | self.flash('Student has been cleared.') |
---|
| 594 | else: |
---|
| 595 | self.flash('Student is in the wrong state.') |
---|
| 596 | self.redirect(self.url(self.context,'view_clearance')) |
---|
| 597 | return |
---|
| 598 | |
---|
| 599 | def render(self): |
---|
| 600 | return |
---|
| 601 | |
---|
[7459] | 602 | class StudentRejectClearancePage(UtilityView, grok.View): |
---|
[7158] | 603 | """ Reject clearance by clearance officers |
---|
| 604 | """ |
---|
| 605 | grok.context(IStudent) |
---|
| 606 | grok.name('reject_clearance') |
---|
| 607 | grok.require('waeup.clearStudent') |
---|
| 608 | |
---|
| 609 | def update(self): |
---|
| 610 | if self.context.state == CLEARED: |
---|
| 611 | IWorkflowInfo(self.context).fireTransition('reset4') |
---|
[7275] | 612 | message = 'Clearance has been annulled' |
---|
| 613 | self.flash(message) |
---|
[7158] | 614 | elif self.context.state == REQUESTED: |
---|
| 615 | IWorkflowInfo(self.context).fireTransition('reset3') |
---|
[7275] | 616 | message = 'Clearance request has been rejected' |
---|
| 617 | self.flash(message) |
---|
[7158] | 618 | else: |
---|
| 619 | self.flash('Student is in the wrong state.') |
---|
[7334] | 620 | self.redirect(self.url(self.context,'view_clearance')) |
---|
[7275] | 621 | return |
---|
| 622 | args = {'subject':message} |
---|
| 623 | self.redirect(self.url(self.context) + |
---|
| 624 | '/contactstudent?%s' % urlencode(args)) |
---|
[7158] | 625 | return |
---|
| 626 | |
---|
| 627 | def render(self): |
---|
| 628 | return |
---|
| 629 | |
---|
[7321] | 630 | class StudentPersonalDisplayFormPage(SIRPDisplayFormPage): |
---|
[6631] | 631 | """ Page to display student personal data |
---|
| 632 | """ |
---|
| 633 | grok.context(IStudent) |
---|
| 634 | grok.name('view_personal') |
---|
[6660] | 635 | grok.require('waeup.viewStudent') |
---|
[6631] | 636 | form_fields = grok.AutoFields(IStudentPersonal) |
---|
[7386] | 637 | form_fields['perm_address'].custom_widget = BytesDisplayWidget |
---|
[6642] | 638 | pnav = 4 |
---|
[6631] | 639 | |
---|
| 640 | @property |
---|
| 641 | def label(self): |
---|
[7364] | 642 | return '%s: Personal Data' % self.context.display_fullname |
---|
[6631] | 643 | |
---|
| 644 | class StudentPersonalManageActionButton(ManageActionButton): |
---|
| 645 | grok.order(1) |
---|
| 646 | grok.context(IStudent) |
---|
| 647 | grok.view(StudentPersonalDisplayFormPage) |
---|
[7136] | 648 | grok.require('waeup.manageStudent') |
---|
[6695] | 649 | text = 'Manage' |
---|
[6631] | 650 | target = 'edit_personal' |
---|
| 651 | |
---|
[7321] | 652 | class StudentPersonalManageFormPage(SIRPEditFormPage): |
---|
[6631] | 653 | """ Page to edit student clearance data |
---|
| 654 | """ |
---|
| 655 | grok.context(IStudent) |
---|
| 656 | grok.name('edit_personal') |
---|
[6660] | 657 | grok.require('waeup.viewStudent') |
---|
[6631] | 658 | form_fields = grok.AutoFields(IStudentPersonal) |
---|
[6695] | 659 | label = 'Manage personal data' |
---|
[6642] | 660 | pnav = 4 |
---|
[6631] | 661 | |
---|
[7459] | 662 | @action('Save', style='primary') |
---|
[6762] | 663 | def save(self, **data): |
---|
| 664 | msave(self, **data) |
---|
| 665 | return |
---|
| 666 | |
---|
[7321] | 667 | class StudyCourseDisplayFormPage(SIRPDisplayFormPage): |
---|
[6635] | 668 | """ Page to display the student study course data |
---|
| 669 | """ |
---|
| 670 | grok.context(IStudentStudyCourse) |
---|
| 671 | grok.name('index') |
---|
[6660] | 672 | grok.require('waeup.viewStudent') |
---|
[6635] | 673 | form_fields = grok.AutoFields(IStudentStudyCourse) |
---|
[6775] | 674 | grok.template('studycoursepage') |
---|
[6642] | 675 | pnav = 4 |
---|
[6635] | 676 | |
---|
| 677 | @property |
---|
| 678 | def label(self): |
---|
[7364] | 679 | return '%s: Study Course' % self.context.__parent__.display_fullname |
---|
[6635] | 680 | |
---|
[6912] | 681 | @property |
---|
| 682 | def current_mode(self): |
---|
[7171] | 683 | if self.context.certificate: |
---|
| 684 | current_mode = study_modes.getTermByToken( |
---|
| 685 | self.context.certificate.study_mode).title |
---|
| 686 | return current_mode |
---|
| 687 | return |
---|
| 688 | |
---|
| 689 | @property |
---|
| 690 | def department(self): |
---|
[7205] | 691 | if self.context.certificate is not None: |
---|
[7171] | 692 | return self.context.certificate.__parent__.__parent__ |
---|
| 693 | return |
---|
[6912] | 694 | |
---|
[7171] | 695 | @property |
---|
| 696 | def faculty(self): |
---|
[7205] | 697 | if self.context.certificate is not None: |
---|
[7171] | 698 | return self.context.certificate.__parent__.__parent__.__parent__ |
---|
| 699 | return |
---|
| 700 | |
---|
[6649] | 701 | class StudyCourseManageActionButton(ManageActionButton): |
---|
| 702 | grok.order(1) |
---|
| 703 | grok.context(IStudentStudyCourse) |
---|
| 704 | grok.view(StudyCourseDisplayFormPage) |
---|
[7136] | 705 | grok.require('waeup.manageStudent') |
---|
[6695] | 706 | text = 'Manage' |
---|
[6775] | 707 | target = 'manage' |
---|
[6649] | 708 | |
---|
[7321] | 709 | class StudyCourseManageFormPage(SIRPEditFormPage): |
---|
[6649] | 710 | """ Page to edit the student study course data |
---|
| 711 | """ |
---|
| 712 | grok.context(IStudentStudyCourse) |
---|
[6775] | 713 | grok.name('manage') |
---|
[7136] | 714 | grok.require('waeup.manageStudent') |
---|
[6775] | 715 | grok.template('studycoursemanagepage') |
---|
[6649] | 716 | form_fields = grok.AutoFields(IStudentStudyCourse) |
---|
[6695] | 717 | label = 'Manage study course' |
---|
[6649] | 718 | pnav = 4 |
---|
[6775] | 719 | taboneactions = ['Save','Cancel'] |
---|
| 720 | tabtwoactions = ['Remove selected levels','Cancel'] |
---|
| 721 | tabthreeactions = ['Add study level'] |
---|
[6649] | 722 | |
---|
[6775] | 723 | def update(self): |
---|
| 724 | super(StudyCourseManageFormPage, self).update() |
---|
| 725 | tabs.need() |
---|
[7484] | 726 | self.tab1 = self.tab2 = '' |
---|
| 727 | qs = self.request.get('QUERY_STRING', '') |
---|
| 728 | if not qs: |
---|
| 729 | qs = 'tab1' |
---|
| 730 | setattr(self, qs, 'active') |
---|
[7490] | 731 | warning.need() |
---|
| 732 | datatable.need() |
---|
| 733 | return |
---|
[6775] | 734 | |
---|
[7459] | 735 | @action('Save', style='primary') |
---|
[6761] | 736 | def save(self, **data): |
---|
[6762] | 737 | msave(self, **data) |
---|
[6761] | 738 | return |
---|
| 739 | |
---|
[6775] | 740 | @property |
---|
| 741 | def level_dict(self): |
---|
| 742 | studylevelsource = StudyLevelSource().factory |
---|
| 743 | for code in studylevelsource.getValues(self.context): |
---|
| 744 | title = studylevelsource.getTitle(self.context, code) |
---|
| 745 | yield(dict(code=code, title=title)) |
---|
| 746 | |
---|
[7459] | 747 | @action('Add study level') |
---|
[6774] | 748 | def addStudyLevel(self, **data): |
---|
[6775] | 749 | level_code = self.request.form.get('addlevel', None) |
---|
[6774] | 750 | studylevel = StudentStudyLevel() |
---|
[6775] | 751 | studylevel.level = int(level_code) |
---|
| 752 | try: |
---|
[6782] | 753 | self.context.addStudentStudyLevel( |
---|
| 754 | self.context.certificate,studylevel) |
---|
[7484] | 755 | self.flash('Study level has been added.') |
---|
[6775] | 756 | except KeyError: |
---|
| 757 | self.flash('This level exists.') |
---|
[7484] | 758 | self.redirect(self.url(self.context, u'@@manage')+'?tab2') |
---|
[6774] | 759 | return |
---|
| 760 | |
---|
[7329] | 761 | @jsaction('Remove selected levels') |
---|
[6775] | 762 | def delStudyLevels(self, **data): |
---|
| 763 | form = self.request.form |
---|
| 764 | if form.has_key('val_id'): |
---|
| 765 | child_id = form['val_id'] |
---|
| 766 | else: |
---|
| 767 | self.flash('No study level selected.') |
---|
[7484] | 768 | self.redirect(self.url(self.context, '@@manage')+'?tab2') |
---|
[6775] | 769 | return |
---|
| 770 | if not isinstance(child_id, list): |
---|
| 771 | child_id = [child_id] |
---|
| 772 | deleted = [] |
---|
| 773 | for id in child_id: |
---|
| 774 | try: |
---|
| 775 | del self.context[id] |
---|
| 776 | deleted.append(id) |
---|
| 777 | except: |
---|
| 778 | self.flash('Could not delete %s: %s: %s' % ( |
---|
| 779 | id, sys.exc_info()[0], sys.exc_info()[1])) |
---|
| 780 | if len(deleted): |
---|
| 781 | self.flash('Successfully removed: %s' % ', '.join(deleted)) |
---|
[7484] | 782 | self.redirect(self.url(self.context, u'@@manage')+'?tab2') |
---|
[6775] | 783 | return |
---|
[6774] | 784 | |
---|
[7321] | 785 | class StudyLevelDisplayFormPage(SIRPDisplayFormPage): |
---|
[6774] | 786 | """ Page to display student study levels |
---|
| 787 | """ |
---|
| 788 | grok.context(IStudentStudyLevel) |
---|
| 789 | grok.name('index') |
---|
| 790 | grok.require('waeup.viewStudent') |
---|
[6775] | 791 | form_fields = grok.AutoFields(IStudentStudyLevel) |
---|
[6783] | 792 | grok.template('studylevelpage') |
---|
[6774] | 793 | pnav = 4 |
---|
| 794 | |
---|
[7310] | 795 | def update(self): |
---|
| 796 | super(StudyLevelDisplayFormPage, self).update() |
---|
| 797 | datatable.need() |
---|
| 798 | return |
---|
| 799 | |
---|
[6774] | 800 | @property |
---|
| 801 | def label(self): |
---|
[6776] | 802 | return '%s: Study Level %s' % ( |
---|
[7364] | 803 | self.context.getStudent().display_fullname,self.context.level_title) |
---|
[6774] | 804 | |
---|
[6803] | 805 | @property |
---|
| 806 | def total_credits(self): |
---|
| 807 | total_credits = 0 |
---|
| 808 | for key, val in self.context.items(): |
---|
| 809 | total_credits += val.credits |
---|
| 810 | return total_credits |
---|
| 811 | |
---|
[7028] | 812 | class CourseRegistrationSlipActionButton(ManageActionButton): |
---|
[6792] | 813 | grok.order(1) |
---|
| 814 | grok.context(IStudentStudyLevel) |
---|
[7029] | 815 | grok.view(StudyLevelDisplayFormPage) |
---|
[7028] | 816 | grok.require('waeup.viewStudent') |
---|
| 817 | icon = 'actionicon_pdf.png' |
---|
| 818 | text = 'Download course registration slip' |
---|
| 819 | target = 'course_registration.pdf' |
---|
| 820 | |
---|
[7459] | 821 | class ExportPDFCourseRegistrationSlipPage(UtilityView, grok.View): |
---|
[7028] | 822 | """Deliver a PDF slip of the context. |
---|
| 823 | """ |
---|
| 824 | grok.context(IStudentStudyLevel) |
---|
| 825 | grok.name('course_registration.pdf') |
---|
| 826 | grok.require('waeup.viewStudent') |
---|
| 827 | form_fields = grok.AutoFields(IStudentStudyLevel) |
---|
| 828 | prefix = 'form' |
---|
[7318] | 829 | title = 'Level Data' |
---|
| 830 | content_title = 'Course List' |
---|
[7028] | 831 | |
---|
| 832 | @property |
---|
| 833 | def label(self): |
---|
| 834 | return 'Course Registration Slip %s' % self.context.level_title |
---|
| 835 | |
---|
| 836 | def render(self): |
---|
| 837 | studentview = StudentBaseDisplayFormPage(self.context.getStudent(), |
---|
| 838 | self.request) |
---|
[7150] | 839 | students_utils = getUtility(IStudentsUtils) |
---|
[7318] | 840 | tabledata = sorted(self.context.values(), |
---|
| 841 | key=lambda value: str(value.semester) + value.code) |
---|
[7186] | 842 | return students_utils.renderPDF( |
---|
[7318] | 843 | self, 'course_registration.pdf', |
---|
[7310] | 844 | self.context.getStudent(), studentview, |
---|
| 845 | tableheader=[('Sem.','semester', 1.5),('Code','code', 2.5), |
---|
| 846 | ('Title','title', 5), |
---|
| 847 | ('Dept.','dcode', 1.5), ('Faculty','fcode', 1.5), |
---|
| 848 | ('Cred.', 'credits', 1.5), |
---|
| 849 | ('Mand.', 'core_or_elective', 1.5), |
---|
| 850 | ('Score', 'score', 1.5),('Auto', 'automatic', 1.5) |
---|
[7304] | 851 | ], |
---|
[7318] | 852 | tabledata=tabledata) |
---|
[7028] | 853 | |
---|
| 854 | class StudyLevelManageActionButton(ManageActionButton): |
---|
| 855 | grok.order(2) |
---|
| 856 | grok.context(IStudentStudyLevel) |
---|
[6792] | 857 | grok.view(StudyLevelDisplayFormPage) |
---|
[7136] | 858 | grok.require('waeup.manageStudent') |
---|
[6792] | 859 | text = 'Manage' |
---|
| 860 | target = 'manage' |
---|
| 861 | |
---|
[7334] | 862 | class StudentValidateCoursesActionButton(ManageActionButton): |
---|
| 863 | grok.order(3) |
---|
| 864 | grok.context(IStudentStudyLevel) |
---|
| 865 | grok.view(StudyLevelDisplayFormPage) |
---|
| 866 | grok.require('waeup.validateStudent') |
---|
| 867 | text = 'Validate courses' |
---|
| 868 | target = 'validate_courses' |
---|
| 869 | icon = 'actionicon_accept.png' |
---|
| 870 | |
---|
| 871 | @property |
---|
| 872 | def target_url(self): |
---|
| 873 | if self.context.getStudent().state != REGISTERED or \ |
---|
| 874 | str(self.context.__parent__.current_level) != self.context.__name__: |
---|
| 875 | return '' |
---|
| 876 | return self.view.url(self.view.context, self.target) |
---|
| 877 | |
---|
| 878 | class StudentRejectCoursesActionButton(ManageActionButton): |
---|
| 879 | grok.order(4) |
---|
| 880 | grok.context(IStudentStudyLevel) |
---|
| 881 | grok.view(StudyLevelDisplayFormPage) |
---|
| 882 | grok.require('waeup.validateStudent') |
---|
| 883 | text = 'Reject courses' |
---|
| 884 | target = 'reject_courses' |
---|
| 885 | icon = 'actionicon_reject.png' |
---|
| 886 | |
---|
| 887 | @property |
---|
| 888 | def target_url(self): |
---|
| 889 | if self.context.getStudent().state not in (VALIDATED, REGISTERED) or \ |
---|
| 890 | str(self.context.__parent__.current_level) != self.context.__name__: |
---|
| 891 | return '' |
---|
| 892 | return self.view.url(self.view.context, self.target) |
---|
| 893 | |
---|
[7321] | 894 | class StudyLevelManageFormPage(SIRPEditFormPage): |
---|
[6792] | 895 | """ Page to edit the student study level data |
---|
| 896 | """ |
---|
| 897 | grok.context(IStudentStudyLevel) |
---|
| 898 | grok.name('manage') |
---|
[7136] | 899 | grok.require('waeup.manageStudent') |
---|
[6792] | 900 | grok.template('studylevelmanagepage') |
---|
| 901 | form_fields = grok.AutoFields(IStudentStudyLevel) |
---|
| 902 | pnav = 4 |
---|
| 903 | taboneactions = ['Save','Cancel'] |
---|
[6795] | 904 | tabtwoactions = ['Add course ticket','Remove selected tickets','Cancel'] |
---|
[6792] | 905 | |
---|
| 906 | def update(self): |
---|
| 907 | super(StudyLevelManageFormPage, self).update() |
---|
| 908 | tabs.need() |
---|
[7484] | 909 | self.tab1 = self.tab2 = '' |
---|
| 910 | qs = self.request.get('QUERY_STRING', '') |
---|
| 911 | if not qs: |
---|
| 912 | qs = 'tab1' |
---|
| 913 | setattr(self, qs, 'active') |
---|
[7490] | 914 | warning.need() |
---|
| 915 | datatable.need() |
---|
[6792] | 916 | return |
---|
| 917 | |
---|
| 918 | @property |
---|
| 919 | def label(self): |
---|
| 920 | return 'Manage study level %s' % self.context.level_title |
---|
| 921 | |
---|
[7459] | 922 | @action('Save', style='primary') |
---|
[6792] | 923 | def save(self, **data): |
---|
| 924 | msave(self, **data) |
---|
| 925 | return |
---|
| 926 | |
---|
[7459] | 927 | @action('Add course ticket') |
---|
[6795] | 928 | def addCourseTicket(self, **data): |
---|
| 929 | self.redirect(self.url(self.context, '@@add')) |
---|
[6792] | 930 | |
---|
[7329] | 931 | @jsaction('Remove selected tickets') |
---|
[6792] | 932 | def delCourseTicket(self, **data): |
---|
| 933 | form = self.request.form |
---|
| 934 | if form.has_key('val_id'): |
---|
| 935 | child_id = form['val_id'] |
---|
| 936 | else: |
---|
| 937 | self.flash('No ticket selected.') |
---|
[7484] | 938 | self.redirect(self.url(self.context, '@@manage')+'?tab2') |
---|
[6792] | 939 | return |
---|
| 940 | if not isinstance(child_id, list): |
---|
| 941 | child_id = [child_id] |
---|
| 942 | deleted = [] |
---|
| 943 | for id in child_id: |
---|
| 944 | try: |
---|
| 945 | del self.context[id] |
---|
| 946 | deleted.append(id) |
---|
| 947 | except: |
---|
| 948 | self.flash('Could not delete %s: %s: %s' % ( |
---|
| 949 | id, sys.exc_info()[0], sys.exc_info()[1])) |
---|
| 950 | if len(deleted): |
---|
| 951 | self.flash('Successfully removed: %s' % ', '.join(deleted)) |
---|
[7484] | 952 | self.redirect(self.url(self.context, u'@@manage')+'?tab2') |
---|
[6792] | 953 | return |
---|
| 954 | |
---|
[7459] | 955 | class ValidateCoursesPage(UtilityView, grok.View): |
---|
[7334] | 956 | """ Validate course list by course adviser |
---|
| 957 | """ |
---|
| 958 | grok.context(IStudentStudyLevel) |
---|
| 959 | grok.name('validate_courses') |
---|
| 960 | grok.require('waeup.validateStudent') |
---|
| 961 | |
---|
| 962 | def update(self): |
---|
| 963 | if str(self.context.__parent__.current_level) != self.context.__name__: |
---|
| 964 | self.flash('This level does not correspond current level.') |
---|
| 965 | elif self.context.getStudent().state == REGISTERED: |
---|
| 966 | IWorkflowInfo(self.context.getStudent()).fireTransition('validate_courses') |
---|
[7337] | 967 | self.flash('Course list has been validated.') |
---|
[7334] | 968 | else: |
---|
| 969 | self.flash('Student is in the wrong state.') |
---|
| 970 | self.redirect(self.url(self.context)) |
---|
| 971 | return |
---|
| 972 | |
---|
| 973 | def render(self): |
---|
| 974 | return |
---|
| 975 | |
---|
[7459] | 976 | class RejectCoursesPage(UtilityView, grok.View): |
---|
[7334] | 977 | """ Reject course list by course adviser |
---|
| 978 | """ |
---|
| 979 | grok.context(IStudentStudyLevel) |
---|
| 980 | grok.name('reject_courses') |
---|
| 981 | grok.require('waeup.validateStudent') |
---|
| 982 | |
---|
| 983 | def update(self): |
---|
| 984 | if str(self.context.__parent__.current_level) != self.context.__name__: |
---|
| 985 | self.flash('This level does not correspond current level.') |
---|
| 986 | self.redirect(self.url(self.context)) |
---|
| 987 | return |
---|
| 988 | elif self.context.getStudent().state == VALIDATED: |
---|
| 989 | IWorkflowInfo(self.context.getStudent()).fireTransition('reset8') |
---|
| 990 | message = 'Course list request has been annulled' |
---|
| 991 | self.flash(message) |
---|
| 992 | elif self.context.getStudent().state == REGISTERED: |
---|
| 993 | IWorkflowInfo(self.context.getStudent()).fireTransition('reset7') |
---|
| 994 | message = 'Course list request has been rejected' |
---|
| 995 | self.flash(message) |
---|
| 996 | else: |
---|
| 997 | self.flash('Student is in the wrong state.') |
---|
| 998 | self.redirect(self.url(self.context)) |
---|
| 999 | return |
---|
| 1000 | args = {'subject':message} |
---|
| 1001 | self.redirect(self.url(self.context.getStudent()) + |
---|
| 1002 | '/contactstudent?%s' % urlencode(args)) |
---|
| 1003 | return |
---|
| 1004 | |
---|
| 1005 | def render(self): |
---|
| 1006 | return |
---|
| 1007 | |
---|
[7321] | 1008 | class CourseTicketAddFormPage(SIRPAddFormPage): |
---|
[6808] | 1009 | """Add a course ticket. |
---|
[6795] | 1010 | """ |
---|
| 1011 | grok.context(IStudentStudyLevel) |
---|
| 1012 | grok.name('add') |
---|
[7136] | 1013 | grok.require('waeup.manageStudent') |
---|
[6795] | 1014 | label = 'Add course ticket' |
---|
[6808] | 1015 | form_fields = grok.AutoFields(ICourseTicketAdd).omit( |
---|
| 1016 | 'grade', 'score', 'automatic') |
---|
[6795] | 1017 | pnav = 4 |
---|
| 1018 | |
---|
[7459] | 1019 | @action('Add course ticket') |
---|
[6795] | 1020 | def addCourseTicket(self, **data): |
---|
| 1021 | ticket = CourseTicket() |
---|
| 1022 | course = data['course'] |
---|
| 1023 | ticket.core_or_elective = data['core_or_elective'] |
---|
[6802] | 1024 | ticket.automatic = False |
---|
[6795] | 1025 | ticket.code = course.code |
---|
| 1026 | ticket.title = course.title |
---|
| 1027 | ticket.faculty = course.__parent__.__parent__.__parent__.title |
---|
| 1028 | ticket.department = course.__parent__.__parent__.title |
---|
[7304] | 1029 | ticket.fcode = course.__parent__.__parent__.__parent__.code |
---|
| 1030 | ticket.dcode = course.__parent__.__parent__.code |
---|
[6795] | 1031 | ticket.credits = course.credits |
---|
| 1032 | ticket.passmark = course.passmark |
---|
| 1033 | ticket.semester = course.semester |
---|
| 1034 | try: |
---|
| 1035 | self.context.addCourseTicket(ticket) |
---|
| 1036 | except KeyError: |
---|
| 1037 | self.flash('The ticket exists.') |
---|
| 1038 | return |
---|
[6799] | 1039 | self.flash('Successfully added %s.' % ticket.code) |
---|
[7484] | 1040 | self.redirect(self.url(self.context, u'@@manage')+'?tab2') |
---|
[6795] | 1041 | return |
---|
| 1042 | |
---|
[7459] | 1043 | @action('Cancel') |
---|
[6795] | 1044 | def cancel(self, **data): |
---|
| 1045 | self.redirect(self.url(self.context)) |
---|
| 1046 | |
---|
[7321] | 1047 | class CourseTicketDisplayFormPage(SIRPDisplayFormPage): |
---|
[6796] | 1048 | """ Page to display course tickets |
---|
| 1049 | """ |
---|
| 1050 | grok.context(ICourseTicket) |
---|
| 1051 | grok.name('index') |
---|
| 1052 | grok.require('waeup.viewStudent') |
---|
| 1053 | form_fields = grok.AutoFields(ICourseTicket) |
---|
| 1054 | grok.template('courseticketpage') |
---|
| 1055 | pnav = 4 |
---|
| 1056 | |
---|
| 1057 | @property |
---|
| 1058 | def label(self): |
---|
| 1059 | return '%s: Course Ticket %s' % ( |
---|
[7364] | 1060 | self.context.getStudent().display_fullname,self.context.code) |
---|
[6796] | 1061 | |
---|
| 1062 | class CourseTicketManageActionButton(ManageActionButton): |
---|
| 1063 | grok.order(1) |
---|
| 1064 | grok.context(ICourseTicket) |
---|
| 1065 | grok.view(CourseTicketDisplayFormPage) |
---|
[7136] | 1066 | grok.require('waeup.manageStudent') |
---|
[6796] | 1067 | text = 'Manage' |
---|
| 1068 | target = 'manage' |
---|
| 1069 | |
---|
[7321] | 1070 | class CourseTicketManageFormPage(SIRPEditFormPage): |
---|
[6796] | 1071 | """ Page to manage course tickets |
---|
| 1072 | """ |
---|
| 1073 | grok.context(ICourseTicket) |
---|
| 1074 | grok.name('manage') |
---|
[7136] | 1075 | grok.require('waeup.manageStudent') |
---|
[6796] | 1076 | form_fields = grok.AutoFields(ICourseTicket) |
---|
| 1077 | grok.template('courseticketmanagepage') |
---|
| 1078 | pnav = 4 |
---|
| 1079 | |
---|
| 1080 | @property |
---|
| 1081 | def label(self): |
---|
| 1082 | return 'Manage course ticket %s' % self.context.code |
---|
| 1083 | |
---|
[7459] | 1084 | @action('Save', style='primary') |
---|
[6796] | 1085 | def save(self, **data): |
---|
| 1086 | msave(self, **data) |
---|
| 1087 | return |
---|
| 1088 | |
---|
[6940] | 1089 | # We don't need the display form page yet |
---|
[7321] | 1090 | #class PaymentsDisplayFormPage(SIRPDisplayFormPage): |
---|
[6943] | 1091 | # """ Page to display the student payments |
---|
| 1092 | # """ |
---|
| 1093 | # grok.context(IStudentPaymentsContainer) |
---|
| 1094 | # grok.name('view') |
---|
| 1095 | # grok.require('waeup.viewStudent') |
---|
| 1096 | # form_fields = grok.AutoFields(IStudentPaymentsContainer) |
---|
| 1097 | # grok.template('paymentspage') |
---|
| 1098 | # pnav = 4 |
---|
[6635] | 1099 | |
---|
[6943] | 1100 | # @property |
---|
| 1101 | # def label(self): |
---|
[7364] | 1102 | # return '%s: Payments' % self.context.__parent__.display_fullname |
---|
[6635] | 1103 | |
---|
[6943] | 1104 | # def update(self): |
---|
| 1105 | # super(PaymentsDisplayFormPage, self).update() |
---|
| 1106 | # datatable.need() |
---|
| 1107 | # return |
---|
[6869] | 1108 | |
---|
[6940] | 1109 | # This manage form page is for both students and students officers. |
---|
[7321] | 1110 | class PaymentsManageFormPage(SIRPEditFormPage): |
---|
[6869] | 1111 | """ Page to manage the student payments |
---|
| 1112 | """ |
---|
| 1113 | grok.context(IStudentPaymentsContainer) |
---|
[6940] | 1114 | grok.name('index') |
---|
[7181] | 1115 | grok.require('waeup.payStudent') |
---|
[6869] | 1116 | form_fields = grok.AutoFields(IStudentPaymentsContainer) |
---|
| 1117 | grok.template('paymentsmanagepage') |
---|
| 1118 | pnav = 4 |
---|
| 1119 | |
---|
[6940] | 1120 | def unremovable(self, ticket): |
---|
[7251] | 1121 | usertype = getattr(self.request.principal, 'user_type', None) |
---|
| 1122 | if not usertype: |
---|
| 1123 | return False |
---|
| 1124 | return (self.request.principal.user_type == 'student' and ticket.r_code) |
---|
[6940] | 1125 | |
---|
[6869] | 1126 | @property |
---|
| 1127 | def label(self): |
---|
[7364] | 1128 | return '%s: Payments' % self.context.__parent__.display_fullname |
---|
[6869] | 1129 | |
---|
| 1130 | def update(self): |
---|
| 1131 | super(PaymentsManageFormPage, self).update() |
---|
| 1132 | datatable.need() |
---|
[7329] | 1133 | warning.need() |
---|
[6869] | 1134 | return |
---|
| 1135 | |
---|
[7329] | 1136 | @jsaction('Remove selected tickets') |
---|
[6869] | 1137 | def delPaymentTicket(self, **data): |
---|
| 1138 | form = self.request.form |
---|
| 1139 | if form.has_key('val_id'): |
---|
| 1140 | child_id = form['val_id'] |
---|
| 1141 | else: |
---|
| 1142 | self.flash('No payment selected.') |
---|
[6940] | 1143 | self.redirect(self.url(self.context)) |
---|
[6869] | 1144 | return |
---|
| 1145 | if not isinstance(child_id, list): |
---|
| 1146 | child_id = [child_id] |
---|
| 1147 | deleted = [] |
---|
| 1148 | for id in child_id: |
---|
[6992] | 1149 | # Students are not allowed to remove used payment tickets |
---|
[6940] | 1150 | if not self.unremovable(self.context[id]): |
---|
| 1151 | try: |
---|
| 1152 | del self.context[id] |
---|
| 1153 | deleted.append(id) |
---|
| 1154 | except: |
---|
| 1155 | self.flash('Could not delete %s: %s: %s' % ( |
---|
| 1156 | id, sys.exc_info()[0], sys.exc_info()[1])) |
---|
[6869] | 1157 | if len(deleted): |
---|
| 1158 | self.flash('Successfully removed: %s' % ', '.join(deleted)) |
---|
[6943] | 1159 | write_log_message(self,'removed: % s' % ', '.join(deleted)) |
---|
[6940] | 1160 | self.redirect(self.url(self.context)) |
---|
[6869] | 1161 | return |
---|
| 1162 | |
---|
[7459] | 1163 | @action('Add online payment ticket') |
---|
[6869] | 1164 | def addPaymentTicket(self, **data): |
---|
| 1165 | self.redirect(self.url(self.context, '@@addop')) |
---|
| 1166 | |
---|
[6940] | 1167 | #class OnlinePaymentManageActionButton(ManageActionButton): |
---|
| 1168 | # grok.order(1) |
---|
| 1169 | # grok.context(IStudentPaymentsContainer) |
---|
| 1170 | # grok.view(PaymentsDisplayFormPage) |
---|
[7136] | 1171 | # grok.require('waeup.manageStudent') |
---|
[6940] | 1172 | # text = 'Manage payments' |
---|
| 1173 | # target = 'manage' |
---|
[6869] | 1174 | |
---|
[7321] | 1175 | class OnlinePaymentAddFormPage(SIRPAddFormPage): |
---|
[6869] | 1176 | """ Page to add an online payment ticket |
---|
| 1177 | """ |
---|
| 1178 | grok.context(IStudentPaymentsContainer) |
---|
| 1179 | grok.name('addop') |
---|
[7181] | 1180 | grok.require('waeup.payStudent') |
---|
[6877] | 1181 | form_fields = grok.AutoFields(IStudentOnlinePayment).select( |
---|
[6869] | 1182 | 'p_category') |
---|
| 1183 | label = 'Add online payment' |
---|
| 1184 | pnav = 4 |
---|
[6947] | 1185 | |
---|
[7459] | 1186 | @action('Create ticket', style='primary') |
---|
[6869] | 1187 | def createTicket(self, **data): |
---|
[7024] | 1188 | p_category = data['p_category'] |
---|
| 1189 | student = self.context.__parent__ |
---|
| 1190 | if p_category == 'bed_allocation' and student[ |
---|
| 1191 | 'studycourse'].current_session != grok.getSite()[ |
---|
| 1192 | 'configuration'].accommodation_session: |
---|
| 1193 | self.flash( |
---|
| 1194 | 'Your current session does not match accommodation session.') |
---|
| 1195 | self.redirect(self.url(self.context)) |
---|
| 1196 | return |
---|
[7150] | 1197 | students_utils = getUtility(IStudentsUtils) |
---|
[7186] | 1198 | pay_details = students_utils.getPaymentDetails( |
---|
[7024] | 1199 | p_category,student) |
---|
[6994] | 1200 | if pay_details['error']: |
---|
| 1201 | self.flash(pay_details['error']) |
---|
[6940] | 1202 | self.redirect(self.url(self.context)) |
---|
[6920] | 1203 | return |
---|
[7025] | 1204 | p_item = pay_details['p_item'] |
---|
| 1205 | p_session = pay_details['p_session'] |
---|
| 1206 | for key in self.context.keys(): |
---|
| 1207 | ticket = self.context[key] |
---|
[7248] | 1208 | if ticket.p_state == 'paid' and\ |
---|
| 1209 | ticket.p_category == p_category and \ |
---|
[7025] | 1210 | ticket.p_item == p_item and \ |
---|
| 1211 | ticket.p_session == p_session: |
---|
| 1212 | self.flash( |
---|
[7251] | 1213 | 'This type of payment has already been made.') |
---|
[7025] | 1214 | self.redirect(self.url(self.context)) |
---|
| 1215 | return |
---|
| 1216 | payment = createObject(u'waeup.StudentOnlinePayment') |
---|
| 1217 | self.applyData(payment, **data) |
---|
| 1218 | timestamp = "%d" % int(time()*1000) |
---|
| 1219 | #order_id = "%s%s" % (student_id[1:],timestamp) |
---|
| 1220 | payment.p_id = "p%s" % timestamp |
---|
| 1221 | payment.p_item = p_item |
---|
| 1222 | payment.p_session = p_session |
---|
[6994] | 1223 | payment.amount_auth = pay_details['amount'] |
---|
| 1224 | payment.surcharge_1 = pay_details['surcharge_1'] |
---|
| 1225 | payment.surcharge_2 = pay_details['surcharge_2'] |
---|
| 1226 | payment.surcharge_3 = pay_details['surcharge_3'] |
---|
[6869] | 1227 | self.context[payment.p_id] = payment |
---|
| 1228 | self.flash('Payment ticket created.') |
---|
[6940] | 1229 | self.redirect(self.url(self.context)) |
---|
[6869] | 1230 | return |
---|
| 1231 | |
---|
[7321] | 1232 | class OnlinePaymentDisplayFormPage(SIRPDisplayFormPage): |
---|
[6869] | 1233 | """ Page to view an online payment ticket |
---|
| 1234 | """ |
---|
[6877] | 1235 | grok.context(IStudentOnlinePayment) |
---|
[6869] | 1236 | grok.name('index') |
---|
| 1237 | grok.require('waeup.viewStudent') |
---|
[6877] | 1238 | form_fields = grok.AutoFields(IStudentOnlinePayment) |
---|
[6869] | 1239 | form_fields['creation_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
| 1240 | form_fields['payment_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
| 1241 | pnav = 4 |
---|
| 1242 | |
---|
| 1243 | @property |
---|
| 1244 | def label(self): |
---|
| 1245 | return '%s: Online Payment Ticket %s' % ( |
---|
[7364] | 1246 | self.context.getStudent().display_fullname,self.context.p_id) |
---|
[6869] | 1247 | |
---|
[7019] | 1248 | class PaymentReceiptActionButton(ManageActionButton): |
---|
[7028] | 1249 | grok.order(1) |
---|
[7019] | 1250 | grok.context(IStudentOnlinePayment) |
---|
[7029] | 1251 | grok.view(OnlinePaymentDisplayFormPage) |
---|
[7019] | 1252 | grok.require('waeup.viewStudent') |
---|
| 1253 | icon = 'actionicon_pdf.png' |
---|
| 1254 | text = 'Download payment receipt' |
---|
| 1255 | target = 'payment_receipt.pdf' |
---|
| 1256 | |
---|
[7028] | 1257 | @property |
---|
| 1258 | def target_url(self): |
---|
| 1259 | if self.context.p_state != 'paid': |
---|
| 1260 | return '' |
---|
| 1261 | return self.view.url(self.view.context, self.target) |
---|
| 1262 | |
---|
[7056] | 1263 | class RequestCallbackActionButton(ManageActionButton): |
---|
| 1264 | grok.order(2) |
---|
| 1265 | grok.context(IStudentOnlinePayment) |
---|
| 1266 | grok.view(OnlinePaymentDisplayFormPage) |
---|
[7181] | 1267 | grok.require('waeup.payStudent') |
---|
[7056] | 1268 | icon = 'actionicon_call.png' |
---|
| 1269 | text = 'Request callback' |
---|
| 1270 | target = 'callback' |
---|
| 1271 | |
---|
| 1272 | @property |
---|
| 1273 | def target_url(self): |
---|
| 1274 | if self.context.p_state != 'unpaid': |
---|
| 1275 | return '' |
---|
| 1276 | return self.view.url(self.view.context, self.target) |
---|
| 1277 | |
---|
[7459] | 1278 | class OnlinePaymentCallbackPage(UtilityView, grok.View): |
---|
[6930] | 1279 | """ Callback view |
---|
| 1280 | """ |
---|
| 1281 | grok.context(IStudentOnlinePayment) |
---|
| 1282 | grok.name('callback') |
---|
| 1283 | grok.require('waeup.payStudent') |
---|
| 1284 | |
---|
| 1285 | # This update method simulates a valid callback und must be |
---|
| 1286 | # specified in the customization package. The parameters must be taken |
---|
| 1287 | # from the incoming request. |
---|
| 1288 | def update(self): |
---|
[7026] | 1289 | if self.context.p_state == 'paid': |
---|
| 1290 | self.flash('This ticket has already been paid.') |
---|
| 1291 | return |
---|
[6936] | 1292 | student = self.context.getStudent() |
---|
[6943] | 1293 | write_log_message(self,'valid callback: %s' % self.context.p_id) |
---|
[6930] | 1294 | self.context.r_amount_approved = self.context.amount_auth |
---|
| 1295 | self.context.r_card_num = u'0000' |
---|
| 1296 | self.context.r_code = u'00' |
---|
| 1297 | self.context.p_state = 'paid' |
---|
| 1298 | self.context.payment_date = datetime.now() |
---|
| 1299 | if self.context.p_category == 'clearance': |
---|
[6936] | 1300 | # Create CLR access code |
---|
[6937] | 1301 | pin, error = create_accesscode('CLR',0,student.student_id) |
---|
[6936] | 1302 | if error: |
---|
[6940] | 1303 | self.flash('Valid callback received. ' + error) |
---|
[6936] | 1304 | return |
---|
| 1305 | self.context.ac = pin |
---|
[6930] | 1306 | elif self.context.p_category == 'schoolfee': |
---|
[6936] | 1307 | # Create SFE access code |
---|
[6940] | 1308 | pin, error = create_accesscode('SFE',0,student.student_id) |
---|
[6936] | 1309 | if error: |
---|
[6940] | 1310 | self.flash('Valid callback received. ' + error) |
---|
[6936] | 1311 | return |
---|
| 1312 | self.context.ac = pin |
---|
[6994] | 1313 | elif self.context.p_category == 'bed_allocation': |
---|
| 1314 | # Create HOS access code |
---|
| 1315 | pin, error = create_accesscode('HOS',0,student.student_id) |
---|
| 1316 | if error: |
---|
| 1317 | self.flash('Valid callback received. ' + error) |
---|
| 1318 | return |
---|
| 1319 | self.context.ac = pin |
---|
[6940] | 1320 | self.flash('Valid callback received.') |
---|
| 1321 | return |
---|
[6930] | 1322 | |
---|
| 1323 | def render(self): |
---|
[6940] | 1324 | self.redirect(self.url(self.context, '@@index')) |
---|
[6930] | 1325 | return |
---|
| 1326 | |
---|
[7459] | 1327 | class ExportPDFPaymentSlipPage(UtilityView, grok.View): |
---|
[7019] | 1328 | """Deliver a PDF slip of the context. |
---|
| 1329 | """ |
---|
| 1330 | grok.context(IStudentOnlinePayment) |
---|
| 1331 | grok.name('payment_receipt.pdf') |
---|
| 1332 | grok.require('waeup.viewStudent') |
---|
| 1333 | form_fields = grok.AutoFields(IStudentOnlinePayment) |
---|
| 1334 | form_fields['creation_date'].custom_widget = FriendlyDateDisplayWidget('le') |
---|
| 1335 | form_fields['payment_date'].custom_widget = FriendlyDateDisplayWidget('le') |
---|
| 1336 | prefix = 'form' |
---|
[7318] | 1337 | title = 'Payment Data' |
---|
[7019] | 1338 | |
---|
| 1339 | @property |
---|
| 1340 | def label(self): |
---|
| 1341 | return 'Online Payment Receipt %s' % self.context.p_id |
---|
| 1342 | |
---|
| 1343 | def render(self): |
---|
[7028] | 1344 | if self.context.p_state != 'paid': |
---|
| 1345 | self.flash('Ticket not yet paid.') |
---|
| 1346 | self.redirect(self.url(self.context)) |
---|
| 1347 | return |
---|
[7019] | 1348 | studentview = StudentBaseDisplayFormPage(self.context.getStudent(), |
---|
| 1349 | self.request) |
---|
[7150] | 1350 | students_utils = getUtility(IStudentsUtils) |
---|
[7318] | 1351 | return students_utils.renderPDF(self, 'payment_receipt.pdf', |
---|
[7310] | 1352 | self.context.getStudent(), studentview) |
---|
[7019] | 1353 | |
---|
[6992] | 1354 | # We don't need the display form page yet |
---|
[7321] | 1355 | #class AccommodationDisplayFormPage(SIRPDisplayFormPage): |
---|
[6992] | 1356 | # """ Page to display the student accommodation data |
---|
| 1357 | # """ |
---|
| 1358 | # grok.context(IStudentAccommodation) |
---|
| 1359 | # grok.name('xxx') |
---|
| 1360 | # grok.require('waeup.viewStudent') |
---|
| 1361 | # form_fields = grok.AutoFields(IStudentAccommodation) |
---|
| 1362 | # #grok.template('accommodationpage') |
---|
| 1363 | # pnav = 4 |
---|
| 1364 | |
---|
| 1365 | # @property |
---|
| 1366 | # def label(self): |
---|
[7364] | 1367 | # return '%s: Accommodation Data' % self.context.__parent__.display_fullname |
---|
[6992] | 1368 | |
---|
| 1369 | # This manage form page is for both students and students officers. |
---|
[7321] | 1370 | class AccommodationManageFormPage(SIRPEditFormPage): |
---|
[7009] | 1371 | """ Page to manage bed tickets. |
---|
[6635] | 1372 | """ |
---|
| 1373 | grok.context(IStudentAccommodation) |
---|
| 1374 | grok.name('index') |
---|
[7181] | 1375 | grok.require('waeup.handleAccommodation') |
---|
[6635] | 1376 | form_fields = grok.AutoFields(IStudentAccommodation) |
---|
[6992] | 1377 | grok.template('accommodationmanagepage') |
---|
[6642] | 1378 | pnav = 4 |
---|
[7017] | 1379 | officers_only_actions = ['Remove selected'] |
---|
[6635] | 1380 | |
---|
| 1381 | @property |
---|
| 1382 | def label(self): |
---|
[7364] | 1383 | return '%s: Accommodation' % self.context.__parent__.display_fullname |
---|
[6637] | 1384 | |
---|
[6992] | 1385 | def update(self): |
---|
| 1386 | super(AccommodationManageFormPage, self).update() |
---|
| 1387 | datatable.need() |
---|
[7329] | 1388 | warning.need() |
---|
[6992] | 1389 | return |
---|
| 1390 | |
---|
[7329] | 1391 | @jsaction('Remove selected') |
---|
[7009] | 1392 | def delBedTickets(self, **data): |
---|
[7240] | 1393 | if getattr(self.request.principal, 'user_type', None) == 'student': |
---|
[7017] | 1394 | self.flash('You are not allowed to remove bed tickets.') |
---|
| 1395 | self.redirect(self.url(self.context)) |
---|
| 1396 | return |
---|
[6992] | 1397 | form = self.request.form |
---|
| 1398 | if form.has_key('val_id'): |
---|
| 1399 | child_id = form['val_id'] |
---|
| 1400 | else: |
---|
| 1401 | self.flash('No bed ticket selected.') |
---|
| 1402 | self.redirect(self.url(self.context)) |
---|
| 1403 | return |
---|
| 1404 | if not isinstance(child_id, list): |
---|
| 1405 | child_id = [child_id] |
---|
| 1406 | deleted = [] |
---|
| 1407 | for id in child_id: |
---|
[7068] | 1408 | del self.context[id] |
---|
| 1409 | deleted.append(id) |
---|
[6992] | 1410 | if len(deleted): |
---|
| 1411 | self.flash('Successfully removed: %s' % ', '.join(deleted)) |
---|
| 1412 | write_log_message(self,'removed: % s' % ', '.join(deleted)) |
---|
| 1413 | self.redirect(self.url(self.context)) |
---|
| 1414 | return |
---|
| 1415 | |
---|
[7009] | 1416 | @property |
---|
| 1417 | def selected_actions(self): |
---|
| 1418 | sa = self.actions |
---|
[7240] | 1419 | if getattr(self.request.principal, 'user_type', None) == 'student': |
---|
[7009] | 1420 | sa = [action for action in self.actions |
---|
[7017] | 1421 | if not action.label in self.officers_only_actions] |
---|
[7009] | 1422 | return sa |
---|
| 1423 | |
---|
[7015] | 1424 | class AddBedTicketActionButton(ManageActionButton): |
---|
| 1425 | grok.order(1) |
---|
| 1426 | grok.context(IStudentAccommodation) |
---|
| 1427 | grok.view(AccommodationManageFormPage) |
---|
[7181] | 1428 | grok.require('waeup.handleAccommodation') |
---|
[7015] | 1429 | icon = 'actionicon_home.png' |
---|
| 1430 | text = 'Book accommodation' |
---|
| 1431 | target = 'add' |
---|
| 1432 | |
---|
[7321] | 1433 | class BedTicketAddPage(SIRPPage): |
---|
[6992] | 1434 | """ Page to add an online payment ticket |
---|
| 1435 | """ |
---|
| 1436 | grok.context(IStudentAccommodation) |
---|
| 1437 | grok.name('add') |
---|
[7181] | 1438 | grok.require('waeup.handleAccommodation') |
---|
[6992] | 1439 | grok.template('enterpin') |
---|
[6993] | 1440 | ac_prefix = 'HOS' |
---|
[6992] | 1441 | label = 'Add bed ticket' |
---|
| 1442 | pnav = 4 |
---|
| 1443 | buttonname = 'Create bed ticket' |
---|
[6993] | 1444 | notice = '' |
---|
[6992] | 1445 | |
---|
| 1446 | def update(self, SUBMIT=None): |
---|
[6996] | 1447 | student = self.context.getStudent() |
---|
[7150] | 1448 | students_utils = getUtility(IStudentsUtils) |
---|
[7186] | 1449 | acc_details = students_utils.getAccommodationDetails(student) |
---|
[7369] | 1450 | if not acc_details: |
---|
| 1451 | self.flash("Your data are incomplete.") |
---|
| 1452 | self.redirect(self.url(self.context)) |
---|
| 1453 | return |
---|
[6996] | 1454 | if not student.state in acc_details['allowed_states']: |
---|
[7015] | 1455 | self.flash("You are in the wrong registration state.") |
---|
[6992] | 1456 | self.redirect(self.url(self.context)) |
---|
| 1457 | return |
---|
[7061] | 1458 | if student['studycourse'].current_session != acc_details['booking_session']: |
---|
| 1459 | self.flash( |
---|
| 1460 | 'Your current session does not match accommodation session.') |
---|
| 1461 | self.redirect(self.url(self.context)) |
---|
| 1462 | return |
---|
| 1463 | if str(acc_details['booking_session']) in self.context.keys(): |
---|
[7060] | 1464 | self.flash('You already booked a bed space in current accommodation session.') |
---|
[7004] | 1465 | self.redirect(self.url(self.context)) |
---|
| 1466 | return |
---|
[6992] | 1467 | self.ac_series = self.request.form.get('ac_series', None) |
---|
| 1468 | self.ac_number = self.request.form.get('ac_number', None) |
---|
| 1469 | if SUBMIT is None: |
---|
| 1470 | return |
---|
| 1471 | pin = '%s-%s-%s' % (self.ac_prefix, self.ac_series, self.ac_number) |
---|
| 1472 | code = get_access_code(pin) |
---|
| 1473 | if not code: |
---|
| 1474 | self.flash('Activation code is invalid.') |
---|
| 1475 | return |
---|
[7060] | 1476 | # Search and book bed |
---|
[6997] | 1477 | cat = queryUtility(ICatalog, name='beds_catalog', default=None) |
---|
| 1478 | entries = cat.searchResults( |
---|
[7003] | 1479 | owner=(student.student_id,student.student_id)) |
---|
| 1480 | if len(entries): |
---|
[7060] | 1481 | # If bed space has bee manually allocated use this bed |
---|
[7003] | 1482 | bed = [entry for entry in entries][0] |
---|
[7060] | 1483 | else: |
---|
| 1484 | # else search for other available beds |
---|
| 1485 | entries = cat.searchResults( |
---|
| 1486 | bed_type=(acc_details['bt'],acc_details['bt'])) |
---|
| 1487 | available_beds = [ |
---|
| 1488 | entry for entry in entries if entry.owner == NOT_OCCUPIED] |
---|
| 1489 | if available_beds: |
---|
[7150] | 1490 | students_utils = getUtility(IStudentsUtils) |
---|
[7186] | 1491 | bed = students_utils.selectBed(available_beds) |
---|
[7060] | 1492 | bed.bookBed(student.student_id) |
---|
| 1493 | else: |
---|
| 1494 | self.flash('There is no free bed in your category %s.' |
---|
| 1495 | % acc_details['bt']) |
---|
| 1496 | return |
---|
[6992] | 1497 | # Mark pin as used (this also fires a pin related transition) |
---|
| 1498 | if code.state == USED: |
---|
| 1499 | self.flash('Activation code has already been used.') |
---|
| 1500 | return |
---|
| 1501 | else: |
---|
| 1502 | comment = u"AC invalidated for %s" % self.context.getStudent().student_id |
---|
| 1503 | # Here we know that the ac is in state initialized so we do not |
---|
| 1504 | # expect an exception, but the owner might be different |
---|
| 1505 | if not invalidate_accesscode( |
---|
| 1506 | pin,comment,self.context.getStudent().student_id): |
---|
| 1507 | self.flash('You are not the owner of this access code.') |
---|
| 1508 | return |
---|
[7060] | 1509 | # Create bed ticket |
---|
[6992] | 1510 | bedticket = createObject(u'waeup.BedTicket') |
---|
| 1511 | bedticket.booking_code = pin |
---|
[6994] | 1512 | bedticket.booking_session = acc_details['booking_session'] |
---|
[6996] | 1513 | bedticket.bed_type = acc_details['bt'] |
---|
[7006] | 1514 | bedticket.bed = bed |
---|
[6996] | 1515 | hall_title = bed.__parent__.hostel_name |
---|
| 1516 | coordinates = bed.getBedCoordinates()[1:] |
---|
| 1517 | block, room_nr, bed_nr = coordinates |
---|
[7068] | 1518 | bedticket.bed_coordinates = '%s, Block %s, Room %s, Bed %s (%s)' % ( |
---|
| 1519 | hall_title, block, room_nr, bed_nr, bed.bed_type) |
---|
[6996] | 1520 | key = str(acc_details['booking_session']) |
---|
| 1521 | self.context[key] = bedticket |
---|
| 1522 | self.flash('Bed ticket created and bed booked: %s' |
---|
| 1523 | % bedticket.bed_coordinates) |
---|
[6992] | 1524 | self.redirect(self.url(self.context)) |
---|
| 1525 | return |
---|
| 1526 | |
---|
[7321] | 1527 | class BedTicketDisplayFormPage(SIRPDisplayFormPage): |
---|
[6994] | 1528 | """ Page to display bed tickets |
---|
| 1529 | """ |
---|
| 1530 | grok.context(IBedTicket) |
---|
| 1531 | grok.name('index') |
---|
[7181] | 1532 | grok.require('waeup.handleAccommodation') |
---|
[6994] | 1533 | form_fields = grok.AutoFields(IBedTicket) |
---|
| 1534 | form_fields[ |
---|
| 1535 | 'booking_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
| 1536 | pnav = 4 |
---|
| 1537 | |
---|
| 1538 | @property |
---|
| 1539 | def label(self): |
---|
| 1540 | return 'Bed Ticket for Session %s' % self.context.getSessionString() |
---|
| 1541 | |
---|
[7027] | 1542 | class BedTicketSlipActionButton(ManageActionButton): |
---|
[7028] | 1543 | grok.order(1) |
---|
[7027] | 1544 | grok.context(IBedTicket) |
---|
[7029] | 1545 | grok.view(BedTicketDisplayFormPage) |
---|
[7181] | 1546 | grok.require('waeup.handleAccommodation') |
---|
[7027] | 1547 | icon = 'actionicon_pdf.png' |
---|
| 1548 | text = 'Download bed allocation slip' |
---|
| 1549 | target = 'bed_allocation.pdf' |
---|
| 1550 | |
---|
[7459] | 1551 | class ExportPDFBedTicketSlipPage(UtilityView, grok.View): |
---|
[7027] | 1552 | """Deliver a PDF slip of the context. |
---|
| 1553 | """ |
---|
| 1554 | grok.context(IBedTicket) |
---|
| 1555 | grok.name('bed_allocation.pdf') |
---|
[7181] | 1556 | grok.require('waeup.handleAccommodation') |
---|
[7027] | 1557 | form_fields = grok.AutoFields(IBedTicket) |
---|
| 1558 | form_fields['booking_date'].custom_widget = FriendlyDateDisplayWidget('le') |
---|
| 1559 | prefix = 'form' |
---|
[7318] | 1560 | title = 'Bed Allocation Data' |
---|
[7027] | 1561 | |
---|
| 1562 | @property |
---|
| 1563 | def label(self): |
---|
[7318] | 1564 | return 'Bed Allocation: %s' % self.context.bed_coordinates |
---|
[7027] | 1565 | |
---|
| 1566 | def render(self): |
---|
| 1567 | studentview = StudentBaseDisplayFormPage(self.context.getStudent(), |
---|
| 1568 | self.request) |
---|
[7150] | 1569 | students_utils = getUtility(IStudentsUtils) |
---|
[7186] | 1570 | return students_utils.renderPDF( |
---|
[7318] | 1571 | self, 'bed_allocation.pdf', |
---|
[7310] | 1572 | self.context.getStudent(), studentview) |
---|
[7027] | 1573 | |
---|
[7015] | 1574 | class RelocateStudentActionButton(ManageActionButton): |
---|
[7027] | 1575 | grok.order(2) |
---|
[7015] | 1576 | grok.context(IBedTicket) |
---|
| 1577 | grok.view(BedTicketDisplayFormPage) |
---|
| 1578 | grok.require('waeup.manageHostels') |
---|
| 1579 | icon = 'actionicon_reload.png' |
---|
| 1580 | text = 'Relocate student' |
---|
| 1581 | target = 'relocate' |
---|
| 1582 | |
---|
[7459] | 1583 | class BedTicketRelocationPage(UtilityView, grok.View): |
---|
[7015] | 1584 | """ Callback view |
---|
| 1585 | """ |
---|
| 1586 | grok.context(IBedTicket) |
---|
| 1587 | grok.name('relocate') |
---|
| 1588 | grok.require('waeup.manageHostels') |
---|
| 1589 | |
---|
[7059] | 1590 | # Relocate student if student parameters have changed or the bed_type |
---|
| 1591 | # of the bed has changed |
---|
[7015] | 1592 | def update(self): |
---|
| 1593 | student = self.context.getStudent() |
---|
[7150] | 1594 | students_utils = getUtility(IStudentsUtils) |
---|
[7186] | 1595 | acc_details = students_utils.getAccommodationDetails(student) |
---|
[7068] | 1596 | if self.context.bed != None and \ |
---|
| 1597 | 'reserved' in self.context.bed.bed_type: |
---|
| 1598 | self.flash("Students in reserved beds can't be relocated.") |
---|
| 1599 | self.redirect(self.url(self.context)) |
---|
| 1600 | return |
---|
[7059] | 1601 | if acc_details['bt'] == self.context.bed_type and \ |
---|
[7068] | 1602 | self.context.bed != None and \ |
---|
[7059] | 1603 | self.context.bed.bed_type == self.context.bed_type: |
---|
[7068] | 1604 | self.flash("Student can't be relocated.") |
---|
| 1605 | self.redirect(self.url(self.context)) |
---|
[7015] | 1606 | return |
---|
[7068] | 1607 | # Search a bed |
---|
[7015] | 1608 | cat = queryUtility(ICatalog, name='beds_catalog', default=None) |
---|
| 1609 | entries = cat.searchResults( |
---|
[7068] | 1610 | owner=(student.student_id,student.student_id)) |
---|
| 1611 | if len(entries) and self.context.bed == None: |
---|
| 1612 | # If booking has been cancelled but other bed space has been |
---|
| 1613 | # manually allocated after cancellation use this bed |
---|
| 1614 | new_bed = [entry for entry in entries][0] |
---|
| 1615 | else: |
---|
| 1616 | # Search for other available beds |
---|
| 1617 | entries = cat.searchResults( |
---|
| 1618 | bed_type=(acc_details['bt'],acc_details['bt'])) |
---|
| 1619 | available_beds = [ |
---|
| 1620 | entry for entry in entries if entry.owner == NOT_OCCUPIED] |
---|
| 1621 | if available_beds: |
---|
[7150] | 1622 | students_utils = getUtility(IStudentsUtils) |
---|
[7186] | 1623 | new_bed = students_utils.selectBed(available_beds) |
---|
[7068] | 1624 | new_bed.bookBed(student.student_id) |
---|
| 1625 | else: |
---|
| 1626 | self.flash('There is no free bed in your category %s.' |
---|
| 1627 | % acc_details['bt']) |
---|
| 1628 | self.redirect(self.url(self.context)) |
---|
| 1629 | return |
---|
| 1630 | # Rlease old bed if exists |
---|
| 1631 | if self.context.bed != None: |
---|
| 1632 | self.context.bed.owner = NOT_OCCUPIED |
---|
| 1633 | notify(grok.ObjectModifiedEvent(self.context.bed)) |
---|
[7015] | 1634 | # Alocate new bed |
---|
| 1635 | self.context.bed_type = acc_details['bt'] |
---|
[7068] | 1636 | self.context.bed = new_bed |
---|
| 1637 | hall_title = new_bed.__parent__.hostel_name |
---|
| 1638 | coordinates = new_bed.getBedCoordinates()[1:] |
---|
[7015] | 1639 | block, room_nr, bed_nr = coordinates |
---|
[7068] | 1640 | self.context.bed_coordinates = '%s, Block %s, Room %s, Bed %s (%s)' % ( |
---|
| 1641 | hall_title, block, room_nr, bed_nr, new_bed.bed_type) |
---|
| 1642 | self.flash('Student relocated: %s' % self.context.bed_coordinates) |
---|
[7015] | 1643 | self.redirect(self.url(self.context)) |
---|
| 1644 | return |
---|
| 1645 | |
---|
| 1646 | def render(self): |
---|
[7068] | 1647 | #self.redirect(self.url(self.context, '@@index')) |
---|
[7015] | 1648 | return |
---|
| 1649 | |
---|
[7321] | 1650 | class StudentHistoryPage(SIRPPage): |
---|
[6637] | 1651 | """ Page to display student clearance data |
---|
| 1652 | """ |
---|
| 1653 | grok.context(IStudent) |
---|
| 1654 | grok.name('history') |
---|
[6660] | 1655 | grok.require('waeup.viewStudent') |
---|
[6637] | 1656 | grok.template('studenthistory') |
---|
[6642] | 1657 | pnav = 4 |
---|
[6637] | 1658 | |
---|
| 1659 | @property |
---|
| 1660 | def label(self): |
---|
[7364] | 1661 | return '%s: History' % self.context.display_fullname |
---|
[6694] | 1662 | |
---|
| 1663 | # Pages for students only |
---|
| 1664 | |
---|
[7133] | 1665 | class StudentBaseActionButton(ManageActionButton): |
---|
[6694] | 1666 | grok.order(1) |
---|
| 1667 | grok.context(IStudent) |
---|
| 1668 | grok.view(StudentBaseDisplayFormPage) |
---|
| 1669 | grok.require('waeup.handleStudent') |
---|
[7133] | 1670 | text = 'Edit base data' |
---|
| 1671 | target = 'edit_base' |
---|
| 1672 | |
---|
| 1673 | class StudentPasswordActionButton(ManageActionButton): |
---|
| 1674 | grok.order(2) |
---|
| 1675 | grok.context(IStudent) |
---|
| 1676 | grok.view(StudentBaseDisplayFormPage) |
---|
| 1677 | grok.require('waeup.handleStudent') |
---|
[7114] | 1678 | icon = 'actionicon_key.png' |
---|
[6694] | 1679 | text = 'Change password' |
---|
[7114] | 1680 | target = 'change_password' |
---|
[6694] | 1681 | |
---|
[7114] | 1682 | class StudentPassportActionButton(ManageActionButton): |
---|
[7133] | 1683 | grok.order(3) |
---|
[7114] | 1684 | grok.context(IStudent) |
---|
| 1685 | grok.view(StudentBaseDisplayFormPage) |
---|
| 1686 | grok.require('waeup.handleStudent') |
---|
| 1687 | icon = 'actionicon_portrait.png' |
---|
| 1688 | text = 'Change portrait' |
---|
| 1689 | target = 'change_portrait' |
---|
| 1690 | |
---|
[7133] | 1691 | @property |
---|
| 1692 | def target_url(self): |
---|
| 1693 | if self.context.state != 'admitted': |
---|
| 1694 | return '' |
---|
| 1695 | return self.view.url(self.view.context, self.target) |
---|
| 1696 | |
---|
[7321] | 1697 | class StudentBaseEditFormPage(SIRPEditFormPage): |
---|
[7133] | 1698 | """ View to edit student base data |
---|
| 1699 | """ |
---|
| 1700 | grok.context(IStudent) |
---|
| 1701 | grok.name('edit_base') |
---|
| 1702 | grok.require('waeup.handleStudent') |
---|
| 1703 | form_fields = grok.AutoFields(IStudentBase).select( |
---|
| 1704 | 'email', 'phone') |
---|
| 1705 | label = 'Edit base data' |
---|
| 1706 | pnav = 4 |
---|
| 1707 | |
---|
[7459] | 1708 | @action('Save', style='primary') |
---|
[7133] | 1709 | def save(self, **data): |
---|
| 1710 | msave(self, **data) |
---|
| 1711 | return |
---|
| 1712 | |
---|
[7321] | 1713 | class StudentChangePasswordPage(SIRPEditFormPage): |
---|
[7144] | 1714 | """ View to manage student base data |
---|
[6756] | 1715 | """ |
---|
| 1716 | grok.context(IStudent) |
---|
[7114] | 1717 | grok.name('change_password') |
---|
[6694] | 1718 | grok.require('waeup.handleStudent') |
---|
[7144] | 1719 | grok.template('change_password') |
---|
[6694] | 1720 | label = 'Change password' |
---|
| 1721 | pnav = 4 |
---|
| 1722 | |
---|
[7459] | 1723 | @action('Save', style='primary') |
---|
[7144] | 1724 | def save(self, **data): |
---|
| 1725 | form = self.request.form |
---|
| 1726 | password = form.get('change_password', None) |
---|
| 1727 | password_ctl = form.get('change_password_repeat', None) |
---|
| 1728 | if password: |
---|
[7147] | 1729 | validator = getUtility(IPasswordValidator) |
---|
| 1730 | errors = validator.validate_password(password, password_ctl) |
---|
| 1731 | if not errors: |
---|
| 1732 | IUserAccount(self.context).setPassword(password) |
---|
| 1733 | write_log_message(self, 'saved: password') |
---|
| 1734 | self.flash('Password changed.') |
---|
[6756] | 1735 | else: |
---|
[7147] | 1736 | self.flash( ' '.join(errors)) |
---|
[6756] | 1737 | return |
---|
| 1738 | |
---|
[7321] | 1739 | class StudentFilesUploadPage(SIRPPage): |
---|
[7114] | 1740 | """ View to upload files by student |
---|
| 1741 | """ |
---|
| 1742 | grok.context(IStudent) |
---|
| 1743 | grok.name('change_portrait') |
---|
[7127] | 1744 | grok.require('waeup.uploadStudentFile') |
---|
[7114] | 1745 | grok.template('filesuploadpage') |
---|
| 1746 | label = 'Upload portrait' |
---|
| 1747 | pnav = 4 |
---|
| 1748 | |
---|
[7133] | 1749 | def update(self): |
---|
| 1750 | if self.context.getStudent().state != 'admitted': |
---|
[7145] | 1751 | emit_lock_message(self) |
---|
[7133] | 1752 | return |
---|
| 1753 | super(StudentFilesUploadPage, self).update() |
---|
| 1754 | return |
---|
| 1755 | |
---|
[6719] | 1756 | class StudentClearanceStartActionButton(ManageActionButton): |
---|
| 1757 | grok.order(1) |
---|
| 1758 | grok.context(IStudent) |
---|
| 1759 | grok.view(StudentClearanceDisplayFormPage) |
---|
| 1760 | grok.require('waeup.handleStudent') |
---|
[7116] | 1761 | icon = 'actionicon_start.gif' |
---|
[6719] | 1762 | text = 'Start clearance' |
---|
| 1763 | target = 'start_clearance' |
---|
| 1764 | |
---|
| 1765 | @property |
---|
| 1766 | def target_url(self): |
---|
| 1767 | if self.context.state != 'admitted': |
---|
| 1768 | return '' |
---|
| 1769 | return self.view.url(self.view.context, self.target) |
---|
| 1770 | |
---|
[7321] | 1771 | class StartClearancePage(SIRPPage): |
---|
[6770] | 1772 | grok.context(IStudent) |
---|
| 1773 | grok.name('start_clearance') |
---|
| 1774 | grok.require('waeup.handleStudent') |
---|
| 1775 | grok.template('enterpin') |
---|
| 1776 | label = 'Start clearance' |
---|
| 1777 | ac_prefix = 'CLR' |
---|
| 1778 | notice = '' |
---|
| 1779 | pnav = 4 |
---|
| 1780 | buttonname = 'Start clearance now' |
---|
| 1781 | |
---|
[7133] | 1782 | @property |
---|
| 1783 | def all_required_fields_filled(self): |
---|
| 1784 | if self.context.email and self.context.phone: |
---|
| 1785 | return True |
---|
| 1786 | return False |
---|
| 1787 | |
---|
| 1788 | @property |
---|
| 1789 | def portrait_uploaded(self): |
---|
| 1790 | store = getUtility(IExtFileStore) |
---|
| 1791 | if store.getFileByContext(self.context, attr=u'passport.jpg'): |
---|
| 1792 | return True |
---|
| 1793 | return False |
---|
| 1794 | |
---|
[6770] | 1795 | def update(self, SUBMIT=None): |
---|
[6936] | 1796 | if not self.context.state == 'admitted': |
---|
| 1797 | self.flash("Wrong state.") |
---|
| 1798 | self.redirect(self.url(self.context)) |
---|
| 1799 | return |
---|
[7133] | 1800 | if not self.portrait_uploaded: |
---|
| 1801 | self.flash("No portrait uploaded.") |
---|
| 1802 | self.redirect(self.url(self.context, 'change_portrait')) |
---|
| 1803 | return |
---|
| 1804 | if not self.all_required_fields_filled: |
---|
| 1805 | self.flash("Not all required fields filled.") |
---|
| 1806 | self.redirect(self.url(self.context, 'edit_base')) |
---|
| 1807 | return |
---|
[6770] | 1808 | self.ac_series = self.request.form.get('ac_series', None) |
---|
| 1809 | self.ac_number = self.request.form.get('ac_number', None) |
---|
| 1810 | |
---|
| 1811 | if SUBMIT is None: |
---|
| 1812 | return |
---|
| 1813 | pin = '%s-%s-%s' % (self.ac_prefix, self.ac_series, self.ac_number) |
---|
| 1814 | code = get_access_code(pin) |
---|
| 1815 | if not code: |
---|
[6936] | 1816 | self.flash('Activation code is invalid.') |
---|
[6770] | 1817 | return |
---|
| 1818 | # Mark pin as used (this also fires a pin related transition) |
---|
| 1819 | # and fire transition start_clearance |
---|
| 1820 | if code.state == USED: |
---|
[6936] | 1821 | self.flash('Activation code has already been used.') |
---|
[6770] | 1822 | return |
---|
| 1823 | else: |
---|
| 1824 | comment = u"AC invalidated for %s" % self.context.student_id |
---|
| 1825 | # Here we know that the ac is in state initialized so we do not |
---|
[6927] | 1826 | # expect an exception, but the owner might be different |
---|
| 1827 | if not invalidate_accesscode(pin,comment,self.context.student_id): |
---|
| 1828 | self.flash('You are not the owner of this access code.') |
---|
| 1829 | return |
---|
[6770] | 1830 | self.context.clr_code = pin |
---|
| 1831 | IWorkflowInfo(self.context).fireTransition('start_clearance') |
---|
[6771] | 1832 | self.flash('Clearance process has been started.') |
---|
[6770] | 1833 | self.redirect(self.url(self.context,'cedit')) |
---|
| 1834 | return |
---|
| 1835 | |
---|
[6695] | 1836 | class StudentClearanceEditActionButton(ManageActionButton): |
---|
| 1837 | grok.order(1) |
---|
| 1838 | grok.context(IStudent) |
---|
| 1839 | grok.view(StudentClearanceDisplayFormPage) |
---|
| 1840 | grok.require('waeup.handleStudent') |
---|
[6722] | 1841 | text = 'Edit' |
---|
[6695] | 1842 | target = 'cedit' |
---|
| 1843 | |
---|
[6717] | 1844 | @property |
---|
| 1845 | def target_url(self): |
---|
| 1846 | if self.context.clearance_locked: |
---|
| 1847 | return '' |
---|
| 1848 | return self.view.url(self.view.context, self.target) |
---|
| 1849 | |
---|
[6695] | 1850 | class StudentClearanceEditFormPage(StudentClearanceManageFormPage): |
---|
| 1851 | """ View to edit student clearance data by student |
---|
| 1852 | """ |
---|
| 1853 | grok.context(IStudent) |
---|
| 1854 | grok.name('cedit') |
---|
| 1855 | grok.require('waeup.handleStudent') |
---|
[6756] | 1856 | form_fields = grok.AutoFields( |
---|
| 1857 | IStudentClearanceEdit).omit('clearance_locked') |
---|
[6722] | 1858 | label = 'Edit clearance data' |
---|
[6695] | 1859 | form_fields['date_of_birth'].custom_widget = FriendlyDateWidget('le-year') |
---|
[6718] | 1860 | |
---|
| 1861 | def update(self): |
---|
| 1862 | if self.context.clearance_locked: |
---|
[7145] | 1863 | emit_lock_message(self) |
---|
[6718] | 1864 | return |
---|
| 1865 | return super(StudentClearanceEditFormPage, self).update() |
---|
[6719] | 1866 | |
---|
[7459] | 1867 | @action('Save', style='primary') |
---|
[6722] | 1868 | def save(self, **data): |
---|
| 1869 | self.applyData(self.context, **data) |
---|
[6771] | 1870 | self.flash('Clearance form has been saved.') |
---|
[6722] | 1871 | return |
---|
| 1872 | |
---|
[7253] | 1873 | # To be specified in the customisation package |
---|
| 1874 | def dataNotComplete(self): |
---|
| 1875 | #store = getUtility(IExtFileStore) |
---|
| 1876 | #if not store.getFileByContext(self.context, attr=u'xyz.jpg'): |
---|
| 1877 | # return 'No xyz scan uploaded.' |
---|
| 1878 | return False |
---|
| 1879 | |
---|
[7459] | 1880 | @action('Save and request clearance', style='primary') |
---|
[7186] | 1881 | def requestClearance(self, **data): |
---|
[6722] | 1882 | self.applyData(self.context, **data) |
---|
[7275] | 1883 | #self.context._p_changed = True |
---|
[7253] | 1884 | if self.dataNotComplete(): |
---|
| 1885 | self.flash(self.dataNotComplete()) |
---|
| 1886 | return |
---|
[6771] | 1887 | self.flash('Clearance form has been saved.') |
---|
[6769] | 1888 | self.redirect(self.url(self.context,'request_clearance')) |
---|
[6722] | 1889 | return |
---|
| 1890 | |
---|
[7321] | 1891 | class RequestClearancePage(SIRPPage): |
---|
[6769] | 1892 | grok.context(IStudent) |
---|
| 1893 | grok.name('request_clearance') |
---|
| 1894 | grok.require('waeup.handleStudent') |
---|
| 1895 | grok.template('enterpin') |
---|
| 1896 | label = 'Request clearance' |
---|
| 1897 | notice = 'Enter the CLR access code used for starting clearance.' |
---|
| 1898 | ac_prefix = 'CLR' |
---|
| 1899 | pnav = 4 |
---|
| 1900 | buttonname = 'Request clearance now' |
---|
| 1901 | |
---|
| 1902 | def update(self, SUBMIT=None): |
---|
| 1903 | self.ac_series = self.request.form.get('ac_series', None) |
---|
| 1904 | self.ac_number = self.request.form.get('ac_number', None) |
---|
| 1905 | if SUBMIT is None: |
---|
| 1906 | return |
---|
| 1907 | pin = '%s-%s-%s' % (self.ac_prefix, self.ac_series, self.ac_number) |
---|
| 1908 | if self.context.clr_code != pin: |
---|
| 1909 | self.flash("This isn't your CLR access code.") |
---|
| 1910 | return |
---|
| 1911 | state = IWorkflowState(self.context).getState() |
---|
| 1912 | # This shouldn't happen, but the application officer |
---|
| 1913 | # might have forgotten to lock the form after changing the state |
---|
| 1914 | if state != CLEARANCE: |
---|
| 1915 | self.flash('This form cannot be submitted. Wrong state!') |
---|
| 1916 | return |
---|
| 1917 | IWorkflowInfo(self.context).fireTransition('request_clearance') |
---|
| 1918 | self.flash('Clearance has been requested.') |
---|
| 1919 | self.redirect(self.url(self.context)) |
---|
[6789] | 1920 | return |
---|
[6806] | 1921 | |
---|
[6944] | 1922 | class CourseRegistrationStartActionButton(ManageActionButton): |
---|
| 1923 | grok.order(1) |
---|
| 1924 | grok.context(IStudentStudyCourse) |
---|
| 1925 | grok.view(StudyCourseDisplayFormPage) |
---|
| 1926 | grok.require('waeup.handleStudent') |
---|
[7116] | 1927 | icon = 'actionicon_start.gif' |
---|
[6944] | 1928 | text = 'Start course registration' |
---|
| 1929 | target = 'start_course_registration' |
---|
| 1930 | |
---|
| 1931 | @property |
---|
| 1932 | def target_url(self): |
---|
| 1933 | if not self.context.getStudent().state in (CLEARED,RETURNING): |
---|
| 1934 | return '' |
---|
| 1935 | return self.view.url(self.view.context, self.target) |
---|
| 1936 | |
---|
[7321] | 1937 | class StartCourseRegistrationPage(SIRPPage): |
---|
[6944] | 1938 | grok.context(IStudentStudyCourse) |
---|
| 1939 | grok.name('start_course_registration') |
---|
| 1940 | grok.require('waeup.handleStudent') |
---|
| 1941 | grok.template('enterpin') |
---|
| 1942 | label = 'Start course registration' |
---|
| 1943 | ac_prefix = 'SFE' |
---|
| 1944 | notice = '' |
---|
| 1945 | pnav = 4 |
---|
| 1946 | buttonname = 'Start course registration now' |
---|
| 1947 | |
---|
| 1948 | def update(self, SUBMIT=None): |
---|
| 1949 | if not self.context.getStudent().state in (CLEARED,RETURNING): |
---|
| 1950 | self.flash("Wrong state.") |
---|
| 1951 | self.redirect(self.url(self.context)) |
---|
| 1952 | return |
---|
| 1953 | self.ac_series = self.request.form.get('ac_series', None) |
---|
| 1954 | self.ac_number = self.request.form.get('ac_number', None) |
---|
| 1955 | |
---|
| 1956 | if SUBMIT is None: |
---|
| 1957 | return |
---|
| 1958 | pin = '%s-%s-%s' % (self.ac_prefix, self.ac_series, self.ac_number) |
---|
| 1959 | code = get_access_code(pin) |
---|
| 1960 | if not code: |
---|
| 1961 | self.flash('Activation code is invalid.') |
---|
| 1962 | return |
---|
| 1963 | # Mark pin as used (this also fires a pin related transition) |
---|
| 1964 | # and fire transition start_clearance |
---|
| 1965 | if code.state == USED: |
---|
| 1966 | self.flash('Activation code has already been used.') |
---|
| 1967 | return |
---|
| 1968 | else: |
---|
| 1969 | comment = u"AC invalidated for %s" % self.context.getStudent().student_id |
---|
| 1970 | # Here we know that the ac is in state initialized so we do not |
---|
| 1971 | # expect an exception, but the owner might be different |
---|
| 1972 | if not invalidate_accesscode( |
---|
| 1973 | pin,comment,self.context.getStudent().student_id): |
---|
| 1974 | self.flash('You are not the owner of this access code.') |
---|
| 1975 | return |
---|
| 1976 | if self.context.getStudent().state == CLEARED: |
---|
| 1977 | IWorkflowInfo(self.context.getStudent()).fireTransition( |
---|
| 1978 | 'pay_first_school_fee') |
---|
| 1979 | elif self.context.getStudent().state == RETURNING: |
---|
| 1980 | IWorkflowInfo(self.context.getStudent()).fireTransition( |
---|
| 1981 | 'pay_school_fee') |
---|
| 1982 | self.flash('Course registration has been started.') |
---|
| 1983 | self.redirect(self.url(self.context)) |
---|
| 1984 | return |
---|
| 1985 | |
---|
| 1986 | |
---|
[6808] | 1987 | class AddStudyLevelActionButton(AddActionButton): |
---|
| 1988 | grok.order(1) |
---|
| 1989 | grok.context(IStudentStudyCourse) |
---|
| 1990 | grok.view(StudyCourseDisplayFormPage) |
---|
| 1991 | grok.require('waeup.handleStudent') |
---|
| 1992 | text = 'Add course list' |
---|
| 1993 | target = 'add' |
---|
| 1994 | |
---|
| 1995 | @property |
---|
| 1996 | def target_url(self): |
---|
| 1997 | student = self.view.context.getStudent() |
---|
| 1998 | condition1 = student.state != 'school fee paid' |
---|
| 1999 | condition2 = str(student['studycourse'].current_level) in \ |
---|
| 2000 | self.view.context.keys() |
---|
| 2001 | if condition1 or condition2: |
---|
| 2002 | return '' |
---|
| 2003 | return self.view.url(self.view.context, self.target) |
---|
| 2004 | |
---|
[7321] | 2005 | class AddStudyLevelFormPage(SIRPEditFormPage): |
---|
[6806] | 2006 | """ Page for students to add current study levels |
---|
| 2007 | """ |
---|
| 2008 | grok.context(IStudentStudyCourse) |
---|
| 2009 | grok.name('add') |
---|
| 2010 | grok.require('waeup.handleStudent') |
---|
| 2011 | grok.template('studyleveladdpage') |
---|
| 2012 | form_fields = grok.AutoFields(IStudentStudyCourse) |
---|
| 2013 | pnav = 4 |
---|
| 2014 | |
---|
| 2015 | @property |
---|
| 2016 | def label(self): |
---|
| 2017 | studylevelsource = StudyLevelSource().factory |
---|
| 2018 | code = self.context.current_level |
---|
| 2019 | title = studylevelsource.getTitle(self.context, code) |
---|
| 2020 | return 'Add current level %s' % title |
---|
| 2021 | |
---|
| 2022 | def update(self): |
---|
| 2023 | if self.context.getStudent().state != 'school fee paid': |
---|
[7145] | 2024 | emit_lock_message(self) |
---|
[6806] | 2025 | return |
---|
| 2026 | super(AddStudyLevelFormPage, self).update() |
---|
| 2027 | return |
---|
| 2028 | |
---|
[7459] | 2029 | @action('Create course list now', style='primary') |
---|
[6806] | 2030 | def addStudyLevel(self, **data): |
---|
| 2031 | studylevel = StudentStudyLevel() |
---|
| 2032 | studylevel.level = self.context.current_level |
---|
| 2033 | studylevel.level_session = self.context.current_session |
---|
| 2034 | try: |
---|
| 2035 | self.context.addStudentStudyLevel( |
---|
| 2036 | self.context.certificate,studylevel) |
---|
| 2037 | except KeyError: |
---|
| 2038 | self.flash('This level exists.') |
---|
| 2039 | self.redirect(self.url(self.context)) |
---|
| 2040 | return |
---|
[6808] | 2041 | |
---|
| 2042 | class StudyLevelEditActionButton(ManageActionButton): |
---|
| 2043 | grok.order(1) |
---|
| 2044 | grok.context(IStudentStudyLevel) |
---|
| 2045 | grok.view(StudyLevelDisplayFormPage) |
---|
| 2046 | grok.require('waeup.handleStudent') |
---|
| 2047 | text = 'Add and remove courses' |
---|
| 2048 | target = 'edit' |
---|
| 2049 | |
---|
| 2050 | @property |
---|
| 2051 | def target_url(self): |
---|
| 2052 | student = self.view.context.getStudent() |
---|
| 2053 | condition1 = student.state != 'school fee paid' |
---|
| 2054 | condition2 = student[ |
---|
| 2055 | 'studycourse'].current_level != self.view.context.level |
---|
| 2056 | if condition1 or condition2: |
---|
| 2057 | return '' |
---|
| 2058 | return self.view.url(self.view.context, self.target) |
---|
| 2059 | |
---|
[7321] | 2060 | class StudyLevelEditFormPage(SIRPEditFormPage): |
---|
[6808] | 2061 | """ Page to edit the student study level data by students |
---|
| 2062 | """ |
---|
| 2063 | grok.context(IStudentStudyLevel) |
---|
| 2064 | grok.name('edit') |
---|
| 2065 | grok.require('waeup.handleStudent') |
---|
| 2066 | grok.template('studyleveleditpage') |
---|
| 2067 | form_fields = grok.AutoFields(IStudentStudyLevel).omit( |
---|
| 2068 | 'level_session', 'level_verdict') |
---|
| 2069 | pnav = 4 |
---|
| 2070 | |
---|
| 2071 | def update(self): |
---|
| 2072 | super(StudyLevelEditFormPage, self).update() |
---|
| 2073 | datatable.need() |
---|
[7329] | 2074 | warning.need() |
---|
[6808] | 2075 | return |
---|
| 2076 | |
---|
| 2077 | @property |
---|
| 2078 | def label(self): |
---|
| 2079 | return 'Add and remove course tickets of study level %s' % self.context.level_title |
---|
| 2080 | |
---|
| 2081 | @property |
---|
| 2082 | def total_credits(self): |
---|
| 2083 | total_credits = 0 |
---|
| 2084 | for key, val in self.context.items(): |
---|
| 2085 | total_credits += val.credits |
---|
| 2086 | return total_credits |
---|
| 2087 | |
---|
[7459] | 2088 | @action('Add course ticket') |
---|
[6808] | 2089 | def addCourseTicket(self, **data): |
---|
| 2090 | self.redirect(self.url(self.context, 'ctadd')) |
---|
| 2091 | |
---|
[7329] | 2092 | @jsaction('Remove selected tickets') |
---|
[6808] | 2093 | def delCourseTicket(self, **data): |
---|
| 2094 | form = self.request.form |
---|
| 2095 | if form.has_key('val_id'): |
---|
| 2096 | child_id = form['val_id'] |
---|
| 2097 | else: |
---|
| 2098 | self.flash('No ticket selected.') |
---|
| 2099 | self.redirect(self.url(self.context, '@@edit')) |
---|
| 2100 | return |
---|
| 2101 | if not isinstance(child_id, list): |
---|
| 2102 | child_id = [child_id] |
---|
| 2103 | deleted = [] |
---|
| 2104 | for id in child_id: |
---|
[6940] | 2105 | # Students are not allowed to remove core tickets |
---|
[6808] | 2106 | if not self.context[id].core_or_elective: |
---|
| 2107 | try: |
---|
| 2108 | del self.context[id] |
---|
| 2109 | deleted.append(id) |
---|
| 2110 | except: |
---|
| 2111 | self.flash('Could not delete %s: %s: %s' % ( |
---|
| 2112 | id, sys.exc_info()[0], sys.exc_info()[1])) |
---|
| 2113 | if len(deleted): |
---|
| 2114 | self.flash('Successfully removed: %s' % ', '.join(deleted)) |
---|
| 2115 | self.redirect(self.url(self.context, u'@@edit')) |
---|
| 2116 | return |
---|
| 2117 | |
---|
[7459] | 2118 | @action('Register course list', style='primary') |
---|
[7186] | 2119 | def RegisterCourses(self, **data): |
---|
[6810] | 2120 | IWorkflowInfo(self.context.getStudent()).fireTransition('register_courses') |
---|
| 2121 | self.flash('Course list has been registered.') |
---|
| 2122 | self.redirect(self.url(self.context)) |
---|
| 2123 | return |
---|
| 2124 | |
---|
[6808] | 2125 | class CourseTicketAddFormPage2(CourseTicketAddFormPage): |
---|
| 2126 | """Add a course ticket by student. |
---|
| 2127 | """ |
---|
| 2128 | grok.name('ctadd') |
---|
| 2129 | grok.require('waeup.handleStudent') |
---|
| 2130 | form_fields = grok.AutoFields(ICourseTicketAdd).omit( |
---|
| 2131 | 'grade', 'score', 'core_or_elective', 'automatic') |
---|
| 2132 | |
---|
[7459] | 2133 | @action('Add course ticket') |
---|
[6808] | 2134 | def addCourseTicket(self, **data): |
---|
| 2135 | ticket = CourseTicket() |
---|
| 2136 | course = data['course'] |
---|
| 2137 | ticket.automatic = False |
---|
| 2138 | ticket.code = course.code |
---|
| 2139 | ticket.title = course.title |
---|
| 2140 | ticket.faculty = course.__parent__.__parent__.__parent__.title |
---|
| 2141 | ticket.department = course.__parent__.__parent__.title |
---|
| 2142 | ticket.credits = course.credits |
---|
| 2143 | ticket.passmark = course.passmark |
---|
| 2144 | ticket.semester = course.semester |
---|
| 2145 | try: |
---|
| 2146 | self.context.addCourseTicket(ticket) |
---|
| 2147 | except KeyError: |
---|
| 2148 | self.flash('The ticket exists.') |
---|
| 2149 | return |
---|
| 2150 | self.flash('Successfully added %s.' % ticket.code) |
---|
| 2151 | self.redirect(self.url(self.context, u'@@edit')) |
---|
| 2152 | return |
---|
[7369] | 2153 | |
---|
| 2154 | class ChangePasswordRequestPage(SIRPForm): |
---|
| 2155 | """Captcha'd page for students to request a password change. |
---|
| 2156 | """ |
---|
| 2157 | grok.context(IUniversity) |
---|
| 2158 | grok.name('changepw') |
---|
| 2159 | grok.require('waeup.Anonymous') |
---|
| 2160 | grok.template('changepw') |
---|
| 2161 | label = 'Change my password' |
---|
| 2162 | form_fields = grok.AutoFields(IStudentChangePassword) |
---|
| 2163 | |
---|
| 2164 | def update(self): |
---|
| 2165 | # Handle captcha |
---|
| 2166 | self.captcha = getUtility(ICaptchaManager).getCaptcha() |
---|
| 2167 | self.captcha_result = self.captcha.verify(self.request) |
---|
| 2168 | self.captcha_code = self.captcha.display(self.captcha_result.error_code) |
---|
| 2169 | return |
---|
| 2170 | |
---|
[7462] | 2171 | @action('Get new login credentials', style='primary') |
---|
[7369] | 2172 | def request(self, **data): |
---|
| 2173 | if not self.captcha_result.is_valid: |
---|
| 2174 | # Captcha will display error messages automatically. |
---|
| 2175 | # No need to flash something. |
---|
| 2176 | return |
---|
| 2177 | # Search student |
---|
| 2178 | cat = queryUtility(ICatalog, name='students_catalog') |
---|
| 2179 | reg_number = data['reg_number'] |
---|
| 2180 | email = data['email'] |
---|
| 2181 | results = cat.searchResults( |
---|
| 2182 | reg_number=(reg_number, reg_number), |
---|
| 2183 | email=(email,email)) |
---|
| 2184 | if len(results) == 0: |
---|
| 2185 | self.flash('No student record found.') |
---|
| 2186 | return |
---|
| 2187 | student = list(results)[0] |
---|
| 2188 | # Change password |
---|
| 2189 | sirp_utils = getUtility(ISIRPUtils) |
---|
| 2190 | pwd = sirp_utils.genPassword() |
---|
| 2191 | IUserAccount(student).setPassword(pwd) |
---|
| 2192 | # Send email with new redentials |
---|
| 2193 | msg = 'You have successfully changed your password for the' |
---|
| 2194 | login_url = self.url(grok.getSite(), 'login') |
---|
[7407] | 2195 | success = sirp_utils.sendCredentials( |
---|
| 2196 | IUserAccount(student),pwd,login_url,msg) |
---|
[7369] | 2197 | if success: |
---|
| 2198 | self.flash('An email with your user name and password ' + |
---|
[7407] | 2199 | 'has been sent to %s.' % email) |
---|
[7369] | 2200 | else: |
---|
| 2201 | self.flash('An smtp server error occurred.') |
---|
| 2202 | return |
---|