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