[5273] | 1 | ## $Id: browser.py 7903 2012-03-17 23:54:05Z uli $ |
---|
[6078] | 2 | ## |
---|
[7192] | 3 | ## Copyright (C) 2011 Uli Fouquet & Henrik Bettermann |
---|
[5273] | 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. |
---|
[6078] | 8 | ## |
---|
[5273] | 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. |
---|
[6078] | 13 | ## |
---|
[5273] | 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 | ## |
---|
[5824] | 18 | """UI components for basic applicants and related components. |
---|
[5273] | 19 | """ |
---|
[7063] | 20 | import os |
---|
[6082] | 21 | import sys |
---|
[5273] | 22 | import grok |
---|
[7250] | 23 | from time import time |
---|
[7370] | 24 | from datetime import datetime, date |
---|
[7392] | 25 | from zope.component import getUtility, createObject, getAdapter |
---|
[7714] | 26 | from zope.i18n import translate |
---|
[7322] | 27 | from hurry.workflow.interfaces import ( |
---|
| 28 | IWorkflowInfo, IWorkflowState, InvalidTransitionError) |
---|
[7811] | 29 | from waeup.kofa.applicants.interfaces import ( |
---|
[7363] | 30 | IApplicant, IApplicantEdit, IApplicantsRoot, |
---|
[7683] | 31 | IApplicantsContainer, IApplicantsContainerAdd, |
---|
| 32 | MAX_UPLOAD_SIZE, IApplicantOnlinePayment, IApplicantsUtils |
---|
[7363] | 33 | ) |
---|
[7811] | 34 | from waeup.kofa.applicants.workflow import INITIALIZED, STARTED, PAID, SUBMITTED |
---|
| 35 | from waeup.kofa.browser import ( |
---|
[7819] | 36 | KofaPage, KofaEditFormPage, KofaAddFormPage, KofaDisplayFormPage, |
---|
[7363] | 37 | DEFAULT_PASSPORT_IMAGE_PATH) |
---|
[7811] | 38 | from waeup.kofa.browser.interfaces import ICaptchaManager |
---|
| 39 | from waeup.kofa.browser.breadcrumbs import Breadcrumb |
---|
| 40 | from waeup.kofa.browser.layout import ( |
---|
[7459] | 41 | NullValidator, jsaction, action, UtilityView) |
---|
[7811] | 42 | from waeup.kofa.browser.pages import add_local_role, del_local_roles |
---|
| 43 | from waeup.kofa.browser.resources import datepicker, tabs, datatable, warning |
---|
| 44 | from waeup.kofa.interfaces import ( |
---|
[7819] | 45 | IKofaObject, ILocalRolesAssignable, IExtFileStore, IPDF, |
---|
| 46 | IFileStoreNameChooser, IPasswordValidator, IUserAccount, IKofaUtils) |
---|
[7811] | 47 | from waeup.kofa.interfaces import MessageFactory as _ |
---|
| 48 | from waeup.kofa.permissions import get_users_with_local_roles |
---|
| 49 | from waeup.kofa.students.interfaces import IStudentsUtils |
---|
| 50 | from waeup.kofa.utils.helpers import string_from_bytes, file_size |
---|
| 51 | from waeup.kofa.widgets.datewidget import ( |
---|
[7250] | 52 | FriendlyDateWidget, FriendlyDateDisplayWidget, |
---|
| 53 | FriendlyDatetimeDisplayWidget) |
---|
[7811] | 54 | from waeup.kofa.widgets.phonewidget import PhoneWidget |
---|
| 55 | from waeup.kofa.widgets.restwidget import ReSTDisplayWidget |
---|
[5320] | 56 | |
---|
[7819] | 57 | grok.context(IKofaObject) # Make IKofaObject the default context |
---|
[5273] | 58 | |
---|
[7819] | 59 | class ApplicantsRootPage(KofaPage): |
---|
[5822] | 60 | grok.context(IApplicantsRoot) |
---|
| 61 | grok.name('index') |
---|
[6153] | 62 | grok.require('waeup.Public') |
---|
[7710] | 63 | label = _('Application Section') |
---|
[5843] | 64 | pnav = 3 |
---|
[6012] | 65 | |
---|
| 66 | def update(self): |
---|
[6067] | 67 | super(ApplicantsRootPage, self).update() |
---|
[7493] | 68 | #datatable.need() |
---|
[6012] | 69 | return |
---|
| 70 | |
---|
[7819] | 71 | class ApplicantsRootManageFormPage(KofaEditFormPage): |
---|
[5828] | 72 | grok.context(IApplicantsRoot) |
---|
| 73 | grok.name('manage') |
---|
[6107] | 74 | grok.template('applicantsrootmanagepage') |
---|
[7710] | 75 | label = _('Manage application section') |
---|
[5843] | 76 | pnav = 3 |
---|
[7136] | 77 | grok.require('waeup.manageApplication') |
---|
[7710] | 78 | taboneactions = [_('Add applicants container'), _('Remove selected'), |
---|
| 79 | _('Cancel')] |
---|
| 80 | tabtwoactions1 = [_('Remove selected local roles')] |
---|
| 81 | tabtwoactions2 = [_('Add local role')] |
---|
| 82 | subunits = _('Applicants Containers') |
---|
[6078] | 83 | |
---|
[6069] | 84 | def update(self): |
---|
| 85 | tabs.need() |
---|
[6108] | 86 | datatable.need() |
---|
[7330] | 87 | warning.need() |
---|
[6069] | 88 | return super(ApplicantsRootManageFormPage, self).update() |
---|
[5828] | 89 | |
---|
[6184] | 90 | def getLocalRoles(self): |
---|
| 91 | roles = ILocalRolesAssignable(self.context) |
---|
| 92 | return roles() |
---|
| 93 | |
---|
| 94 | def getUsers(self): |
---|
| 95 | """Get a list of all users. |
---|
| 96 | """ |
---|
| 97 | for key, val in grok.getSite()['users'].items(): |
---|
| 98 | url = self.url(val) |
---|
| 99 | yield(dict(url=url, name=key, val=val)) |
---|
| 100 | |
---|
| 101 | def getUsersWithLocalRoles(self): |
---|
| 102 | return get_users_with_local_roles(self.context) |
---|
| 103 | |
---|
[7710] | 104 | @jsaction(_('Remove selected')) |
---|
[6069] | 105 | def delApplicantsContainers(self, **data): |
---|
| 106 | form = self.request.form |
---|
| 107 | child_id = form['val_id'] |
---|
| 108 | if not isinstance(child_id, list): |
---|
| 109 | child_id = [child_id] |
---|
| 110 | deleted = [] |
---|
| 111 | for id in child_id: |
---|
| 112 | try: |
---|
| 113 | del self.context[id] |
---|
| 114 | deleted.append(id) |
---|
| 115 | except: |
---|
[7710] | 116 | self.flash(_('Could not delete:') + ' %s: %s: %s' % ( |
---|
[6069] | 117 | id, sys.exc_info()[0], sys.exc_info()[1])) |
---|
| 118 | if len(deleted): |
---|
[7738] | 119 | self.flash(_('Successfully removed: ${a}', |
---|
| 120 | mapping = {'a':', '.join(deleted)})) |
---|
[7484] | 121 | self.redirect(self.url(self.context, '@@manage')) |
---|
[6078] | 122 | return |
---|
[5828] | 123 | |
---|
[7710] | 124 | @action(_('Add applicants container'), validator=NullValidator) |
---|
[6069] | 125 | def addApplicantsContainer(self, **data): |
---|
| 126 | self.redirect(self.url(self.context, '@@add')) |
---|
[6078] | 127 | return |
---|
| 128 | |
---|
[7710] | 129 | @action(_('Cancel'), validator=NullValidator) |
---|
[6069] | 130 | def cancel(self, **data): |
---|
| 131 | self.redirect(self.url(self.context)) |
---|
[6078] | 132 | return |
---|
| 133 | |
---|
[7710] | 134 | @action(_('Add local role'), validator=NullValidator) |
---|
[6184] | 135 | def addLocalRole(self, **data): |
---|
[7484] | 136 | return add_local_role(self,3, **data) |
---|
[6184] | 137 | |
---|
[7710] | 138 | @action(_('Remove selected local roles')) |
---|
[6184] | 139 | def delLocalRoles(self, **data): |
---|
[7484] | 140 | return del_local_roles(self,3,**data) |
---|
[6184] | 141 | |
---|
[7819] | 142 | class ApplicantsContainerAddFormPage(KofaAddFormPage): |
---|
[5822] | 143 | grok.context(IApplicantsRoot) |
---|
[7136] | 144 | grok.require('waeup.manageApplication') |
---|
[5822] | 145 | grok.name('add') |
---|
[6107] | 146 | grok.template('applicantscontaineraddpage') |
---|
[7710] | 147 | label = _('Add applicants container') |
---|
[5843] | 148 | pnav = 3 |
---|
[6078] | 149 | |
---|
[6103] | 150 | form_fields = grok.AutoFields( |
---|
[7903] | 151 | IApplicantsContainerAdd).omit('code').omit('title') |
---|
[6083] | 152 | form_fields['startdate'].custom_widget = FriendlyDateWidget('le') |
---|
| 153 | form_fields['enddate'].custom_widget = FriendlyDateWidget('le') |
---|
[6078] | 154 | |
---|
[6083] | 155 | def update(self): |
---|
| 156 | datepicker.need() # Enable jQuery datepicker in date fields. |
---|
| 157 | return super(ApplicantsContainerAddFormPage, self).update() |
---|
| 158 | |
---|
[7710] | 159 | @action(_('Add applicants container')) |
---|
[6069] | 160 | def addApplicantsContainer(self, **data): |
---|
[6103] | 161 | year = data['year'] |
---|
| 162 | code = u'%s%s' % (data['prefix'], year) |
---|
[7844] | 163 | appcats_dict = getUtility(IApplicantsUtils).APP_TYPES_DICT |
---|
[7685] | 164 | title = appcats_dict[data['prefix']][0] |
---|
| 165 | title = u'%s %s/%s' % (title, year, year + 1) |
---|
[6087] | 166 | if code in self.context.keys(): |
---|
[6105] | 167 | self.flash( |
---|
[7710] | 168 | _('An applicants container for the same application type and entrance year exists already in the database.')) |
---|
[5822] | 169 | return |
---|
| 170 | # Add new applicants container... |
---|
[6083] | 171 | provider = data['provider'][1] |
---|
[5822] | 172 | container = provider.factory() |
---|
[6069] | 173 | self.applyData(container, **data) |
---|
[6087] | 174 | container.code = code |
---|
| 175 | container.title = title |
---|
| 176 | self.context[code] = container |
---|
[7710] | 177 | self.flash(_('Added:') + ' "%s".' % code) |
---|
[7484] | 178 | self.redirect(self.url(self.context, u'@@manage')) |
---|
[5822] | 179 | return |
---|
[6078] | 180 | |
---|
[7710] | 181 | @action(_('Cancel'), validator=NullValidator) |
---|
[6069] | 182 | def cancel(self, **data): |
---|
[7484] | 183 | self.redirect(self.url(self.context, '@@manage')) |
---|
[6078] | 184 | |
---|
[5845] | 185 | class ApplicantsRootBreadcrumb(Breadcrumb): |
---|
| 186 | """A breadcrumb for applicantsroot. |
---|
| 187 | """ |
---|
| 188 | grok.context(IApplicantsRoot) |
---|
[7710] | 189 | title = _(u'Applicants') |
---|
[6078] | 190 | |
---|
[5845] | 191 | class ApplicantsContainerBreadcrumb(Breadcrumb): |
---|
| 192 | """A breadcrumb for applicantscontainers. |
---|
| 193 | """ |
---|
| 194 | grok.context(IApplicantsContainer) |
---|
[6319] | 195 | |
---|
[6153] | 196 | class ApplicantBreadcrumb(Breadcrumb): |
---|
| 197 | """A breadcrumb for applicants. |
---|
| 198 | """ |
---|
| 199 | grok.context(IApplicant) |
---|
[6319] | 200 | |
---|
[6153] | 201 | @property |
---|
| 202 | def title(self): |
---|
| 203 | """Get a title for a context. |
---|
| 204 | """ |
---|
[7240] | 205 | return self.context.application_number |
---|
[5828] | 206 | |
---|
[7250] | 207 | class OnlinePaymentBreadcrumb(Breadcrumb): |
---|
| 208 | """A breadcrumb for payments. |
---|
| 209 | """ |
---|
| 210 | grok.context(IApplicantOnlinePayment) |
---|
| 211 | |
---|
| 212 | @property |
---|
| 213 | def title(self): |
---|
| 214 | return self.context.p_id |
---|
| 215 | |
---|
[7819] | 216 | class ApplicantsContainerPage(KofaDisplayFormPage): |
---|
[5830] | 217 | """The standard view for regular applicant containers. |
---|
| 218 | """ |
---|
| 219 | grok.context(IApplicantsContainer) |
---|
| 220 | grok.name('index') |
---|
[6153] | 221 | grok.require('waeup.Public') |
---|
[6029] | 222 | grok.template('applicantscontainerpage') |
---|
[5850] | 223 | pnav = 3 |
---|
[6053] | 224 | |
---|
[7903] | 225 | form_fields = grok.AutoFields(IApplicantsContainer).omit('title') |
---|
[6054] | 226 | form_fields['startdate'].custom_widget = FriendlyDateDisplayWidget('le') |
---|
| 227 | form_fields['enddate'].custom_widget = FriendlyDateDisplayWidget('le') |
---|
[6084] | 228 | form_fields['description'].custom_widget = ReSTDisplayWidget |
---|
[6053] | 229 | |
---|
[5837] | 230 | @property |
---|
[7708] | 231 | def introduction(self): |
---|
[7833] | 232 | # Here we know that the cookie has been set |
---|
| 233 | lang = self.request.cookies.get('kofa.language') |
---|
[7708] | 234 | html = self.context.description_dict.get(lang,'') |
---|
| 235 | if html =='': |
---|
[7833] | 236 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[7708] | 237 | html = self.context.description_dict.get(portal_language,'') |
---|
| 238 | if html =='': |
---|
| 239 | return '' |
---|
| 240 | else: |
---|
| 241 | return html |
---|
| 242 | |
---|
| 243 | @property |
---|
[7467] | 244 | def label(self): |
---|
[7493] | 245 | return "%s" % self.context.title |
---|
[5837] | 246 | |
---|
[7819] | 247 | class ApplicantsContainerManageFormPage(KofaEditFormPage): |
---|
[5837] | 248 | grok.context(IApplicantsContainer) |
---|
[5850] | 249 | grok.name('manage') |
---|
[6107] | 250 | grok.template('applicantscontainermanagepage') |
---|
[7903] | 251 | form_fields = grok.AutoFields(IApplicantsContainer).omit('title') |
---|
[7710] | 252 | taboneactions = [_('Save'),_('Cancel')] |
---|
| 253 | tabtwoactions = [_('Add applicant'), _('Remove selected'),_('Cancel')] |
---|
| 254 | tabthreeactions1 = [_('Remove selected local roles')] |
---|
| 255 | tabthreeactions2 = [_('Add local role')] |
---|
[5844] | 256 | # Use friendlier date widget... |
---|
[6054] | 257 | form_fields['startdate'].custom_widget = FriendlyDateWidget('le') |
---|
| 258 | form_fields['enddate'].custom_widget = FriendlyDateWidget('le') |
---|
[7136] | 259 | grok.require('waeup.manageApplication') |
---|
[5850] | 260 | |
---|
| 261 | @property |
---|
| 262 | def label(self): |
---|
[7710] | 263 | return _('Manage applicants container') |
---|
[5850] | 264 | |
---|
[5845] | 265 | pnav = 3 |
---|
[5837] | 266 | |
---|
| 267 | def update(self): |
---|
[5850] | 268 | datepicker.need() # Enable jQuery datepicker in date fields. |
---|
[5982] | 269 | tabs.need() |
---|
[7484] | 270 | self.tab1 = self.tab2 = self.tab3 = '' |
---|
| 271 | qs = self.request.get('QUERY_STRING', '') |
---|
| 272 | if not qs: |
---|
| 273 | qs = 'tab1' |
---|
| 274 | setattr(self, qs, 'active') |
---|
[7330] | 275 | warning.need() |
---|
[6015] | 276 | datatable.need() # Enable jQurey datatables for contents listing |
---|
[6107] | 277 | return super(ApplicantsContainerManageFormPage, self).update() |
---|
[5837] | 278 | |
---|
[6184] | 279 | def getLocalRoles(self): |
---|
| 280 | roles = ILocalRolesAssignable(self.context) |
---|
| 281 | return roles() |
---|
| 282 | |
---|
| 283 | def getUsers(self): |
---|
| 284 | """Get a list of all users. |
---|
| 285 | """ |
---|
| 286 | for key, val in grok.getSite()['users'].items(): |
---|
| 287 | url = self.url(val) |
---|
| 288 | yield(dict(url=url, name=key, val=val)) |
---|
| 289 | |
---|
| 290 | def getUsersWithLocalRoles(self): |
---|
| 291 | return get_users_with_local_roles(self.context) |
---|
| 292 | |
---|
[7708] | 293 | def _description(self): |
---|
| 294 | view = ApplicantsContainerPage( |
---|
| 295 | self.context,self.request) |
---|
| 296 | view.setUpWidgets() |
---|
| 297 | return view.widgets['description']() |
---|
| 298 | |
---|
[7714] | 299 | @action(_('Save'), style='primary') |
---|
[7489] | 300 | def save(self, **data): |
---|
[5837] | 301 | self.applyData(self.context, **data) |
---|
[7708] | 302 | self.context.description_dict = self._description() |
---|
[7710] | 303 | self.flash(_('Form has been saved.')) |
---|
[5837] | 304 | return |
---|
[6078] | 305 | |
---|
[7710] | 306 | @jsaction(_('Remove selected')) |
---|
[6105] | 307 | def delApplicant(self, **data): |
---|
[6189] | 308 | form = self.request.form |
---|
| 309 | if form.has_key('val_id'): |
---|
| 310 | child_id = form['val_id'] |
---|
| 311 | else: |
---|
[7710] | 312 | self.flash(_('No applicant selected!')) |
---|
[7484] | 313 | self.redirect(self.url(self.context, '@@manage')+'?tab2') |
---|
[6189] | 314 | return |
---|
| 315 | if not isinstance(child_id, list): |
---|
| 316 | child_id = [child_id] |
---|
| 317 | deleted = [] |
---|
| 318 | for id in child_id: |
---|
| 319 | try: |
---|
| 320 | del self.context[id] |
---|
| 321 | deleted.append(id) |
---|
| 322 | except: |
---|
[7710] | 323 | self.flash(_('Could not delete:') + ' %s: %s: %s' % ( |
---|
[6189] | 324 | id, sys.exc_info()[0], sys.exc_info()[1])) |
---|
| 325 | if len(deleted): |
---|
[7741] | 326 | self.flash(_('Successfully removed: ${a}', |
---|
[7738] | 327 | mapping = {'a':', '.join(deleted)})) |
---|
[7484] | 328 | self.redirect(self.url(self.context, u'@@manage')+'?tab2') |
---|
[6189] | 329 | return |
---|
[6105] | 330 | |
---|
[7710] | 331 | @action(_('Add applicant'), validator=NullValidator) |
---|
[6105] | 332 | def addApplicant(self, **data): |
---|
[6327] | 333 | self.redirect(self.url(self.context, 'addapplicant')) |
---|
| 334 | return |
---|
[6105] | 335 | |
---|
[7710] | 336 | @action(_('Cancel'), validator=NullValidator) |
---|
[5837] | 337 | def cancel(self, **data): |
---|
| 338 | self.redirect(self.url(self.context)) |
---|
| 339 | return |
---|
[5886] | 340 | |
---|
[7710] | 341 | @action(_('Add local role'), validator=NullValidator) |
---|
[6184] | 342 | def addLocalRole(self, **data): |
---|
| 343 | return add_local_role(self,3, **data) |
---|
[6105] | 344 | |
---|
[7710] | 345 | @action(_('Remove selected local roles')) |
---|
[6184] | 346 | def delLocalRoles(self, **data): |
---|
| 347 | return del_local_roles(self,3,**data) |
---|
| 348 | |
---|
[7819] | 349 | class ApplicantAddFormPage(KofaAddFormPage): |
---|
[6622] | 350 | """Add-form to add an applicant. |
---|
[6327] | 351 | """ |
---|
| 352 | grok.context(IApplicantsContainer) |
---|
[7136] | 353 | grok.require('waeup.manageApplication') |
---|
[6327] | 354 | grok.name('addapplicant') |
---|
[7240] | 355 | #grok.template('applicantaddpage') |
---|
| 356 | form_fields = grok.AutoFields(IApplicant).select( |
---|
[7356] | 357 | 'firstname', 'middlename', 'lastname', |
---|
[7240] | 358 | 'email', 'phone') |
---|
[7868] | 359 | form_fields['phone'].custom_widget = PhoneWidget |
---|
[7714] | 360 | label = _('Add applicant') |
---|
[6327] | 361 | pnav = 3 |
---|
| 362 | |
---|
[7714] | 363 | @action(_('Create application record')) |
---|
[6327] | 364 | def addApplicant(self, **data): |
---|
[7847] | 365 | applicant = createObject(self.context.factory_name) |
---|
[7240] | 366 | self.applyData(applicant, **data) |
---|
| 367 | self.context.addApplicant(applicant) |
---|
[7714] | 368 | self.flash(_('Applicant record created.')) |
---|
[7363] | 369 | self.redirect( |
---|
| 370 | self.url(self.context[applicant.application_number], 'index')) |
---|
[6327] | 371 | return |
---|
| 372 | |
---|
[7819] | 373 | class ApplicantDisplayFormPage(KofaDisplayFormPage): |
---|
[5273] | 374 | grok.context(IApplicant) |
---|
| 375 | grok.name('index') |
---|
[7113] | 376 | grok.require('waeup.viewApplication') |
---|
[7200] | 377 | grok.template('applicantdisplaypage') |
---|
[6320] | 378 | form_fields = grok.AutoFields(IApplicant).omit( |
---|
[7347] | 379 | 'locked', 'course_admitted', 'password') |
---|
[6054] | 380 | form_fields['date_of_birth'].custom_widget = FriendlyDateDisplayWidget('le') |
---|
[7714] | 381 | label = _('Applicant') |
---|
[5843] | 382 | pnav = 3 |
---|
[5273] | 383 | |
---|
[7063] | 384 | def update(self): |
---|
| 385 | self.passport_url = self.url(self.context, 'passport.jpg') |
---|
[7240] | 386 | # Mark application as started if applicant logs in for the first time |
---|
[7272] | 387 | usertype = getattr(self.request.principal, 'user_type', None) |
---|
| 388 | if usertype == 'applicant' and \ |
---|
| 389 | IWorkflowState(self.context).getState() == INITIALIZED: |
---|
[7240] | 390 | IWorkflowInfo(self.context).fireTransition('start') |
---|
[7063] | 391 | return |
---|
| 392 | |
---|
[6196] | 393 | @property |
---|
[7240] | 394 | def hasPassword(self): |
---|
| 395 | if self.context.password: |
---|
[7714] | 396 | return _('set') |
---|
| 397 | return _('unset') |
---|
[7240] | 398 | |
---|
| 399 | @property |
---|
[6196] | 400 | def label(self): |
---|
| 401 | container_title = self.context.__parent__.title |
---|
[7714] | 402 | return _('${a} Application Record ${b}', mapping = { |
---|
| 403 | 'a':container_title, 'b':self.context.application_number}) |
---|
[6196] | 404 | |
---|
[7347] | 405 | def getCourseAdmitted(self): |
---|
| 406 | """Return link, title and code in html format to the certificate |
---|
| 407 | admitted. |
---|
| 408 | """ |
---|
| 409 | course_admitted = self.context.course_admitted |
---|
[7351] | 410 | if getattr(course_admitted, '__parent__',None): |
---|
[7347] | 411 | url = self.url(course_admitted) |
---|
| 412 | title = course_admitted.title |
---|
| 413 | code = course_admitted.code |
---|
| 414 | return '<a href="%s">%s - %s</a>' %(url,code,title) |
---|
| 415 | return '' |
---|
[6254] | 416 | |
---|
[7259] | 417 | class ApplicantBaseDisplayFormPage(ApplicantDisplayFormPage): |
---|
| 418 | grok.context(IApplicant) |
---|
| 419 | grok.name('base') |
---|
| 420 | form_fields = grok.AutoFields(IApplicant).select( |
---|
| 421 | 'applicant_id', 'firstname', 'lastname','email', 'course1') |
---|
| 422 | |
---|
[7459] | 423 | class CreateStudentPage(UtilityView, grok.View): |
---|
[7341] | 424 | """Create a student object from applicatnt data |
---|
| 425 | and copy applicant object. |
---|
| 426 | """ |
---|
| 427 | grok.context(IApplicant) |
---|
| 428 | grok.name('createstudent') |
---|
| 429 | grok.require('waeup.manageStudent') |
---|
| 430 | |
---|
| 431 | def update(self): |
---|
| 432 | msg = self.context.createStudent()[1] |
---|
| 433 | self.flash(msg) |
---|
| 434 | self.redirect(self.url(self.context)) |
---|
| 435 | return |
---|
| 436 | |
---|
| 437 | def render(self): |
---|
| 438 | return |
---|
| 439 | |
---|
[7459] | 440 | class AcceptanceFeePaymentAddPage(UtilityView, grok.View): |
---|
[7250] | 441 | """ Page to add an online payment ticket |
---|
| 442 | """ |
---|
| 443 | grok.context(IApplicant) |
---|
| 444 | grok.name('addafp') |
---|
| 445 | grok.require('waeup.payApplicant') |
---|
| 446 | |
---|
| 447 | def update(self): |
---|
| 448 | p_category = 'acceptance' |
---|
| 449 | session = str(self.context.__parent__.year) |
---|
| 450 | try: |
---|
| 451 | academic_session = grok.getSite()['configuration'][session] |
---|
| 452 | except KeyError: |
---|
[7714] | 453 | self.flash(_('Session configuration object is not available.')) |
---|
[7250] | 454 | return |
---|
| 455 | timestamp = "%d" % int(time()*1000) |
---|
| 456 | for key in self.context.keys(): |
---|
| 457 | ticket = self.context[key] |
---|
| 458 | if ticket.p_state == 'paid': |
---|
| 459 | self.flash( |
---|
[7714] | 460 | _('This type of payment has already been made.')) |
---|
[7250] | 461 | self.redirect(self.url(self.context)) |
---|
| 462 | return |
---|
| 463 | payment = createObject(u'waeup.ApplicantOnlinePayment') |
---|
| 464 | payment.p_id = "p%s" % timestamp |
---|
| 465 | payment.p_item = self.context.__parent__.title |
---|
| 466 | payment.p_year = self.context.__parent__.year |
---|
| 467 | payment.p_category = p_category |
---|
| 468 | payment.amount_auth = academic_session.acceptance_fee |
---|
| 469 | payment.surcharge_1 = academic_session.surcharge_1 |
---|
| 470 | payment.surcharge_2 = academic_session.surcharge_2 |
---|
| 471 | payment.surcharge_3 = academic_session.surcharge_3 |
---|
| 472 | self.context[payment.p_id] = payment |
---|
[7714] | 473 | self.flash(_('Payment ticket created.')) |
---|
[7250] | 474 | return |
---|
| 475 | |
---|
| 476 | def render(self): |
---|
| 477 | usertype = getattr(self.request.principal, 'user_type', None) |
---|
| 478 | if usertype == 'applicant': |
---|
| 479 | self.redirect(self.url(self.context, '@@edit')) |
---|
| 480 | return |
---|
| 481 | self.redirect(self.url(self.context, '@@manage')) |
---|
| 482 | return |
---|
| 483 | |
---|
| 484 | |
---|
[7819] | 485 | class OnlinePaymentDisplayFormPage(KofaDisplayFormPage): |
---|
[7250] | 486 | """ Page to view an online payment ticket |
---|
| 487 | """ |
---|
| 488 | grok.context(IApplicantOnlinePayment) |
---|
| 489 | grok.name('index') |
---|
| 490 | grok.require('waeup.viewApplication') |
---|
| 491 | form_fields = grok.AutoFields(IApplicantOnlinePayment) |
---|
[7363] | 492 | form_fields[ |
---|
| 493 | 'creation_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
| 494 | form_fields[ |
---|
| 495 | 'payment_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
[7250] | 496 | pnav = 3 |
---|
| 497 | |
---|
| 498 | @property |
---|
| 499 | def label(self): |
---|
[7714] | 500 | return _('${a}: Online Payment Ticket ${b}', mapping = { |
---|
| 501 | 'a':self.context.__parent__.display_fullname, 'b':self.context.p_id}) |
---|
[7250] | 502 | |
---|
[7459] | 503 | class OnlinePaymentCallbackPage(UtilityView, grok.View): |
---|
[7250] | 504 | """ Callback view |
---|
| 505 | """ |
---|
| 506 | grok.context(IApplicantOnlinePayment) |
---|
| 507 | grok.name('callback') |
---|
| 508 | grok.require('waeup.payApplicant') |
---|
| 509 | |
---|
| 510 | # This update method simulates a valid callback und must be |
---|
| 511 | # specified in the customization package. The parameters must be taken |
---|
| 512 | # from the incoming request. |
---|
| 513 | def update(self): |
---|
[7322] | 514 | self.wf_info = IWorkflowInfo(self.context.__parent__) |
---|
| 515 | try: |
---|
| 516 | self.wf_info.fireTransition('pay') |
---|
| 517 | except InvalidTransitionError: |
---|
| 518 | self.flash('Error: %s' % sys.exc_info()[1]) |
---|
[7250] | 519 | return |
---|
| 520 | self.context.r_amount_approved = self.context.amount_auth |
---|
| 521 | self.context.r_card_num = u'0000' |
---|
| 522 | self.context.r_code = u'00' |
---|
| 523 | self.context.p_state = 'paid' |
---|
| 524 | self.context.payment_date = datetime.now() |
---|
[7811] | 525 | ob_class = self.__implemented__.__name__.replace('waeup.kofa.','') |
---|
[7250] | 526 | self.context.__parent__.loggerInfo( |
---|
| 527 | ob_class, 'valid callback: %s' % self.context.p_id) |
---|
[7714] | 528 | self.flash(_('Valid callback received.')) |
---|
[7250] | 529 | return |
---|
| 530 | |
---|
| 531 | def render(self): |
---|
| 532 | self.redirect(self.url(self.context, '@@index')) |
---|
| 533 | return |
---|
| 534 | |
---|
[7459] | 535 | class ExportPDFPaymentSlipPage(UtilityView, grok.View): |
---|
[7250] | 536 | """Deliver a PDF slip of the context. |
---|
| 537 | """ |
---|
| 538 | grok.context(IApplicantOnlinePayment) |
---|
| 539 | grok.name('payment_receipt.pdf') |
---|
| 540 | grok.require('waeup.viewApplication') |
---|
| 541 | form_fields = grok.AutoFields(IApplicantOnlinePayment) |
---|
| 542 | form_fields['creation_date'].custom_widget = FriendlyDateDisplayWidget('le') |
---|
| 543 | form_fields['payment_date'].custom_widget = FriendlyDateDisplayWidget('le') |
---|
| 544 | prefix = 'form' |
---|
| 545 | |
---|
| 546 | @property |
---|
[7714] | 547 | def title(self): |
---|
[7819] | 548 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[7811] | 549 | return translate(_('Payment Data'), 'waeup.kofa', |
---|
[7714] | 550 | target_language=portal_language) |
---|
| 551 | |
---|
| 552 | @property |
---|
[7250] | 553 | def label(self): |
---|
[7819] | 554 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[7714] | 555 | return translate(_('Online Payment Receipt'), |
---|
[7811] | 556 | 'waeup.kofa', target_language=portal_language) \ |
---|
[7714] | 557 | + ' %s' % self.context.p_id |
---|
[7250] | 558 | |
---|
| 559 | def render(self): |
---|
| 560 | if self.context.p_state != 'paid': |
---|
[7714] | 561 | self.flash(_('Ticket not yet paid.')) |
---|
[7250] | 562 | self.redirect(self.url(self.context)) |
---|
| 563 | return |
---|
[7259] | 564 | applicantview = ApplicantBaseDisplayFormPage(self.context.__parent__, |
---|
[7250] | 565 | self.request) |
---|
| 566 | students_utils = getUtility(IStudentsUtils) |
---|
[7318] | 567 | return students_utils.renderPDF(self,'payment_receipt.pdf', |
---|
[7250] | 568 | self.context.__parent__, applicantview) |
---|
| 569 | |
---|
[7459] | 570 | class ExportPDFPage(UtilityView, grok.View): |
---|
[6358] | 571 | """Deliver a PDF slip of the context. |
---|
| 572 | """ |
---|
| 573 | grok.context(IApplicant) |
---|
| 574 | grok.name('application_slip.pdf') |
---|
[7136] | 575 | grok.require('waeup.viewApplication') |
---|
[6358] | 576 | form_fields = grok.AutoFields(IApplicant).omit( |
---|
[7347] | 577 | 'locked', 'course_admitted') |
---|
[6358] | 578 | form_fields['date_of_birth'].custom_widget = FriendlyDateDisplayWidget('le') |
---|
| 579 | prefix = 'form' |
---|
| 580 | |
---|
[7714] | 581 | #@property |
---|
| 582 | #def label(self): |
---|
[7819] | 583 | # portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[7714] | 584 | # container_title = self.context.__parent__.title |
---|
| 585 | # label = translate('Application Record', |
---|
[7811] | 586 | # 'waeup.kofa', target_language=portal_language) |
---|
[7714] | 587 | # return container_title + label + self.context.application_number |
---|
[6363] | 588 | |
---|
[7714] | 589 | #def getCourseAdmitted(self): |
---|
| 590 | # """Return title and code in html format to the certificate |
---|
| 591 | # admitted. |
---|
| 592 | # """ |
---|
| 593 | # course_admitted = self.context.course_admitted |
---|
| 594 | # #if ICertificate.providedBy(course_admitted): |
---|
| 595 | # if getattr(course_admitted, '__parent__',None): |
---|
| 596 | # title = course_admitted.title |
---|
| 597 | # code = course_admitted.code |
---|
| 598 | # return '%s - %s' %(code,title) |
---|
| 599 | # return '' |
---|
[6358] | 600 | |
---|
[7714] | 601 | #def setUpWidgets(self, ignore_request=False): |
---|
| 602 | # self.adapters = {} |
---|
| 603 | # self.widgets = setUpEditWidgets( |
---|
| 604 | # self.form_fields, self.prefix, self.context, self.request, |
---|
| 605 | # adapters=self.adapters, for_display=True, |
---|
| 606 | # ignore_request=ignore_request |
---|
| 607 | # ) |
---|
[6358] | 608 | |
---|
| 609 | def render(self): |
---|
[7392] | 610 | pdfstream = getAdapter(self.context, IPDF, name='application_slip')( |
---|
| 611 | view=self) |
---|
[6358] | 612 | self.response.setHeader( |
---|
| 613 | 'Content-Type', 'application/pdf') |
---|
[7392] | 614 | return pdfstream |
---|
[6358] | 615 | |
---|
[7081] | 616 | def handle_img_upload(upload, context, view): |
---|
[7063] | 617 | """Handle upload of applicant image. |
---|
[7081] | 618 | |
---|
| 619 | Returns `True` in case of success or `False`. |
---|
| 620 | |
---|
| 621 | Please note that file pointer passed in (`upload`) most probably |
---|
| 622 | points to end of file when leaving this function. |
---|
[7063] | 623 | """ |
---|
[7081] | 624 | size = file_size(upload) |
---|
| 625 | if size > MAX_UPLOAD_SIZE: |
---|
[7714] | 626 | view.flash(_('Uploaded image is too big!')) |
---|
[7081] | 627 | return False |
---|
[7247] | 628 | dummy, ext = os.path.splitext(upload.filename) |
---|
| 629 | ext.lower() |
---|
| 630 | if ext != '.jpg': |
---|
[7714] | 631 | view.flash(_('jpg file extension expected.')) |
---|
[7247] | 632 | return False |
---|
[7081] | 633 | upload.seek(0) # file pointer moved when determining size |
---|
[7063] | 634 | store = getUtility(IExtFileStore) |
---|
| 635 | file_id = IFileStoreNameChooser(context).chooseName() |
---|
| 636 | store.createFile(file_id, upload) |
---|
[7081] | 637 | return True |
---|
[7063] | 638 | |
---|
[7819] | 639 | class ApplicantManageFormPage(KofaEditFormPage): |
---|
[6196] | 640 | """A full edit view for applicant data. |
---|
| 641 | """ |
---|
| 642 | grok.context(IApplicant) |
---|
[7200] | 643 | grok.name('manage') |
---|
[7136] | 644 | grok.require('waeup.manageApplication') |
---|
[6476] | 645 | form_fields = grok.AutoFields(IApplicant) |
---|
[6196] | 646 | form_fields['date_of_birth'].custom_widget = FriendlyDateWidget('le-year') |
---|
[7351] | 647 | form_fields['student_id'].for_display = True |
---|
[7378] | 648 | form_fields['applicant_id'].for_display = True |
---|
[7423] | 649 | form_fields['phone'].custom_widget = PhoneWidget |
---|
[7200] | 650 | grok.template('applicanteditpage') |
---|
[6322] | 651 | manage_applications = True |
---|
[6196] | 652 | pnav = 3 |
---|
[7714] | 653 | display_actions = [[_('Save'), _('Final Submit')], |
---|
| 654 | [_('Add online payment ticket'),_('Remove selected tickets')]] |
---|
[6196] | 655 | |
---|
| 656 | def update(self): |
---|
| 657 | datepicker.need() # Enable jQuery datepicker in date fields. |
---|
[7330] | 658 | warning.need() |
---|
[7200] | 659 | super(ApplicantManageFormPage, self).update() |
---|
[6353] | 660 | self.wf_info = IWorkflowInfo(self.context) |
---|
[7081] | 661 | self.max_upload_size = string_from_bytes(MAX_UPLOAD_SIZE) |
---|
[7084] | 662 | self.passport_changed = None |
---|
[6598] | 663 | upload = self.request.form.get('form.passport', None) |
---|
| 664 | if upload: |
---|
| 665 | # We got a fresh upload |
---|
[7084] | 666 | self.passport_changed = handle_img_upload( |
---|
| 667 | upload, self.context, self) |
---|
[6196] | 668 | return |
---|
| 669 | |
---|
| 670 | @property |
---|
| 671 | def label(self): |
---|
| 672 | container_title = self.context.__parent__.title |
---|
[7714] | 673 | return _('${a} Application Form ${b}', mapping = { |
---|
| 674 | 'a':container_title, 'b':self.context.application_number}) |
---|
[6196] | 675 | |
---|
[6303] | 676 | def getTransitions(self): |
---|
[6351] | 677 | """Return a list of dicts of allowed transition ids and titles. |
---|
[6353] | 678 | |
---|
| 679 | Each list entry provides keys ``name`` and ``title`` for |
---|
| 680 | internal name and (human readable) title of a single |
---|
| 681 | transition. |
---|
[6349] | 682 | """ |
---|
[6353] | 683 | allowed_transitions = self.wf_info.getManualTransitions() |
---|
[7687] | 684 | return [dict(name='', title=_('No transition'))] +[ |
---|
[6355] | 685 | dict(name=x, title=y) for x, y in allowed_transitions] |
---|
[6303] | 686 | |
---|
[7714] | 687 | @action(_('Save'), style='primary') |
---|
[6196] | 688 | def save(self, **data): |
---|
[7240] | 689 | form = self.request.form |
---|
| 690 | password = form.get('password', None) |
---|
| 691 | password_ctl = form.get('control_password', None) |
---|
| 692 | if password: |
---|
| 693 | validator = getUtility(IPasswordValidator) |
---|
| 694 | errors = validator.validate_password(password, password_ctl) |
---|
| 695 | if errors: |
---|
| 696 | self.flash( ' '.join(errors)) |
---|
| 697 | return |
---|
[7084] | 698 | if self.passport_changed is False: # False is not None! |
---|
| 699 | return # error during image upload. Ignore other values |
---|
[6475] | 700 | changed_fields = self.applyData(self.context, **data) |
---|
[7199] | 701 | # Turn list of lists into single list |
---|
| 702 | if changed_fields: |
---|
| 703 | changed_fields = reduce(lambda x,y: x+y, changed_fields.values()) |
---|
[7240] | 704 | else: |
---|
| 705 | changed_fields = [] |
---|
| 706 | if self.passport_changed: |
---|
| 707 | changed_fields.append('passport') |
---|
| 708 | if password: |
---|
| 709 | # Now we know that the form has no errors and can set password ... |
---|
| 710 | IUserAccount(self.context).setPassword(password) |
---|
| 711 | changed_fields.append('password') |
---|
[7199] | 712 | fields_string = ' + '.join(changed_fields) |
---|
[7085] | 713 | trans_id = form.get('transition', None) |
---|
| 714 | if trans_id: |
---|
| 715 | self.wf_info.fireTransition(trans_id) |
---|
[7714] | 716 | self.flash(_('Form has been saved.')) |
---|
[7811] | 717 | ob_class = self.__implemented__.__name__.replace('waeup.kofa.','') |
---|
[6644] | 718 | if fields_string: |
---|
| 719 | self.context.loggerInfo(ob_class, 'saved: % s' % fields_string) |
---|
[6196] | 720 | return |
---|
| 721 | |
---|
[7250] | 722 | def unremovable(self, ticket): |
---|
[7330] | 723 | return False |
---|
[7250] | 724 | |
---|
| 725 | # This method is also used by the ApplicantEditFormPage |
---|
| 726 | def delPaymentTickets(self, **data): |
---|
| 727 | form = self.request.form |
---|
| 728 | if form.has_key('val_id'): |
---|
| 729 | child_id = form['val_id'] |
---|
| 730 | else: |
---|
[7714] | 731 | self.flash(_('No payment selected.')) |
---|
[7250] | 732 | self.redirect(self.url(self.context)) |
---|
| 733 | return |
---|
| 734 | if not isinstance(child_id, list): |
---|
| 735 | child_id = [child_id] |
---|
| 736 | deleted = [] |
---|
| 737 | for id in child_id: |
---|
| 738 | # Applicants are not allowed to remove used payment tickets |
---|
| 739 | if not self.unremovable(self.context[id]): |
---|
| 740 | try: |
---|
| 741 | del self.context[id] |
---|
| 742 | deleted.append(id) |
---|
| 743 | except: |
---|
[7714] | 744 | self.flash(_('Could not delete:') + ' %s: %s: %s' % ( |
---|
[7250] | 745 | id, sys.exc_info()[0], sys.exc_info()[1])) |
---|
| 746 | if len(deleted): |
---|
[7741] | 747 | self.flash(_('Successfully removed: ${a}', |
---|
[7738] | 748 | mapping = {'a':', '.join(deleted)})) |
---|
[7811] | 749 | ob_class = self.__implemented__.__name__.replace('waeup.kofa.','') |
---|
[7363] | 750 | self.context.loggerInfo( |
---|
| 751 | ob_class, 'removed: % s' % ', '.join(deleted)) |
---|
[7250] | 752 | return |
---|
| 753 | |
---|
[7252] | 754 | # We explicitely want the forms to be validated before payment tickets |
---|
| 755 | # can be created. If no validation is requested, use |
---|
[7459] | 756 | # 'validator=NullValidator' in the action directive |
---|
[7714] | 757 | @action(_('Add online payment ticket')) |
---|
[7250] | 758 | def addPaymentTicket(self, **data): |
---|
| 759 | self.redirect(self.url(self.context, '@@addafp')) |
---|
[7252] | 760 | return |
---|
[7250] | 761 | |
---|
[7714] | 762 | @jsaction(_('Remove selected tickets')) |
---|
[7250] | 763 | def removePaymentTickets(self, **data): |
---|
| 764 | self.delPaymentTickets(**data) |
---|
| 765 | self.redirect(self.url(self.context) + '/@@manage') |
---|
| 766 | return |
---|
| 767 | |
---|
[7200] | 768 | class ApplicantEditFormPage(ApplicantManageFormPage): |
---|
[5982] | 769 | """An applicant-centered edit view for applicant data. |
---|
| 770 | """ |
---|
[6196] | 771 | grok.context(IApplicantEdit) |
---|
[5273] | 772 | grok.name('edit') |
---|
[6198] | 773 | grok.require('waeup.handleApplication') |
---|
[6459] | 774 | form_fields = grok.AutoFields(IApplicantEdit).omit( |
---|
[6476] | 775 | 'locked', 'course_admitted', 'student_id', |
---|
[7378] | 776 | 'screening_score', 'reg_number' |
---|
[6459] | 777 | ) |
---|
[6054] | 778 | form_fields['date_of_birth'].custom_widget = FriendlyDateWidget('le-year') |
---|
[7433] | 779 | form_fields['phone'].custom_widget = PhoneWidget |
---|
[7459] | 780 | form_fields['applicant_id'].for_display = True |
---|
[7200] | 781 | grok.template('applicanteditpage') |
---|
[6322] | 782 | manage_applications = False |
---|
[5484] | 783 | |
---|
[7250] | 784 | @property |
---|
| 785 | def display_actions(self): |
---|
| 786 | state = IWorkflowState(self.context).getState() |
---|
| 787 | if state == INITIALIZED: |
---|
| 788 | actions = [[],[]] |
---|
| 789 | elif state == STARTED: |
---|
[7714] | 790 | actions = [[_('Save')], |
---|
| 791 | [_('Add online payment ticket'),_('Remove selected tickets')]] |
---|
[7250] | 792 | elif state == PAID: |
---|
[7714] | 793 | actions = [[_('Save'), _('Final Submit')], |
---|
| 794 | [_('Remove selected tickets')]] |
---|
[7351] | 795 | else: |
---|
[7250] | 796 | actions = [[],[]] |
---|
| 797 | return actions |
---|
| 798 | |
---|
[7330] | 799 | def unremovable(self, ticket): |
---|
| 800 | state = IWorkflowState(self.context).getState() |
---|
| 801 | return ticket.r_code or state in (INITIALIZED, SUBMITTED) |
---|
| 802 | |
---|
[7145] | 803 | def emit_lock_message(self): |
---|
[7714] | 804 | self.flash(_('The requested form is locked (read-only).')) |
---|
[5941] | 805 | self.redirect(self.url(self.context)) |
---|
| 806 | return |
---|
[6078] | 807 | |
---|
[5686] | 808 | def update(self): |
---|
[5941] | 809 | if self.context.locked: |
---|
[7145] | 810 | self.emit_lock_message() |
---|
[5941] | 811 | return |
---|
[7200] | 812 | super(ApplicantEditFormPage, self).update() |
---|
[5686] | 813 | return |
---|
[5952] | 814 | |
---|
[6196] | 815 | def dataNotComplete(self): |
---|
[7252] | 816 | store = getUtility(IExtFileStore) |
---|
| 817 | if not store.getFileByContext(self.context, attr=u'passport.jpg'): |
---|
[7714] | 818 | return _('No passport picture uploaded.') |
---|
[6322] | 819 | if not self.request.form.get('confirm_passport', False): |
---|
[7714] | 820 | return _('Passport picture confirmation box not ticked.') |
---|
[6196] | 821 | return False |
---|
[5952] | 822 | |
---|
[7252] | 823 | # We explicitely want the forms to be validated before payment tickets |
---|
| 824 | # can be created. If no validation is requested, use |
---|
[7459] | 825 | # 'validator=NullValidator' in the action directive |
---|
[7714] | 826 | @action(_('Add online payment ticket')) |
---|
[7250] | 827 | def addPaymentTicket(self, **data): |
---|
| 828 | self.redirect(self.url(self.context, '@@addafp')) |
---|
[7252] | 829 | return |
---|
[7250] | 830 | |
---|
[7714] | 831 | @jsaction(_('Remove selected tickets')) |
---|
[7250] | 832 | def removePaymentTickets(self, **data): |
---|
| 833 | self.delPaymentTickets(**data) |
---|
| 834 | self.redirect(self.url(self.context) + '/@@edit') |
---|
| 835 | return |
---|
| 836 | |
---|
[7714] | 837 | @action(_('Save')) |
---|
[5273] | 838 | def save(self, **data): |
---|
[7084] | 839 | if self.passport_changed is False: # False is not None! |
---|
| 840 | return # error during image upload. Ignore other values |
---|
[5273] | 841 | self.applyData(self.context, **data) |
---|
[6196] | 842 | self.flash('Form has been saved.') |
---|
[5273] | 843 | return |
---|
| 844 | |
---|
[7714] | 845 | @action(_('Final Submit')) |
---|
[5484] | 846 | def finalsubmit(self, **data): |
---|
[7084] | 847 | if self.passport_changed is False: # False is not None! |
---|
| 848 | return # error during image upload. Ignore other values |
---|
[6196] | 849 | if self.dataNotComplete(): |
---|
| 850 | self.flash(self.dataNotComplete()) |
---|
[5941] | 851 | return |
---|
[7252] | 852 | self.applyData(self.context, **data) |
---|
[6303] | 853 | state = IWorkflowState(self.context).getState() |
---|
[6322] | 854 | # This shouldn't happen, but the application officer |
---|
| 855 | # might have forgotten to lock the form after changing the state |
---|
[7250] | 856 | if state != PAID: |
---|
[7714] | 857 | self.flash(_('This form cannot be submitted. Wrong state!')) |
---|
[6303] | 858 | return |
---|
| 859 | IWorkflowInfo(self.context).fireTransition('submit') |
---|
[6476] | 860 | self.context.application_date = datetime.now() |
---|
[5941] | 861 | self.context.locked = True |
---|
[7714] | 862 | self.flash(_('Form has been submitted.')) |
---|
[6196] | 863 | self.redirect(self.url(self.context)) |
---|
[5273] | 864 | return |
---|
[5941] | 865 | |
---|
[7063] | 866 | class PassportImage(grok.View): |
---|
| 867 | """Renders the passport image for applicants. |
---|
| 868 | """ |
---|
| 869 | grok.name('passport.jpg') |
---|
| 870 | grok.context(IApplicant) |
---|
[7113] | 871 | grok.require('waeup.viewApplication') |
---|
[7063] | 872 | |
---|
| 873 | def render(self): |
---|
| 874 | # A filename chooser turns a context into a filename suitable |
---|
| 875 | # for file storage. |
---|
| 876 | image = getUtility(IExtFileStore).getFileByContext(self.context) |
---|
| 877 | self.response.setHeader( |
---|
| 878 | 'Content-Type', 'image/jpeg') |
---|
| 879 | if image is None: |
---|
| 880 | # show placeholder image |
---|
[7089] | 881 | return open(DEFAULT_PASSPORT_IMAGE_PATH, 'rb').read() |
---|
[7063] | 882 | return image |
---|
[7363] | 883 | |
---|
[7819] | 884 | class ApplicantRegistrationPage(KofaAddFormPage): |
---|
[7363] | 885 | """Captcha'd registration page for applicants. |
---|
| 886 | """ |
---|
| 887 | grok.context(IApplicantsContainer) |
---|
| 888 | grok.name('register') |
---|
[7373] | 889 | grok.require('waeup.Anonymous') |
---|
[7363] | 890 | grok.template('applicantregister') |
---|
| 891 | form_fields = grok.AutoFields(IApplicantEdit).select( |
---|
| 892 | 'firstname', 'middlename', 'lastname', 'email', 'phone') |
---|
| 893 | form_fields['phone'].custom_widget = PhoneWidget |
---|
| 894 | |
---|
[7368] | 895 | @property |
---|
| 896 | def label(self): |
---|
[7714] | 897 | return _('Register for ${a} Application', |
---|
| 898 | mapping = {'a':self.context.title}) |
---|
[7368] | 899 | |
---|
[7363] | 900 | def update(self): |
---|
[7368] | 901 | # Check if application has started ... |
---|
| 902 | if not self.context.startdate or self.context.startdate > date.today(): |
---|
[7714] | 903 | self.flash(_('Application has not yet started.')) |
---|
[7368] | 904 | self.redirect(self.url(self.context)) |
---|
| 905 | return |
---|
| 906 | # ... or ended |
---|
| 907 | if not self.context.enddate or self.context.enddate < date.today(): |
---|
[7714] | 908 | self.flash(_('Application has ended.')) |
---|
[7368] | 909 | self.redirect(self.url(self.context)) |
---|
| 910 | return |
---|
| 911 | # Handle captcha |
---|
[7363] | 912 | self.captcha = getUtility(ICaptchaManager).getCaptcha() |
---|
| 913 | self.captcha_result = self.captcha.verify(self.request) |
---|
| 914 | self.captcha_code = self.captcha.display(self.captcha_result.error_code) |
---|
| 915 | return |
---|
| 916 | |
---|
[7714] | 917 | @action(_('Get login credentials'), style='primary') |
---|
[7363] | 918 | def register(self, **data): |
---|
| 919 | if not self.captcha_result.is_valid: |
---|
| 920 | # captcha will display error messages automatically. |
---|
| 921 | # No need to flash something. |
---|
| 922 | return |
---|
[7365] | 923 | # Add applicant and create password |
---|
[7363] | 924 | applicant = createObject('waeup.Applicant') |
---|
| 925 | self.applyData(applicant, **data) |
---|
| 926 | self.context.addApplicant(applicant) |
---|
[7819] | 927 | kofa_utils = getUtility(IKofaUtils) |
---|
[7811] | 928 | password = kofa_utils.genPassword() |
---|
[7380] | 929 | IUserAccount(applicant).setPassword(password) |
---|
[7365] | 930 | # Send email with credentials |
---|
[7399] | 931 | login_url = self.url(grok.getSite(), 'login') |
---|
[7714] | 932 | msg = _('You have successfully been registered for the') |
---|
[7811] | 933 | if kofa_utils.sendCredentials(IUserAccount(applicant), |
---|
[7407] | 934 | password, login_url, msg): |
---|
[7380] | 935 | self.redirect(self.url(self.context, 'registration_complete', |
---|
| 936 | data = dict(email=applicant.email))) |
---|
| 937 | return |
---|
| 938 | else: |
---|
[7714] | 939 | self.flash(_('Email could not been sent. Please retry later.')) |
---|
[7380] | 940 | return |
---|
| 941 | |
---|
[7819] | 942 | class ApplicantRegistrationEmailSent(KofaPage): |
---|
[7380] | 943 | """Landing page after successful registration. |
---|
| 944 | """ |
---|
| 945 | grok.name('registration_complete') |
---|
| 946 | grok.require('waeup.Public') |
---|
| 947 | grok.template('applicantregemailsent') |
---|
[7714] | 948 | label = _('Your registration was successful.') |
---|
[7380] | 949 | |
---|
| 950 | def update(self, email=None): |
---|
| 951 | self.email = email |
---|
| 952 | return |
---|