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