[5273] | 1 | ## $Id: browser.py 16059 2020-04-20 06:30:54Z 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 |
---|
[13950] | 23 | import transaction |
---|
[15584] | 24 | from cgi import escape |
---|
[14014] | 25 | from urllib import urlencode |
---|
[7370] | 26 | from datetime import datetime, date |
---|
[14934] | 27 | from time import time, sleep |
---|
[8042] | 28 | from zope.event import notify |
---|
[13152] | 29 | from zope.component import getUtility, queryUtility, createObject, getAdapter |
---|
[8033] | 30 | from zope.catalog.interfaces import ICatalog |
---|
[7714] | 31 | from zope.i18n import translate |
---|
[14949] | 32 | from zope.security import checkPermission |
---|
[7322] | 33 | from hurry.workflow.interfaces import ( |
---|
| 34 | IWorkflowInfo, IWorkflowState, InvalidTransitionError) |
---|
[14256] | 35 | from reportlab.platypus.doctemplate import LayoutError |
---|
[14014] | 36 | from waeup.kofa.mandates.mandate import RefereeReportMandate |
---|
[7811] | 37 | from waeup.kofa.applicants.interfaces import ( |
---|
[7363] | 38 | IApplicant, IApplicantEdit, IApplicantsRoot, |
---|
[7683] | 39 | IApplicantsContainer, IApplicantsContainerAdd, |
---|
[15833] | 40 | IApplicantOnlinePayment, IApplicantsUtils, |
---|
[13976] | 41 | IApplicantRegisterUpdate, ISpecialApplicant, |
---|
| 42 | IApplicantRefereeReport |
---|
[7363] | 43 | ) |
---|
[12247] | 44 | from waeup.kofa.utils.helpers import html2dict |
---|
[10655] | 45 | from waeup.kofa.applicants.container import ( |
---|
| 46 | ApplicantsContainer, VirtualApplicantsExportJobContainer) |
---|
[8404] | 47 | from waeup.kofa.applicants.applicant import search |
---|
[8636] | 48 | from waeup.kofa.applicants.workflow import ( |
---|
[13254] | 49 | INITIALIZED, STARTED, PAID, SUBMITTED, ADMITTED, NOT_ADMITTED, CREATED) |
---|
[7811] | 50 | from waeup.kofa.browser import ( |
---|
[9217] | 51 | # KofaPage, KofaEditFormPage, KofaAddFormPage, KofaDisplayFormPage, |
---|
[7363] | 52 | DEFAULT_PASSPORT_IMAGE_PATH) |
---|
[9217] | 53 | from waeup.kofa.browser.layout import ( |
---|
| 54 | KofaPage, KofaEditFormPage, KofaAddFormPage, KofaDisplayFormPage) |
---|
[7811] | 55 | from waeup.kofa.browser.interfaces import ICaptchaManager |
---|
| 56 | from waeup.kofa.browser.breadcrumbs import Breadcrumb |
---|
| 57 | from waeup.kofa.browser.layout import ( |
---|
[11437] | 58 | NullValidator, jsaction, action, UtilityView) |
---|
[10655] | 59 | from waeup.kofa.browser.pages import ( |
---|
| 60 | add_local_role, del_local_roles, doll_up, ExportCSVView) |
---|
[7811] | 61 | from waeup.kofa.interfaces import ( |
---|
[13177] | 62 | IKofaObject, ILocalRolesAssignable, IExtFileStore, IPDF, DOCLINK, |
---|
[7819] | 63 | IFileStoreNameChooser, IPasswordValidator, IUserAccount, IKofaUtils) |
---|
[7811] | 64 | from waeup.kofa.interfaces import MessageFactory as _ |
---|
| 65 | from waeup.kofa.permissions import get_users_with_local_roles |
---|
| 66 | from waeup.kofa.students.interfaces import IStudentsUtils |
---|
[8186] | 67 | from waeup.kofa.utils.helpers import string_from_bytes, file_size, now |
---|
[8170] | 68 | from waeup.kofa.widgets.datewidget import ( |
---|
[10831] | 69 | FriendlyDateDisplayWidget, |
---|
[8170] | 70 | FriendlyDatetimeDisplayWidget) |
---|
[5320] | 71 | |
---|
[7819] | 72 | grok.context(IKofaObject) # Make IKofaObject the default context |
---|
[5273] | 73 | |
---|
[14025] | 74 | WARNING = _('You can not edit your application records after final submission.' |
---|
| 75 | ' You really want to submit?') |
---|
| 76 | |
---|
[8388] | 77 | class ApplicantsRootPage(KofaDisplayFormPage): |
---|
[5822] | 78 | grok.context(IApplicantsRoot) |
---|
| 79 | grok.name('index') |
---|
[6153] | 80 | grok.require('waeup.Public') |
---|
[8388] | 81 | form_fields = grok.AutoFields(IApplicantsRoot) |
---|
[13076] | 82 | label = _('Applicants Section') |
---|
[5843] | 83 | pnav = 3 |
---|
[6012] | 84 | |
---|
| 85 | def update(self): |
---|
[6067] | 86 | super(ApplicantsRootPage, self).update() |
---|
[6012] | 87 | return |
---|
| 88 | |
---|
[8388] | 89 | @property |
---|
| 90 | def introduction(self): |
---|
| 91 | # Here we know that the cookie has been set |
---|
| 92 | lang = self.request.cookies.get('kofa.language') |
---|
| 93 | html = self.context.description_dict.get(lang,'') |
---|
| 94 | if html == '': |
---|
| 95 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
| 96 | html = self.context.description_dict.get(portal_language,'') |
---|
| 97 | return html |
---|
| 98 | |
---|
[10097] | 99 | @property |
---|
| 100 | def containers(self): |
---|
[10098] | 101 | if self.layout.isAuthenticated(): |
---|
[13249] | 102 | return self.context.values() |
---|
[13217] | 103 | values = sorted([container for container in self.context.values() |
---|
[13249] | 104 | if not container.hidden and container.enddate], |
---|
[13222] | 105 | key=lambda value: value.enddate, reverse=True) |
---|
[13217] | 106 | return values |
---|
[10097] | 107 | |
---|
[8404] | 108 | class ApplicantsSearchPage(KofaPage): |
---|
| 109 | grok.context(IApplicantsRoot) |
---|
| 110 | grok.name('search') |
---|
| 111 | grok.require('waeup.viewApplication') |
---|
[10644] | 112 | label = _('Find applicants') |
---|
[10645] | 113 | search_button = _('Find applicant') |
---|
[8404] | 114 | pnav = 3 |
---|
| 115 | |
---|
| 116 | def update(self, *args, **kw): |
---|
| 117 | form = self.request.form |
---|
| 118 | self.results = [] |
---|
| 119 | if 'searchterm' in form and form['searchterm']: |
---|
| 120 | self.searchterm = form['searchterm'] |
---|
| 121 | self.searchtype = form['searchtype'] |
---|
| 122 | elif 'old_searchterm' in form: |
---|
| 123 | self.searchterm = form['old_searchterm'] |
---|
| 124 | self.searchtype = form['old_searchtype'] |
---|
| 125 | else: |
---|
| 126 | if 'search' in form: |
---|
[11254] | 127 | self.flash(_('Empty search string'), type='warning') |
---|
[8404] | 128 | return |
---|
| 129 | self.results = search(query=self.searchterm, |
---|
| 130 | searchtype=self.searchtype, view=self) |
---|
| 131 | if not self.results: |
---|
[11254] | 132 | self.flash(_('No applicant found.'), type='warning') |
---|
[8404] | 133 | return |
---|
| 134 | |
---|
[7819] | 135 | class ApplicantsRootManageFormPage(KofaEditFormPage): |
---|
[5828] | 136 | grok.context(IApplicantsRoot) |
---|
| 137 | grok.name('manage') |
---|
[6107] | 138 | grok.template('applicantsrootmanagepage') |
---|
[8388] | 139 | form_fields = grok.AutoFields(IApplicantsRoot) |
---|
[13076] | 140 | label = _('Manage applicants section') |
---|
[5843] | 141 | pnav = 3 |
---|
[7136] | 142 | grok.require('waeup.manageApplication') |
---|
[8388] | 143 | taboneactions = [_('Save')] |
---|
| 144 | tabtwoactions = [_('Add applicants container'), _('Remove selected')] |
---|
| 145 | tabthreeactions1 = [_('Remove selected local roles')] |
---|
| 146 | tabthreeactions2 = [_('Add local role')] |
---|
[7710] | 147 | subunits = _('Applicants Containers') |
---|
[13177] | 148 | doclink = DOCLINK + '/applicants.html' |
---|
[6078] | 149 | |
---|
[6184] | 150 | def getLocalRoles(self): |
---|
| 151 | roles = ILocalRolesAssignable(self.context) |
---|
| 152 | return roles() |
---|
| 153 | |
---|
| 154 | def getUsers(self): |
---|
[15964] | 155 | return getUtility(IKofaUtils).getUsers() |
---|
[6184] | 156 | |
---|
[15964] | 157 | #def getUsers(self): |
---|
| 158 | # """Get a list of all users. |
---|
| 159 | # """ |
---|
| 160 | # for key, val in grok.getSite()['users'].items(): |
---|
| 161 | # url = self.url(val) |
---|
| 162 | # yield(dict(url=url, name=key, val=val)) |
---|
| 163 | |
---|
[6184] | 164 | def getUsersWithLocalRoles(self): |
---|
| 165 | return get_users_with_local_roles(self.context) |
---|
| 166 | |
---|
[7710] | 167 | @jsaction(_('Remove selected')) |
---|
[6069] | 168 | def delApplicantsContainers(self, **data): |
---|
| 169 | form = self.request.form |
---|
[9701] | 170 | if 'val_id' in form: |
---|
[8388] | 171 | child_id = form['val_id'] |
---|
| 172 | else: |
---|
[11254] | 173 | self.flash(_('No container selected!'), type='warning') |
---|
| 174 | self.redirect(self.url(self.context, '@@manage')+'#tab2') |
---|
[8388] | 175 | return |
---|
[6069] | 176 | if not isinstance(child_id, list): |
---|
| 177 | child_id = [child_id] |
---|
| 178 | deleted = [] |
---|
| 179 | for id in child_id: |
---|
| 180 | try: |
---|
| 181 | del self.context[id] |
---|
| 182 | deleted.append(id) |
---|
| 183 | except: |
---|
[7710] | 184 | self.flash(_('Could not delete:') + ' %s: %s: %s' % ( |
---|
[11254] | 185 | id, sys.exc_info()[0], sys.exc_info()[1]), type='danger') |
---|
[6069] | 186 | if len(deleted): |
---|
[7738] | 187 | self.flash(_('Successfully removed: ${a}', |
---|
| 188 | mapping = {'a':', '.join(deleted)})) |
---|
[12892] | 189 | ob_class = self.__implemented__.__name__.replace('waeup.kofa.','') |
---|
| 190 | self.context.logger.info( |
---|
| 191 | '%s - removed: %s' % (ob_class, ', '.join(deleted))) |
---|
[11254] | 192 | self.redirect(self.url(self.context, '@@manage')+'#tab2') |
---|
[6078] | 193 | return |
---|
[5828] | 194 | |
---|
[7710] | 195 | @action(_('Add applicants container'), validator=NullValidator) |
---|
[6069] | 196 | def addApplicantsContainer(self, **data): |
---|
| 197 | self.redirect(self.url(self.context, '@@add')) |
---|
[6078] | 198 | return |
---|
| 199 | |
---|
[7710] | 200 | @action(_('Add local role'), validator=NullValidator) |
---|
[6184] | 201 | def addLocalRole(self, **data): |
---|
[7484] | 202 | return add_local_role(self,3, **data) |
---|
[6184] | 203 | |
---|
[7710] | 204 | @action(_('Remove selected local roles')) |
---|
[6184] | 205 | def delLocalRoles(self, **data): |
---|
[7484] | 206 | return del_local_roles(self,3,**data) |
---|
[6184] | 207 | |
---|
[8388] | 208 | @action(_('Save'), style='primary') |
---|
| 209 | def save(self, **data): |
---|
| 210 | self.applyData(self.context, **data) |
---|
[12247] | 211 | description = getattr(self.context, 'description', None) |
---|
| 212 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
| 213 | self.context.description_dict = html2dict(description, portal_language) |
---|
[8390] | 214 | self.flash(_('Form has been saved.')) |
---|
[8388] | 215 | return |
---|
| 216 | |
---|
[7819] | 217 | class ApplicantsContainerAddFormPage(KofaAddFormPage): |
---|
[5822] | 218 | grok.context(IApplicantsRoot) |
---|
[7136] | 219 | grok.require('waeup.manageApplication') |
---|
[5822] | 220 | grok.name('add') |
---|
[6107] | 221 | grok.template('applicantscontaineraddpage') |
---|
[7710] | 222 | label = _('Add applicants container') |
---|
[5843] | 223 | pnav = 3 |
---|
[6078] | 224 | |
---|
[6103] | 225 | form_fields = grok.AutoFields( |
---|
[7903] | 226 | IApplicantsContainerAdd).omit('code').omit('title') |
---|
[6078] | 227 | |
---|
[7710] | 228 | @action(_('Add applicants container')) |
---|
[6069] | 229 | def addApplicantsContainer(self, **data): |
---|
[6103] | 230 | year = data['year'] |
---|
[15548] | 231 | if not data['container_number']: |
---|
| 232 | code = u'%s%s' % (data['prefix'], year) |
---|
| 233 | else: |
---|
| 234 | code = u'%s%s' % (data['prefix'], data['container_number']) |
---|
[9529] | 235 | apptypes_dict = getUtility(IApplicantsUtils).APP_TYPES_DICT |
---|
| 236 | title = apptypes_dict[data['prefix']][0] |
---|
[7685] | 237 | title = u'%s %s/%s' % (title, year, year + 1) |
---|
[6087] | 238 | if code in self.context.keys(): |
---|
[6105] | 239 | self.flash( |
---|
[11254] | 240 | _('An applicants container for the same application ' |
---|
| 241 | 'type and entrance year exists already in the database.'), |
---|
| 242 | type='warning') |
---|
[5822] | 243 | return |
---|
| 244 | # Add new applicants container... |
---|
[8009] | 245 | container = createObject(u'waeup.ApplicantsContainer') |
---|
[6069] | 246 | self.applyData(container, **data) |
---|
[6087] | 247 | container.code = code |
---|
| 248 | container.title = title |
---|
| 249 | self.context[code] = container |
---|
[7710] | 250 | self.flash(_('Added:') + ' "%s".' % code) |
---|
[12892] | 251 | ob_class = self.__implemented__.__name__.replace('waeup.kofa.','') |
---|
| 252 | self.context.logger.info('%s - added: %s' % (ob_class, code)) |
---|
[7484] | 253 | self.redirect(self.url(self.context, u'@@manage')) |
---|
[5822] | 254 | return |
---|
[6078] | 255 | |
---|
[7710] | 256 | @action(_('Cancel'), validator=NullValidator) |
---|
[6069] | 257 | def cancel(self, **data): |
---|
[7484] | 258 | self.redirect(self.url(self.context, '@@manage')) |
---|
[6078] | 259 | |
---|
[5845] | 260 | class ApplicantsRootBreadcrumb(Breadcrumb): |
---|
| 261 | """A breadcrumb for applicantsroot. |
---|
| 262 | """ |
---|
| 263 | grok.context(IApplicantsRoot) |
---|
[7710] | 264 | title = _(u'Applicants') |
---|
[6078] | 265 | |
---|
[5845] | 266 | class ApplicantsContainerBreadcrumb(Breadcrumb): |
---|
| 267 | """A breadcrumb for applicantscontainers. |
---|
| 268 | """ |
---|
| 269 | grok.context(IApplicantsContainer) |
---|
[6319] | 270 | |
---|
[10655] | 271 | |
---|
| 272 | class ApplicantsExportsBreadcrumb(Breadcrumb): |
---|
| 273 | """A breadcrumb for exports. |
---|
| 274 | """ |
---|
| 275 | grok.context(VirtualApplicantsExportJobContainer) |
---|
| 276 | title = _(u'Applicant Data Exports') |
---|
| 277 | target = None |
---|
| 278 | |
---|
[6153] | 279 | class ApplicantBreadcrumb(Breadcrumb): |
---|
| 280 | """A breadcrumb for applicants. |
---|
| 281 | """ |
---|
| 282 | grok.context(IApplicant) |
---|
[6319] | 283 | |
---|
[6153] | 284 | @property |
---|
| 285 | def title(self): |
---|
| 286 | """Get a title for a context. |
---|
| 287 | """ |
---|
[7240] | 288 | return self.context.application_number |
---|
[5828] | 289 | |
---|
[7250] | 290 | class OnlinePaymentBreadcrumb(Breadcrumb): |
---|
| 291 | """A breadcrumb for payments. |
---|
| 292 | """ |
---|
| 293 | grok.context(IApplicantOnlinePayment) |
---|
| 294 | |
---|
| 295 | @property |
---|
| 296 | def title(self): |
---|
| 297 | return self.context.p_id |
---|
| 298 | |
---|
[13976] | 299 | class RefereeReportBreadcrumb(Breadcrumb): |
---|
| 300 | """A breadcrumb for referee reports. |
---|
| 301 | """ |
---|
| 302 | grok.context(IApplicantRefereeReport) |
---|
| 303 | |
---|
| 304 | @property |
---|
| 305 | def title(self): |
---|
| 306 | return self.context.r_id |
---|
| 307 | |
---|
[8563] | 308 | class ApplicantsStatisticsPage(KofaDisplayFormPage): |
---|
| 309 | """Some statistics about applicants in a container. |
---|
| 310 | """ |
---|
| 311 | grok.context(IApplicantsContainer) |
---|
| 312 | grok.name('statistics') |
---|
[8565] | 313 | grok.require('waeup.viewApplicationStatistics') |
---|
[8563] | 314 | grok.template('applicantcontainerstatistics') |
---|
| 315 | |
---|
| 316 | @property |
---|
| 317 | def label(self): |
---|
| 318 | return "%s" % self.context.title |
---|
| 319 | |
---|
[7819] | 320 | class ApplicantsContainerPage(KofaDisplayFormPage): |
---|
[5830] | 321 | """The standard view for regular applicant containers. |
---|
| 322 | """ |
---|
| 323 | grok.context(IApplicantsContainer) |
---|
| 324 | grok.name('index') |
---|
[6153] | 325 | grok.require('waeup.Public') |
---|
[6029] | 326 | grok.template('applicantscontainerpage') |
---|
[5850] | 327 | pnav = 3 |
---|
[6053] | 328 | |
---|
[9078] | 329 | @property |
---|
| 330 | def form_fields(self): |
---|
[12247] | 331 | form_fields = grok.AutoFields(IApplicantsContainer).omit( |
---|
| 332 | 'title', 'description') |
---|
[9078] | 333 | form_fields[ |
---|
| 334 | 'startdate'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
| 335 | form_fields[ |
---|
| 336 | 'enddate'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
| 337 | if self.request.principal.id == 'zope.anybody': |
---|
| 338 | form_fields = form_fields.omit( |
---|
[10101] | 339 | 'code', 'prefix', 'year', 'mode', 'hidden', |
---|
[11870] | 340 | 'strict_deadline', 'application_category', |
---|
[15819] | 341 | 'application_slip_notice', 'with_picture') |
---|
[9078] | 342 | return form_fields |
---|
[6053] | 343 | |
---|
[5837] | 344 | @property |
---|
[7708] | 345 | def introduction(self): |
---|
[7833] | 346 | # Here we know that the cookie has been set |
---|
| 347 | lang = self.request.cookies.get('kofa.language') |
---|
[7708] | 348 | html = self.context.description_dict.get(lang,'') |
---|
[8388] | 349 | if html == '': |
---|
[7833] | 350 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[7708] | 351 | html = self.context.description_dict.get(portal_language,'') |
---|
[8388] | 352 | return html |
---|
[7708] | 353 | |
---|
| 354 | @property |
---|
[7467] | 355 | def label(self): |
---|
[7493] | 356 | return "%s" % self.context.title |
---|
[5837] | 357 | |
---|
[7819] | 358 | class ApplicantsContainerManageFormPage(KofaEditFormPage): |
---|
[5837] | 359 | grok.context(IApplicantsContainer) |
---|
[5850] | 360 | grok.name('manage') |
---|
[6107] | 361 | grok.template('applicantscontainermanagepage') |
---|
[10625] | 362 | form_fields = grok.AutoFields(IApplicantsContainer) |
---|
[7710] | 363 | taboneactions = [_('Save'),_('Cancel')] |
---|
[8684] | 364 | tabtwoactions = [_('Remove selected'),_('Cancel'), |
---|
[8314] | 365 | _('Create students from selected')] |
---|
[7710] | 366 | tabthreeactions1 = [_('Remove selected local roles')] |
---|
| 367 | tabthreeactions2 = [_('Add local role')] |
---|
[5844] | 368 | # Use friendlier date widget... |
---|
[7136] | 369 | grok.require('waeup.manageApplication') |
---|
[13177] | 370 | doclink = DOCLINK + '/applicants.html' |
---|
[5850] | 371 | |
---|
| 372 | @property |
---|
| 373 | def label(self): |
---|
[7710] | 374 | return _('Manage applicants container') |
---|
[5850] | 375 | |
---|
[5845] | 376 | pnav = 3 |
---|
[5837] | 377 | |
---|
[8547] | 378 | @property |
---|
| 379 | def showApplicants(self): |
---|
[13217] | 380 | if self.context.counts[1] < 1000: |
---|
[8547] | 381 | return True |
---|
| 382 | return False |
---|
| 383 | |
---|
[6184] | 384 | def getLocalRoles(self): |
---|
| 385 | roles = ILocalRolesAssignable(self.context) |
---|
| 386 | return roles() |
---|
| 387 | |
---|
[15964] | 388 | #def getUsers(self): |
---|
| 389 | # """Get a list of all users. |
---|
| 390 | # """ |
---|
| 391 | # for key, val in grok.getSite()['users'].items(): |
---|
| 392 | # url = self.url(val) |
---|
| 393 | # yield(dict(url=url, name=key, val=val)) |
---|
| 394 | |
---|
[6184] | 395 | def getUsers(self): |
---|
[15964] | 396 | return getUtility(IKofaUtils).getUsers() |
---|
[6184] | 397 | |
---|
| 398 | def getUsersWithLocalRoles(self): |
---|
| 399 | return get_users_with_local_roles(self.context) |
---|
| 400 | |
---|
[7714] | 401 | @action(_('Save'), style='primary') |
---|
[7489] | 402 | def save(self, **data): |
---|
[9531] | 403 | changed_fields = self.applyData(self.context, **data) |
---|
| 404 | if changed_fields: |
---|
| 405 | changed_fields = reduce(lambda x,y: x+y, changed_fields.values()) |
---|
| 406 | else: |
---|
| 407 | changed_fields = [] |
---|
[12247] | 408 | description = getattr(self.context, 'description', None) |
---|
| 409 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
| 410 | self.context.description_dict = html2dict(description, portal_language) |
---|
[7710] | 411 | self.flash(_('Form has been saved.')) |
---|
[9531] | 412 | fields_string = ' + '.join(changed_fields) |
---|
[12892] | 413 | self.context.writeLogMessage(self, 'saved: %s' % fields_string) |
---|
[5837] | 414 | return |
---|
[6078] | 415 | |
---|
[7710] | 416 | @jsaction(_('Remove selected')) |
---|
[6105] | 417 | def delApplicant(self, **data): |
---|
[6189] | 418 | form = self.request.form |
---|
[9701] | 419 | if 'val_id' in form: |
---|
[6189] | 420 | child_id = form['val_id'] |
---|
| 421 | else: |
---|
[11254] | 422 | self.flash(_('No applicant selected!'), type='warning') |
---|
| 423 | self.redirect(self.url(self.context, '@@manage')+'#tab2') |
---|
[6189] | 424 | return |
---|
| 425 | if not isinstance(child_id, list): |
---|
| 426 | child_id = [child_id] |
---|
| 427 | deleted = [] |
---|
| 428 | for id in child_id: |
---|
| 429 | try: |
---|
| 430 | del self.context[id] |
---|
| 431 | deleted.append(id) |
---|
| 432 | except: |
---|
[7710] | 433 | self.flash(_('Could not delete:') + ' %s: %s: %s' % ( |
---|
[11254] | 434 | id, sys.exc_info()[0], sys.exc_info()[1]), type='danger') |
---|
[6189] | 435 | if len(deleted): |
---|
[7741] | 436 | self.flash(_('Successfully removed: ${a}', |
---|
[7738] | 437 | mapping = {'a':', '.join(deleted)})) |
---|
[11254] | 438 | self.redirect(self.url(self.context, u'@@manage')+'#tab2') |
---|
[6189] | 439 | return |
---|
[6105] | 440 | |
---|
[8314] | 441 | @action(_('Create students from selected')) |
---|
| 442 | def createStudents(self, **data): |
---|
[14949] | 443 | if not checkPermission('waeup.createStudents', self.context): |
---|
| 444 | self.flash( |
---|
| 445 | _('You don\'t have permission to create student records.'), |
---|
| 446 | type='warning') |
---|
| 447 | self.redirect(self.url(self.context, '@@manage')+'#tab2') |
---|
| 448 | return |
---|
[8314] | 449 | form = self.request.form |
---|
[9701] | 450 | if 'val_id' in form: |
---|
[8314] | 451 | child_id = form['val_id'] |
---|
| 452 | else: |
---|
[11254] | 453 | self.flash(_('No applicant selected!'), type='warning') |
---|
| 454 | self.redirect(self.url(self.context, '@@manage')+'#tab2') |
---|
[8314] | 455 | return |
---|
| 456 | if not isinstance(child_id, list): |
---|
| 457 | child_id = [child_id] |
---|
| 458 | created = [] |
---|
[14682] | 459 | if len(child_id) > 10 and self.request.principal.id != 'admin': |
---|
| 460 | self.flash(_('A maximum of 10 applicants can be selected!'), |
---|
| 461 | type='warning') |
---|
| 462 | self.redirect(self.url(self.context, '@@manage')+'#tab2') |
---|
| 463 | return |
---|
[8314] | 464 | for id in child_id: |
---|
| 465 | success, msg = self.context[id].createStudent(view=self) |
---|
| 466 | if success: |
---|
| 467 | created.append(id) |
---|
| 468 | if len(created): |
---|
| 469 | self.flash(_('${a} students successfully created.', |
---|
| 470 | mapping = {'a': len(created)})) |
---|
| 471 | else: |
---|
[11254] | 472 | self.flash(_('No student could be created.'), type='warning') |
---|
| 473 | self.redirect(self.url(self.context, u'@@manage')+'#tab2') |
---|
[8314] | 474 | return |
---|
| 475 | |
---|
[7710] | 476 | @action(_('Cancel'), validator=NullValidator) |
---|
[5837] | 477 | def cancel(self, **data): |
---|
| 478 | self.redirect(self.url(self.context)) |
---|
| 479 | return |
---|
[5886] | 480 | |
---|
[7710] | 481 | @action(_('Add local role'), validator=NullValidator) |
---|
[6184] | 482 | def addLocalRole(self, **data): |
---|
| 483 | return add_local_role(self,3, **data) |
---|
[6105] | 484 | |
---|
[7710] | 485 | @action(_('Remove selected local roles')) |
---|
[6184] | 486 | def delLocalRoles(self, **data): |
---|
| 487 | return del_local_roles(self,3,**data) |
---|
| 488 | |
---|
[7819] | 489 | class ApplicantAddFormPage(KofaAddFormPage): |
---|
[6622] | 490 | """Add-form to add an applicant. |
---|
[6327] | 491 | """ |
---|
| 492 | grok.context(IApplicantsContainer) |
---|
[7136] | 493 | grok.require('waeup.manageApplication') |
---|
[6327] | 494 | grok.name('addapplicant') |
---|
[7240] | 495 | #grok.template('applicantaddpage') |
---|
| 496 | form_fields = grok.AutoFields(IApplicant).select( |
---|
[7356] | 497 | 'firstname', 'middlename', 'lastname', |
---|
[7240] | 498 | 'email', 'phone') |
---|
[7714] | 499 | label = _('Add applicant') |
---|
[6327] | 500 | pnav = 3 |
---|
[13177] | 501 | doclink = DOCLINK + '/applicants.html' |
---|
[6327] | 502 | |
---|
[7714] | 503 | @action(_('Create application record')) |
---|
[6327] | 504 | def addApplicant(self, **data): |
---|
[8008] | 505 | applicant = createObject(u'waeup.Applicant') |
---|
[7240] | 506 | self.applyData(applicant, **data) |
---|
| 507 | self.context.addApplicant(applicant) |
---|
[13073] | 508 | self.flash(_('Application record created.')) |
---|
[7363] | 509 | self.redirect( |
---|
| 510 | self.url(self.context[applicant.application_number], 'index')) |
---|
[6327] | 511 | return |
---|
| 512 | |
---|
[13217] | 513 | class ApplicantsContainerPrefillFormPage(KofaAddFormPage): |
---|
[13218] | 514 | """Form to pre-fill applicants containers. |
---|
[13217] | 515 | """ |
---|
| 516 | grok.context(IApplicantsContainer) |
---|
| 517 | grok.require('waeup.manageApplication') |
---|
| 518 | grok.name('prefill') |
---|
[13218] | 519 | grok.template('prefillcontainer') |
---|
[13217] | 520 | label = _('Pre-fill container') |
---|
| 521 | pnav = 3 |
---|
[13232] | 522 | doclink = DOCLINK + '/applicants/browser.html#preparation-and-maintenance-of-applicants-containers' |
---|
[13217] | 523 | |
---|
| 524 | def update(self): |
---|
| 525 | if self.context.mode == 'update': |
---|
| 526 | self.flash(_('Container must be in create mode to be pre-filled.'), |
---|
| 527 | type='danger') |
---|
| 528 | self.redirect(self.url(self.context)) |
---|
| 529 | return |
---|
| 530 | super(ApplicantsContainerPrefillFormPage, self).update() |
---|
| 531 | return |
---|
| 532 | |
---|
| 533 | @action(_('Pre-fill now'), style='primary') |
---|
[13218] | 534 | def addApplicants(self): |
---|
[13217] | 535 | form = self.request.form |
---|
| 536 | if 'number' in form and form['number']: |
---|
| 537 | number = int(form['number']) |
---|
| 538 | for i in range(number): |
---|
| 539 | applicant = createObject(u'waeup.Applicant') |
---|
| 540 | self.context.addApplicant(applicant) |
---|
| 541 | self.flash(_('%s application records created.' % number)) |
---|
| 542 | self.context.writeLogMessage(self, '%s applicants created' % (number)) |
---|
| 543 | self.redirect(self.url(self.context, 'index')) |
---|
| 544 | return |
---|
| 545 | |
---|
| 546 | @action(_('Cancel'), validator=NullValidator) |
---|
| 547 | def cancel(self, **data): |
---|
| 548 | self.redirect(self.url(self.context)) |
---|
| 549 | return |
---|
| 550 | |
---|
[13218] | 551 | class ApplicantsContainerPurgeFormPage(KofaEditFormPage): |
---|
[14109] | 552 | """Form to purge applicants containers. |
---|
[13218] | 553 | """ |
---|
| 554 | grok.context(IApplicantsContainer) |
---|
| 555 | grok.require('waeup.manageApplication') |
---|
| 556 | grok.name('purge') |
---|
| 557 | grok.template('purgecontainer') |
---|
| 558 | label = _('Purge container') |
---|
| 559 | pnav = 3 |
---|
[13232] | 560 | doclink = DOCLINK + '/applicants/browser.html#preparation-and-maintenance-of-applicants-containers' |
---|
[13218] | 561 | |
---|
[13232] | 562 | @action(_('Remove initialized records'), |
---|
| 563 | tooltip=_('Don\'t use if application is in progress!'), |
---|
| 564 | warning=_('Are you really sure?'), |
---|
| 565 | style='primary') |
---|
[13218] | 566 | def purgeInitialized(self): |
---|
| 567 | form = self.request.form |
---|
| 568 | purged = 0 |
---|
| 569 | keys = [key for key in self.context.keys()] |
---|
| 570 | for key in keys: |
---|
| 571 | if self.context[key].state == 'initialized': |
---|
| 572 | del self.context[key] |
---|
| 573 | purged += 1 |
---|
| 574 | self.flash(_('%s application records purged.' % purged)) |
---|
| 575 | self.context.writeLogMessage(self, '%s applicants purged' % (purged)) |
---|
| 576 | self.redirect(self.url(self.context, 'index')) |
---|
| 577 | return |
---|
| 578 | |
---|
| 579 | @action(_('Cancel'), validator=NullValidator) |
---|
| 580 | def cancel(self, **data): |
---|
| 581 | self.redirect(self.url(self.context)) |
---|
| 582 | return |
---|
| 583 | |
---|
[7819] | 584 | class ApplicantDisplayFormPage(KofaDisplayFormPage): |
---|
[8014] | 585 | """A display view for applicant data. |
---|
| 586 | """ |
---|
[5273] | 587 | grok.context(IApplicant) |
---|
| 588 | grok.name('index') |
---|
[7113] | 589 | grok.require('waeup.viewApplication') |
---|
[7200] | 590 | grok.template('applicantdisplaypage') |
---|
[7714] | 591 | label = _('Applicant') |
---|
[5843] | 592 | pnav = 3 |
---|
[8922] | 593 | hide_hint = False |
---|
[5273] | 594 | |
---|
[8046] | 595 | @property |
---|
[16059] | 596 | def display_refereereports(self): |
---|
| 597 | if self.context.refereereports: |
---|
| 598 | return True |
---|
| 599 | return False |
---|
| 600 | |
---|
| 601 | @property |
---|
[15943] | 602 | def file_links(self): |
---|
| 603 | html = '' |
---|
| 604 | file_store = getUtility(IExtFileStore) |
---|
| 605 | additional_files = getUtility(IApplicantsUtils).ADDITIONAL_FILES |
---|
| 606 | for filename in additional_files: |
---|
| 607 | pdf = getUtility(IExtFileStore).getFileByContext( |
---|
| 608 | self.context, attr=filename[1]) |
---|
| 609 | if pdf: |
---|
| 610 | html += '<a href="%s">%s</a>, ' % (self.url( |
---|
| 611 | self.context, filename[1]), filename[0]) |
---|
| 612 | html = html.strip(', ') |
---|
| 613 | return html |
---|
| 614 | |
---|
| 615 | @property |
---|
[13886] | 616 | def display_payments(self): |
---|
[15122] | 617 | if self.context.payments: |
---|
| 618 | return True |
---|
[13886] | 619 | if self.context.special: |
---|
| 620 | return True |
---|
| 621 | return getattr(self.context.__parent__, 'application_fee', None) |
---|
| 622 | |
---|
| 623 | @property |
---|
[10831] | 624 | def form_fields(self): |
---|
| 625 | if self.context.special: |
---|
[11599] | 626 | form_fields = grok.AutoFields(ISpecialApplicant).omit('locked') |
---|
[10831] | 627 | else: |
---|
| 628 | form_fields = grok.AutoFields(IApplicant).omit( |
---|
[10845] | 629 | 'locked', 'course_admitted', 'password', 'suspended') |
---|
[10831] | 630 | return form_fields |
---|
| 631 | |
---|
| 632 | @property |
---|
[10534] | 633 | def target(self): |
---|
| 634 | return getattr(self.context.__parent__, 'prefix', None) |
---|
| 635 | |
---|
| 636 | @property |
---|
[8046] | 637 | def separators(self): |
---|
| 638 | return getUtility(IApplicantsUtils).SEPARATORS_DICT |
---|
| 639 | |
---|
[7063] | 640 | def update(self): |
---|
| 641 | self.passport_url = self.url(self.context, 'passport.jpg') |
---|
[7240] | 642 | # Mark application as started if applicant logs in for the first time |
---|
[7272] | 643 | usertype = getattr(self.request.principal, 'user_type', None) |
---|
| 644 | if usertype == 'applicant' and \ |
---|
| 645 | IWorkflowState(self.context).getState() == INITIALIZED: |
---|
[7240] | 646 | IWorkflowInfo(self.context).fireTransition('start') |
---|
[10895] | 647 | if usertype == 'applicant' and self.context.state == 'created': |
---|
[10908] | 648 | session = '%s/%s' % (self.context.__parent__.year, |
---|
| 649 | self.context.__parent__.year+1) |
---|
| 650 | title = getattr(grok.getSite()['configuration'], 'name', u'Sample University') |
---|
[10895] | 651 | msg = _( |
---|
| 652 | '\n <strong>Congratulations!</strong>' + |
---|
[10933] | 653 | ' You have been offered provisional admission into the' + |
---|
[10908] | 654 | ' ${c} Academic Session of ${d}.' |
---|
| 655 | ' Your student record has been created for you.' + |
---|
| 656 | ' Please, logout again and proceed to the' + |
---|
| 657 | ' login page of the portal.' |
---|
[10895] | 658 | ' Then enter your new student credentials:' + |
---|
| 659 | ' user name= ${a}, password = ${b}.' + |
---|
| 660 | ' Change your password when you have logged in.', |
---|
| 661 | mapping = { |
---|
| 662 | 'a':self.context.student_id, |
---|
[10908] | 663 | 'b':self.context.application_number, |
---|
| 664 | 'c':session, |
---|
| 665 | 'd':title} |
---|
[10895] | 666 | ) |
---|
| 667 | self.flash(msg) |
---|
[7063] | 668 | return |
---|
| 669 | |
---|
[6196] | 670 | @property |
---|
[7240] | 671 | def hasPassword(self): |
---|
| 672 | if self.context.password: |
---|
[7714] | 673 | return _('set') |
---|
| 674 | return _('unset') |
---|
[7240] | 675 | |
---|
| 676 | @property |
---|
[6196] | 677 | def label(self): |
---|
| 678 | container_title = self.context.__parent__.title |
---|
[8096] | 679 | return _('${a} <br /> Application Record ${b}', mapping = { |
---|
[7714] | 680 | 'a':container_title, 'b':self.context.application_number}) |
---|
[6196] | 681 | |
---|
[7347] | 682 | def getCourseAdmitted(self): |
---|
| 683 | """Return link, title and code in html format to the certificate |
---|
| 684 | admitted. |
---|
| 685 | """ |
---|
| 686 | course_admitted = self.context.course_admitted |
---|
[7351] | 687 | if getattr(course_admitted, '__parent__',None): |
---|
[7347] | 688 | url = self.url(course_admitted) |
---|
| 689 | title = course_admitted.title |
---|
| 690 | code = course_admitted.code |
---|
| 691 | return '<a href="%s">%s - %s</a>' %(url,code,title) |
---|
| 692 | return '' |
---|
[6254] | 693 | |
---|
[7259] | 694 | class ApplicantBaseDisplayFormPage(ApplicantDisplayFormPage): |
---|
| 695 | grok.context(IApplicant) |
---|
| 696 | grok.name('base') |
---|
[16006] | 697 | |
---|
[15581] | 698 | @property |
---|
| 699 | def form_fields(self): |
---|
| 700 | form_fields = grok.AutoFields(IApplicant).select( |
---|
| 701 | 'applicant_id', 'reg_number', 'email', 'course1') |
---|
| 702 | if self.context.__parent__.prefix in ('special',): |
---|
| 703 | form_fields['reg_number'].field.title = u'Identification Number' |
---|
| 704 | return form_fields |
---|
| 705 | return form_fields |
---|
[7259] | 706 | |
---|
[7459] | 707 | class CreateStudentPage(UtilityView, grok.View): |
---|
[8636] | 708 | """Create a student object from applicant data. |
---|
[7341] | 709 | """ |
---|
| 710 | grok.context(IApplicant) |
---|
| 711 | grok.name('createstudent') |
---|
[14948] | 712 | grok.require('waeup.createStudents') |
---|
[7341] | 713 | |
---|
| 714 | def update(self): |
---|
[14346] | 715 | success, msg = self.context.createStudent(view=self) |
---|
| 716 | if success: |
---|
| 717 | self.flash(msg) |
---|
| 718 | else: |
---|
| 719 | self.flash(msg, type='warning') |
---|
[7341] | 720 | self.redirect(self.url(self.context)) |
---|
| 721 | return |
---|
| 722 | |
---|
| 723 | def render(self): |
---|
| 724 | return |
---|
| 725 | |
---|
[14951] | 726 | class CreateAllStudentsPage(KofaPage): |
---|
[8636] | 727 | """Create all student objects from applicant data |
---|
[14934] | 728 | in the root container or in a specific applicants container only. |
---|
[15932] | 729 | Only PortalManagers or StudentCreators can do this. |
---|
[8636] | 730 | """ |
---|
[9900] | 731 | #grok.context(IApplicantsContainer) |
---|
[8636] | 732 | grok.name('createallstudents') |
---|
[14948] | 733 | grok.require('waeup.createStudents') |
---|
[14951] | 734 | label = _('Student Record Creation Report') |
---|
[8636] | 735 | |
---|
| 736 | def update(self): |
---|
[14934] | 737 | grok.getSite()['configuration'].maintmode_enabled_by = u'admin' |
---|
| 738 | transaction.commit() |
---|
| 739 | # Wait 10 seconds for all transactions to be finished. |
---|
| 740 | # Do not wait in tests. |
---|
| 741 | if not self.request.principal.id == 'zope.mgr': |
---|
| 742 | sleep(10) |
---|
[8636] | 743 | cat = getUtility(ICatalog, name='applicants_catalog') |
---|
| 744 | results = list(cat.searchResults(state=(ADMITTED, ADMITTED))) |
---|
| 745 | created = [] |
---|
[14949] | 746 | failed = [] |
---|
[9900] | 747 | container_only = False |
---|
| 748 | applicants_root = grok.getSite()['applicants'] |
---|
| 749 | if isinstance(self.context, ApplicantsContainer): |
---|
| 750 | container_only = True |
---|
[8636] | 751 | for result in results: |
---|
[9900] | 752 | if container_only and result.__parent__ is not self.context: |
---|
[8636] | 753 | continue |
---|
| 754 | success, msg = result.createStudent(view=self) |
---|
| 755 | if success: |
---|
| 756 | created.append(result.applicant_id) |
---|
| 757 | else: |
---|
[14951] | 758 | failed.append( |
---|
| 759 | (result.applicant_id, self.url(result, 'manage'), msg)) |
---|
[12893] | 760 | ob_class = self.__implemented__.__name__.replace( |
---|
| 761 | 'waeup.kofa.','') |
---|
[14934] | 762 | grok.getSite()['configuration'].maintmode_enabled_by = None |
---|
[14951] | 763 | self.successful = ', '.join(created) |
---|
| 764 | self.failed = failed |
---|
[8636] | 765 | return |
---|
| 766 | |
---|
| 767 | |
---|
[8260] | 768 | class ApplicationFeePaymentAddPage(UtilityView, grok.View): |
---|
[7250] | 769 | """ Page to add an online payment ticket |
---|
| 770 | """ |
---|
| 771 | grok.context(IApplicant) |
---|
| 772 | grok.name('addafp') |
---|
| 773 | grok.require('waeup.payApplicant') |
---|
[8243] | 774 | factory = u'waeup.ApplicantOnlinePayment' |
---|
[7250] | 775 | |
---|
[11726] | 776 | @property |
---|
| 777 | def custom_requirements(self): |
---|
| 778 | return '' |
---|
| 779 | |
---|
[7250] | 780 | def update(self): |
---|
[11726] | 781 | # Additional requirements in custom packages. |
---|
| 782 | if self.custom_requirements: |
---|
| 783 | self.flash( |
---|
| 784 | self.custom_requirements, |
---|
| 785 | type='danger') |
---|
| 786 | self.redirect(self.url(self.context)) |
---|
[11727] | 787 | return |
---|
[11575] | 788 | if not self.context.special: |
---|
| 789 | for key in self.context.keys(): |
---|
| 790 | ticket = self.context[key] |
---|
| 791 | if ticket.p_state == 'paid': |
---|
| 792 | self.flash( |
---|
| 793 | _('This type of payment has already been made.'), |
---|
| 794 | type='warning') |
---|
| 795 | self.redirect(self.url(self.context)) |
---|
| 796 | return |
---|
[8524] | 797 | applicants_utils = getUtility(IApplicantsUtils) |
---|
| 798 | container = self.context.__parent__ |
---|
[8243] | 799 | payment = createObject(self.factory) |
---|
[11254] | 800 | failure = applicants_utils.setPaymentDetails( |
---|
[10831] | 801 | container, payment, self.context) |
---|
[11254] | 802 | if failure is not None: |
---|
[13123] | 803 | self.flash(failure, type='danger') |
---|
[8524] | 804 | self.redirect(self.url(self.context)) |
---|
| 805 | return |
---|
[7250] | 806 | self.context[payment.p_id] = payment |
---|
[12893] | 807 | self.context.writeLogMessage(self, 'added: %s' % payment.p_id) |
---|
[7714] | 808 | self.flash(_('Payment ticket created.')) |
---|
[8280] | 809 | self.redirect(self.url(payment)) |
---|
[7250] | 810 | return |
---|
| 811 | |
---|
| 812 | def render(self): |
---|
| 813 | return |
---|
| 814 | |
---|
| 815 | |
---|
[7819] | 816 | class OnlinePaymentDisplayFormPage(KofaDisplayFormPage): |
---|
[7250] | 817 | """ Page to view an online payment ticket |
---|
| 818 | """ |
---|
| 819 | grok.context(IApplicantOnlinePayment) |
---|
| 820 | grok.name('index') |
---|
| 821 | grok.require('waeup.viewApplication') |
---|
[9984] | 822 | form_fields = grok.AutoFields(IApplicantOnlinePayment).omit('p_item') |
---|
[8170] | 823 | form_fields[ |
---|
| 824 | 'creation_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
| 825 | form_fields[ |
---|
| 826 | 'payment_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
[7250] | 827 | pnav = 3 |
---|
| 828 | |
---|
| 829 | @property |
---|
| 830 | def label(self): |
---|
[7714] | 831 | return _('${a}: Online Payment Ticket ${b}', mapping = { |
---|
[8170] | 832 | 'a':self.context.__parent__.display_fullname, |
---|
| 833 | 'b':self.context.p_id}) |
---|
[7250] | 834 | |
---|
[8420] | 835 | class OnlinePaymentApprovePage(UtilityView, grok.View): |
---|
| 836 | """ Approval view |
---|
[7250] | 837 | """ |
---|
| 838 | grok.context(IApplicantOnlinePayment) |
---|
[8420] | 839 | grok.name('approve') |
---|
| 840 | grok.require('waeup.managePortal') |
---|
[7250] | 841 | |
---|
| 842 | def update(self): |
---|
[11580] | 843 | flashtype, msg, log = self.context.approveApplicantPayment() |
---|
[8428] | 844 | if log is not None: |
---|
[9771] | 845 | applicant = self.context.__parent__ |
---|
| 846 | # Add log message to applicants.log |
---|
| 847 | applicant.writeLogMessage(self, log) |
---|
| 848 | # Add log message to payments.log |
---|
| 849 | self.context.logger.info( |
---|
[9795] | 850 | '%s,%s,%s,%s,%s,,,,,,' % ( |
---|
[9771] | 851 | applicant.applicant_id, |
---|
| 852 | self.context.p_id, self.context.p_category, |
---|
| 853 | self.context.amount_auth, self.context.r_code)) |
---|
[11580] | 854 | self.flash(msg, type=flashtype) |
---|
[7250] | 855 | return |
---|
| 856 | |
---|
| 857 | def render(self): |
---|
| 858 | self.redirect(self.url(self.context, '@@index')) |
---|
| 859 | return |
---|
| 860 | |
---|
[7459] | 861 | class ExportPDFPaymentSlipPage(UtilityView, grok.View): |
---|
[7250] | 862 | """Deliver a PDF slip of the context. |
---|
| 863 | """ |
---|
| 864 | grok.context(IApplicantOnlinePayment) |
---|
[8262] | 865 | grok.name('payment_slip.pdf') |
---|
[7250] | 866 | grok.require('waeup.viewApplication') |
---|
[9984] | 867 | form_fields = grok.AutoFields(IApplicantOnlinePayment).omit('p_item') |
---|
[8173] | 868 | form_fields['creation_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
| 869 | form_fields['payment_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
[16058] | 870 | #prefix = 'form' |
---|
[8258] | 871 | note = None |
---|
[7250] | 872 | |
---|
| 873 | @property |
---|
[7714] | 874 | def title(self): |
---|
[7819] | 875 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[7811] | 876 | return translate(_('Payment Data'), 'waeup.kofa', |
---|
[7714] | 877 | target_language=portal_language) |
---|
| 878 | |
---|
| 879 | @property |
---|
[7250] | 880 | def label(self): |
---|
[7819] | 881 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[8262] | 882 | return translate(_('Online Payment Slip'), |
---|
[7811] | 883 | 'waeup.kofa', target_language=portal_language) \ |
---|
[7714] | 884 | + ' %s' % self.context.p_id |
---|
[7250] | 885 | |
---|
[11754] | 886 | @property |
---|
| 887 | def payment_slip_download_warning(self): |
---|
[14567] | 888 | if self.context.__parent__.state not in ( |
---|
| 889 | SUBMITTED, ADMITTED, NOT_ADMITTED, CREATED): |
---|
[11754] | 890 | return _('Please submit the application form before ' |
---|
| 891 | 'trying to download payment slips.') |
---|
| 892 | return '' |
---|
| 893 | |
---|
[7250] | 894 | def render(self): |
---|
[11754] | 895 | if self.payment_slip_download_warning: |
---|
| 896 | self.flash(self.payment_slip_download_warning, type='danger') |
---|
[11599] | 897 | self.redirect(self.url(self.context)) |
---|
| 898 | return |
---|
[7259] | 899 | applicantview = ApplicantBaseDisplayFormPage(self.context.__parent__, |
---|
[7250] | 900 | self.request) |
---|
| 901 | students_utils = getUtility(IStudentsUtils) |
---|
[8262] | 902 | return students_utils.renderPDF(self,'payment_slip.pdf', |
---|
[8258] | 903 | self.context.__parent__, applicantview, note=self.note) |
---|
[7250] | 904 | |
---|
[10571] | 905 | class ExportPDFPageApplicationSlip(UtilityView, grok.View): |
---|
[6358] | 906 | """Deliver a PDF slip of the context. |
---|
| 907 | """ |
---|
| 908 | grok.context(IApplicant) |
---|
| 909 | grok.name('application_slip.pdf') |
---|
[7136] | 910 | grok.require('waeup.viewApplication') |
---|
[16058] | 911 | #prefix = 'form' |
---|
[6358] | 912 | |
---|
[8666] | 913 | def update(self): |
---|
[9051] | 914 | if self.context.state in ('initialized', 'started', 'paid'): |
---|
[8666] | 915 | self.flash( |
---|
[11254] | 916 | _('Please pay and submit before trying to download ' |
---|
| 917 | 'the application slip.'), type='warning') |
---|
[8666] | 918 | return self.redirect(self.url(self.context)) |
---|
| 919 | return |
---|
| 920 | |
---|
[6358] | 921 | def render(self): |
---|
[12395] | 922 | try: |
---|
| 923 | pdfstream = getAdapter(self.context, IPDF, name='application_slip')( |
---|
| 924 | view=self) |
---|
| 925 | except IOError: |
---|
| 926 | self.flash( |
---|
| 927 | _('Your image file is corrupted. ' |
---|
| 928 | 'Please replace.'), type='danger') |
---|
| 929 | return self.redirect(self.url(self.context)) |
---|
[14256] | 930 | except LayoutError, err: |
---|
[15583] | 931 | self.flash( |
---|
[14256] | 932 | 'PDF file could not be created. Reportlab error message: %s' |
---|
| 933 | % escape(err.message), |
---|
| 934 | type="danger") |
---|
| 935 | return self.redirect(self.url(self.context)) |
---|
[6358] | 936 | self.response.setHeader( |
---|
| 937 | 'Content-Type', 'application/pdf') |
---|
[7392] | 938 | return pdfstream |
---|
[6358] | 939 | |
---|
[7081] | 940 | def handle_img_upload(upload, context, view): |
---|
[7063] | 941 | """Handle upload of applicant image. |
---|
[7081] | 942 | |
---|
| 943 | Returns `True` in case of success or `False`. |
---|
| 944 | |
---|
| 945 | Please note that file pointer passed in (`upload`) most probably |
---|
| 946 | points to end of file when leaving this function. |
---|
[7063] | 947 | """ |
---|
[15833] | 948 | max_upload_size = getUtility(IKofaUtils).MAX_PASSPORT_SIZE |
---|
[7081] | 949 | size = file_size(upload) |
---|
[15833] | 950 | if size > max_upload_size: |
---|
[11254] | 951 | view.flash(_('Uploaded image is too big!'), type='danger') |
---|
[7081] | 952 | return False |
---|
[7247] | 953 | dummy, ext = os.path.splitext(upload.filename) |
---|
| 954 | ext.lower() |
---|
| 955 | if ext != '.jpg': |
---|
[11254] | 956 | view.flash(_('jpg file extension expected.'), type='danger') |
---|
[7247] | 957 | return False |
---|
[7081] | 958 | upload.seek(0) # file pointer moved when determining size |
---|
[7063] | 959 | store = getUtility(IExtFileStore) |
---|
| 960 | file_id = IFileStoreNameChooser(context).chooseName() |
---|
[14001] | 961 | try: |
---|
| 962 | store.createFile(file_id, upload) |
---|
| 963 | except IOError: |
---|
| 964 | view.flash(_('Image file cannot be changed.'), type='danger') |
---|
| 965 | return False |
---|
[7081] | 966 | return True |
---|
[7063] | 967 | |
---|
[15943] | 968 | def handle_file_upload(upload, context, view, attr=None): |
---|
| 969 | """Handle upload of applicant files. |
---|
| 970 | |
---|
| 971 | Returns `True` in case of success or `False`. |
---|
| 972 | |
---|
| 973 | Please note that file pointer passed in (`upload`) most probably |
---|
| 974 | points to end of file when leaving this function. |
---|
| 975 | """ |
---|
| 976 | size = file_size(upload) |
---|
| 977 | max_upload_size = 1024 * getUtility(IStudentsUtils).MAX_KB |
---|
| 978 | if size > max_upload_size: |
---|
| 979 | view.flash(_('Uploaded file is too big!')) |
---|
| 980 | return False |
---|
| 981 | dummy, ext = os.path.splitext(upload.filename) |
---|
| 982 | ext.lower() |
---|
| 983 | if ext != '.pdf': |
---|
| 984 | view.flash(_('pdf file extension expected.')) |
---|
| 985 | return False |
---|
| 986 | upload.seek(0) # file pointer moved when determining size |
---|
| 987 | store = getUtility(IExtFileStore) |
---|
| 988 | file_id = IFileStoreNameChooser(context).chooseName(attr=attr) |
---|
| 989 | store.createFile(file_id, upload) |
---|
| 990 | return True |
---|
| 991 | |
---|
[7819] | 992 | class ApplicantManageFormPage(KofaEditFormPage): |
---|
[6196] | 993 | """A full edit view for applicant data. |
---|
| 994 | """ |
---|
| 995 | grok.context(IApplicant) |
---|
[7200] | 996 | grok.name('manage') |
---|
[7136] | 997 | grok.require('waeup.manageApplication') |
---|
[7200] | 998 | grok.template('applicanteditpage') |
---|
[6322] | 999 | manage_applications = True |
---|
[6196] | 1000 | pnav = 3 |
---|
[12664] | 1001 | display_actions = [[_('Save'), _('Finally Submit')], |
---|
[7714] | 1002 | [_('Add online payment ticket'),_('Remove selected tickets')]] |
---|
[6196] | 1003 | |
---|
[8046] | 1004 | @property |
---|
[13886] | 1005 | def display_payments(self): |
---|
[15122] | 1006 | if self.context.payments: |
---|
| 1007 | return True |
---|
[13886] | 1008 | if self.context.special: |
---|
| 1009 | return True |
---|
| 1010 | return getattr(self.context.__parent__, 'application_fee', None) |
---|
| 1011 | |
---|
| 1012 | @property |
---|
[13976] | 1013 | def display_refereereports(self): |
---|
| 1014 | if self.context.refereereports: |
---|
| 1015 | return True |
---|
| 1016 | return False |
---|
| 1017 | |
---|
[15946] | 1018 | def display_fileupload(self, filename): |
---|
| 1019 | """This method can be used in custom packages to avoid unneccessary |
---|
| 1020 | file uploads. |
---|
| 1021 | """ |
---|
| 1022 | return True |
---|
| 1023 | |
---|
[13976] | 1024 | @property |
---|
[10831] | 1025 | def form_fields(self): |
---|
| 1026 | if self.context.special: |
---|
[10845] | 1027 | form_fields = grok.AutoFields(ISpecialApplicant) |
---|
| 1028 | form_fields['applicant_id'].for_display = True |
---|
[10831] | 1029 | else: |
---|
| 1030 | form_fields = grok.AutoFields(IApplicant) |
---|
| 1031 | form_fields['student_id'].for_display = True |
---|
| 1032 | form_fields['applicant_id'].for_display = True |
---|
| 1033 | return form_fields |
---|
| 1034 | |
---|
| 1035 | @property |
---|
[10534] | 1036 | def target(self): |
---|
| 1037 | return getattr(self.context.__parent__, 'prefix', None) |
---|
| 1038 | |
---|
| 1039 | @property |
---|
[8046] | 1040 | def separators(self): |
---|
| 1041 | return getUtility(IApplicantsUtils).SEPARATORS_DICT |
---|
| 1042 | |
---|
[11733] | 1043 | @property |
---|
| 1044 | def custom_upload_requirements(self): |
---|
| 1045 | return '' |
---|
| 1046 | |
---|
[6196] | 1047 | def update(self): |
---|
[7200] | 1048 | super(ApplicantManageFormPage, self).update() |
---|
[15833] | 1049 | max_upload_size = getUtility(IKofaUtils).MAX_PASSPORT_SIZE |
---|
[6353] | 1050 | self.wf_info = IWorkflowInfo(self.context) |
---|
[15833] | 1051 | self.max_upload_size = string_from_bytes(max_upload_size) |
---|
[10090] | 1052 | self.upload_success = None |
---|
[6598] | 1053 | upload = self.request.form.get('form.passport', None) |
---|
| 1054 | if upload: |
---|
[11733] | 1055 | if self.custom_upload_requirements: |
---|
| 1056 | self.flash( |
---|
| 1057 | self.custom_upload_requirements, |
---|
| 1058 | type='danger') |
---|
| 1059 | self.redirect(self.url(self.context)) |
---|
| 1060 | return |
---|
[10090] | 1061 | # We got a fresh upload, upload_success is |
---|
| 1062 | # either True or False |
---|
| 1063 | self.upload_success = handle_img_upload( |
---|
[7084] | 1064 | upload, self.context, self) |
---|
[10090] | 1065 | if self.upload_success: |
---|
[10095] | 1066 | self.context.writeLogMessage(self, 'saved: passport') |
---|
[15943] | 1067 | file_store = getUtility(IExtFileStore) |
---|
| 1068 | self.additional_files = getUtility(IApplicantsUtils).ADDITIONAL_FILES |
---|
| 1069 | for filename in self.additional_files: |
---|
| 1070 | upload = self.request.form.get(filename[1], None) |
---|
| 1071 | if upload: |
---|
| 1072 | # We got a fresh file upload |
---|
| 1073 | success = handle_file_upload( |
---|
| 1074 | upload, self.context, self, attr=filename[1]) |
---|
| 1075 | if success: |
---|
| 1076 | self.context.writeLogMessage( |
---|
| 1077 | self, 'saved: %s' % filename[1]) |
---|
| 1078 | else: |
---|
| 1079 | self.upload_success = False |
---|
[15946] | 1080 | self.max_file_upload_size = string_from_bytes( |
---|
| 1081 | 1024*getUtility(IStudentsUtils).MAX_KB) |
---|
[6196] | 1082 | return |
---|
| 1083 | |
---|
| 1084 | @property |
---|
| 1085 | def label(self): |
---|
| 1086 | container_title = self.context.__parent__.title |
---|
[8096] | 1087 | return _('${a} <br /> Application Form ${b}', mapping = { |
---|
[7714] | 1088 | 'a':container_title, 'b':self.context.application_number}) |
---|
[6196] | 1089 | |
---|
[6303] | 1090 | def getTransitions(self): |
---|
[6351] | 1091 | """Return a list of dicts of allowed transition ids and titles. |
---|
[6353] | 1092 | |
---|
| 1093 | Each list entry provides keys ``name`` and ``title`` for |
---|
| 1094 | internal name and (human readable) title of a single |
---|
| 1095 | transition. |
---|
[6349] | 1096 | """ |
---|
[8434] | 1097 | allowed_transitions = [t for t in self.wf_info.getManualTransitions() |
---|
[11482] | 1098 | if not t[0] in ('pay', 'create')] |
---|
[7687] | 1099 | return [dict(name='', title=_('No transition'))] +[ |
---|
[6355] | 1100 | dict(name=x, title=y) for x, y in allowed_transitions] |
---|
[6303] | 1101 | |
---|
[7714] | 1102 | @action(_('Save'), style='primary') |
---|
[6196] | 1103 | def save(self, **data): |
---|
[7240] | 1104 | form = self.request.form |
---|
| 1105 | password = form.get('password', None) |
---|
| 1106 | password_ctl = form.get('control_password', None) |
---|
| 1107 | if password: |
---|
| 1108 | validator = getUtility(IPasswordValidator) |
---|
| 1109 | errors = validator.validate_password(password, password_ctl) |
---|
| 1110 | if errors: |
---|
[11254] | 1111 | self.flash( ' '.join(errors), type='danger') |
---|
[7240] | 1112 | return |
---|
[10090] | 1113 | if self.upload_success is False: # False is not None! |
---|
| 1114 | # Error during image upload. Ignore other values. |
---|
| 1115 | return |
---|
[6475] | 1116 | changed_fields = self.applyData(self.context, **data) |
---|
[7199] | 1117 | # Turn list of lists into single list |
---|
| 1118 | if changed_fields: |
---|
| 1119 | changed_fields = reduce(lambda x,y: x+y, changed_fields.values()) |
---|
[7240] | 1120 | else: |
---|
| 1121 | changed_fields = [] |
---|
| 1122 | if password: |
---|
| 1123 | # Now we know that the form has no errors and can set password ... |
---|
| 1124 | IUserAccount(self.context).setPassword(password) |
---|
| 1125 | changed_fields.append('password') |
---|
[7199] | 1126 | fields_string = ' + '.join(changed_fields) |
---|
[7085] | 1127 | trans_id = form.get('transition', None) |
---|
| 1128 | if trans_id: |
---|
| 1129 | self.wf_info.fireTransition(trans_id) |
---|
[7714] | 1130 | self.flash(_('Form has been saved.')) |
---|
[6644] | 1131 | if fields_string: |
---|
[12892] | 1132 | self.context.writeLogMessage(self, 'saved: %s' % fields_string) |
---|
[6196] | 1133 | return |
---|
| 1134 | |
---|
[7250] | 1135 | def unremovable(self, ticket): |
---|
[7330] | 1136 | return False |
---|
[7250] | 1137 | |
---|
| 1138 | # This method is also used by the ApplicantEditFormPage |
---|
| 1139 | def delPaymentTickets(self, **data): |
---|
| 1140 | form = self.request.form |
---|
[9701] | 1141 | if 'val_id' in form: |
---|
[7250] | 1142 | child_id = form['val_id'] |
---|
| 1143 | else: |
---|
[11254] | 1144 | self.flash(_('No payment selected.'), type='warning') |
---|
[7250] | 1145 | self.redirect(self.url(self.context)) |
---|
| 1146 | return |
---|
| 1147 | if not isinstance(child_id, list): |
---|
| 1148 | child_id = [child_id] |
---|
| 1149 | deleted = [] |
---|
| 1150 | for id in child_id: |
---|
| 1151 | # Applicants are not allowed to remove used payment tickets |
---|
| 1152 | if not self.unremovable(self.context[id]): |
---|
| 1153 | try: |
---|
| 1154 | del self.context[id] |
---|
| 1155 | deleted.append(id) |
---|
| 1156 | except: |
---|
[7714] | 1157 | self.flash(_('Could not delete:') + ' %s: %s: %s' % ( |
---|
[11254] | 1158 | id, sys.exc_info()[0], sys.exc_info()[1]), type='danger') |
---|
[7250] | 1159 | if len(deleted): |
---|
[7741] | 1160 | self.flash(_('Successfully removed: ${a}', |
---|
[7738] | 1161 | mapping = {'a':', '.join(deleted)})) |
---|
[8742] | 1162 | self.context.writeLogMessage( |
---|
| 1163 | self, 'removed: % s' % ', '.join(deleted)) |
---|
[7250] | 1164 | return |
---|
| 1165 | |
---|
[7252] | 1166 | # We explicitely want the forms to be validated before payment tickets |
---|
| 1167 | # can be created. If no validation is requested, use |
---|
[7459] | 1168 | # 'validator=NullValidator' in the action directive |
---|
[11578] | 1169 | @action(_('Add online payment ticket'), style='primary') |
---|
[7250] | 1170 | def addPaymentTicket(self, **data): |
---|
| 1171 | self.redirect(self.url(self.context, '@@addafp')) |
---|
[7252] | 1172 | return |
---|
[7250] | 1173 | |
---|
[7714] | 1174 | @jsaction(_('Remove selected tickets')) |
---|
[7250] | 1175 | def removePaymentTickets(self, **data): |
---|
| 1176 | self.delPaymentTickets(**data) |
---|
| 1177 | self.redirect(self.url(self.context) + '/@@manage') |
---|
| 1178 | return |
---|
| 1179 | |
---|
[10094] | 1180 | # Not used in base package |
---|
| 1181 | def file_exists(self, attr): |
---|
| 1182 | file = getUtility(IExtFileStore).getFileByContext( |
---|
| 1183 | self.context, attr=attr) |
---|
| 1184 | if file: |
---|
| 1185 | return True |
---|
| 1186 | else: |
---|
| 1187 | return False |
---|
| 1188 | |
---|
[7200] | 1189 | class ApplicantEditFormPage(ApplicantManageFormPage): |
---|
[5982] | 1190 | """An applicant-centered edit view for applicant data. |
---|
| 1191 | """ |
---|
[6196] | 1192 | grok.context(IApplicantEdit) |
---|
[5273] | 1193 | grok.name('edit') |
---|
[6198] | 1194 | grok.require('waeup.handleApplication') |
---|
[7200] | 1195 | grok.template('applicanteditpage') |
---|
[6322] | 1196 | manage_applications = False |
---|
[10358] | 1197 | submit_state = PAID |
---|
[16059] | 1198 | mandate_days = 7 |
---|
[5484] | 1199 | |
---|
[7250] | 1200 | @property |
---|
[13976] | 1201 | def display_refereereports(self): |
---|
| 1202 | return False |
---|
| 1203 | |
---|
| 1204 | @property |
---|
[10831] | 1205 | def form_fields(self): |
---|
| 1206 | if self.context.special: |
---|
[11657] | 1207 | form_fields = grok.AutoFields(ISpecialApplicant).omit( |
---|
| 1208 | 'locked', 'suspended') |
---|
[10845] | 1209 | form_fields['applicant_id'].for_display = True |
---|
[10831] | 1210 | else: |
---|
| 1211 | form_fields = grok.AutoFields(IApplicantEdit).omit( |
---|
| 1212 | 'locked', 'course_admitted', 'student_id', |
---|
[10845] | 1213 | 'suspended' |
---|
[10831] | 1214 | ) |
---|
| 1215 | form_fields['applicant_id'].for_display = True |
---|
| 1216 | form_fields['reg_number'].for_display = True |
---|
| 1217 | return form_fields |
---|
| 1218 | |
---|
| 1219 | @property |
---|
[7250] | 1220 | def display_actions(self): |
---|
[8286] | 1221 | state = IWorkflowState(self.context).getState() |
---|
[13100] | 1222 | # If the form is unlocked, applicants are allowed to save the form |
---|
| 1223 | # and remove unused tickets. |
---|
| 1224 | actions = [[_('Save')], [_('Remove selected tickets')]] |
---|
| 1225 | # Only in state started they can also add tickets. |
---|
[10358] | 1226 | if state == STARTED: |
---|
[7714] | 1227 | actions = [[_('Save')], |
---|
| 1228 | [_('Add online payment ticket'),_('Remove selected tickets')]] |
---|
[13100] | 1229 | # In state paid, they can submit the data and further add tickets |
---|
| 1230 | # if the application is special. |
---|
[11599] | 1231 | elif self.context.special and state == PAID: |
---|
[12664] | 1232 | actions = [[_('Save'), _('Finally Submit')], |
---|
[11599] | 1233 | [_('Add online payment ticket'),_('Remove selected tickets')]] |
---|
[8286] | 1234 | elif state == PAID: |
---|
[12664] | 1235 | actions = [[_('Save'), _('Finally Submit')], |
---|
[7714] | 1236 | [_('Remove selected tickets')]] |
---|
[7250] | 1237 | return actions |
---|
| 1238 | |
---|
[7330] | 1239 | def unremovable(self, ticket): |
---|
[13100] | 1240 | return ticket.r_code |
---|
[7330] | 1241 | |
---|
[7145] | 1242 | def emit_lock_message(self): |
---|
[11254] | 1243 | self.flash(_('The requested form is locked (read-only).'), |
---|
| 1244 | type='warning') |
---|
[5941] | 1245 | self.redirect(self.url(self.context)) |
---|
| 1246 | return |
---|
[6078] | 1247 | |
---|
[5686] | 1248 | def update(self): |
---|
[8665] | 1249 | if self.context.locked or ( |
---|
| 1250 | self.context.__parent__.expired and |
---|
| 1251 | self.context.__parent__.strict_deadline): |
---|
[7145] | 1252 | self.emit_lock_message() |
---|
[5941] | 1253 | return |
---|
[7200] | 1254 | super(ApplicantEditFormPage, self).update() |
---|
[5686] | 1255 | return |
---|
[5952] | 1256 | |
---|
[15634] | 1257 | def dataNotComplete(self, data): |
---|
[15502] | 1258 | if self.context.__parent__.with_picture: |
---|
| 1259 | store = getUtility(IExtFileStore) |
---|
| 1260 | if not store.getFileByContext(self.context, attr=u'passport.jpg'): |
---|
| 1261 | return _('No passport picture uploaded.') |
---|
| 1262 | if not self.request.form.get('confirm_passport', False): |
---|
| 1263 | return _('Passport picture confirmation box not ticked.') |
---|
[6196] | 1264 | return False |
---|
[5952] | 1265 | |
---|
[7252] | 1266 | # We explicitely want the forms to be validated before payment tickets |
---|
| 1267 | # can be created. If no validation is requested, use |
---|
[7459] | 1268 | # 'validator=NullValidator' in the action directive |
---|
[11578] | 1269 | @action(_('Add online payment ticket'), style='primary') |
---|
[7250] | 1270 | def addPaymentTicket(self, **data): |
---|
| 1271 | self.redirect(self.url(self.context, '@@addafp')) |
---|
[7252] | 1272 | return |
---|
[7250] | 1273 | |
---|
[7714] | 1274 | @jsaction(_('Remove selected tickets')) |
---|
[7250] | 1275 | def removePaymentTickets(self, **data): |
---|
| 1276 | self.delPaymentTickets(**data) |
---|
| 1277 | self.redirect(self.url(self.context) + '/@@edit') |
---|
| 1278 | return |
---|
| 1279 | |
---|
[7996] | 1280 | @action(_('Save'), style='primary') |
---|
[5273] | 1281 | def save(self, **data): |
---|
[10090] | 1282 | if self.upload_success is False: # False is not None! |
---|
| 1283 | # Error during image upload. Ignore other values. |
---|
| 1284 | return |
---|
[5273] | 1285 | self.applyData(self.context, **data) |
---|
[10210] | 1286 | self.flash(_('Form has been saved.')) |
---|
[5273] | 1287 | return |
---|
| 1288 | |
---|
[14014] | 1289 | def informReferees(self): |
---|
| 1290 | site = grok.getSite() |
---|
| 1291 | kofa_utils = getUtility(IKofaUtils) |
---|
| 1292 | ob_class = self.__implemented__.__name__.replace('waeup.kofa.','') |
---|
| 1293 | failed = '' |
---|
[14016] | 1294 | emails_sent = 0 |
---|
[14014] | 1295 | for referee in self.context.referees: |
---|
| 1296 | if referee.email_sent: |
---|
| 1297 | continue |
---|
[16059] | 1298 | mandate = RefereeReportMandate(days=self.mandate_days) |
---|
[14014] | 1299 | mandate.params['name'] = referee.name |
---|
| 1300 | mandate.params['email'] = referee.email |
---|
| 1301 | mandate.params[ |
---|
| 1302 | 'redirect_path'] = '/applicants/%s/%s/addrefereereport' % ( |
---|
| 1303 | self.context.__parent__.code, |
---|
| 1304 | self.context.application_number) |
---|
[16059] | 1305 | mandate.params['redirect_path2'] = '' |
---|
| 1306 | mandate.params['applicant_id'] = self.context.applicant_id |
---|
[14014] | 1307 | site['mandates'].addMandate(mandate) |
---|
| 1308 | # Send invitation email |
---|
| 1309 | args = {'mandate_id':mandate.mandate_id} |
---|
| 1310 | mandate_url = self.url(site) + '/mandate?%s' % urlencode(args) |
---|
| 1311 | url_info = u'Report link: %s' % mandate_url |
---|
| 1312 | success = kofa_utils.inviteReferee(referee, self.context, url_info) |
---|
| 1313 | if success: |
---|
[14016] | 1314 | emails_sent += 1 |
---|
[14014] | 1315 | self.context.writeLogMessage( |
---|
| 1316 | self, 'email sent: %s' % referee.email) |
---|
| 1317 | referee.email_sent = True |
---|
| 1318 | else: |
---|
| 1319 | failed += '%s ' % referee.email |
---|
[14016] | 1320 | return failed, emails_sent |
---|
[14014] | 1321 | |
---|
[14025] | 1322 | @action(_('Finally Submit'), warning=WARNING) |
---|
[5484] | 1323 | def finalsubmit(self, **data): |
---|
[10090] | 1324 | if self.upload_success is False: # False is not None! |
---|
[7084] | 1325 | return # error during image upload. Ignore other values |
---|
[15636] | 1326 | dnt = self.dataNotComplete(data) |
---|
| 1327 | if dnt: |
---|
| 1328 | self.flash(dnt, type='danger') |
---|
[5941] | 1329 | return |
---|
[7252] | 1330 | self.applyData(self.context, **data) |
---|
[8286] | 1331 | state = IWorkflowState(self.context).getState() |
---|
[6322] | 1332 | # This shouldn't happen, but the application officer |
---|
| 1333 | # might have forgotten to lock the form after changing the state |
---|
[10358] | 1334 | if state != self.submit_state: |
---|
[11254] | 1335 | self.flash(_('The form cannot be submitted. Wrong state!'), |
---|
| 1336 | type='danger') |
---|
[6303] | 1337 | return |
---|
[14014] | 1338 | msg = _('Form has been submitted.') |
---|
| 1339 | # Create mandates and send emails to referees |
---|
| 1340 | if getattr(self.context, 'referees', None): |
---|
[14016] | 1341 | failed, emails_sent = self.informReferees() |
---|
[14014] | 1342 | if failed: |
---|
| 1343 | self.flash( |
---|
| 1344 | _('Some invitation emails could not be sent:') + failed, |
---|
| 1345 | type='danger') |
---|
| 1346 | return |
---|
| 1347 | msg = _('Form has been successfully submitted and ' |
---|
[14016] | 1348 | '${a} invitation emails were sent.', |
---|
| 1349 | mapping = {'a': emails_sent}) |
---|
[6303] | 1350 | IWorkflowInfo(self.context).fireTransition('submit') |
---|
[8589] | 1351 | # application_date is used in export files for sorting. |
---|
| 1352 | # We can thus store utc. |
---|
[8194] | 1353 | self.context.application_date = datetime.utcnow() |
---|
[14014] | 1354 | self.flash(msg) |
---|
[6196] | 1355 | self.redirect(self.url(self.context)) |
---|
[5273] | 1356 | return |
---|
[5941] | 1357 | |
---|
[7063] | 1358 | class PassportImage(grok.View): |
---|
| 1359 | """Renders the passport image for applicants. |
---|
| 1360 | """ |
---|
| 1361 | grok.name('passport.jpg') |
---|
| 1362 | grok.context(IApplicant) |
---|
[7113] | 1363 | grok.require('waeup.viewApplication') |
---|
[7063] | 1364 | |
---|
| 1365 | def render(self): |
---|
| 1366 | # A filename chooser turns a context into a filename suitable |
---|
| 1367 | # for file storage. |
---|
| 1368 | image = getUtility(IExtFileStore).getFileByContext(self.context) |
---|
[16059] | 1369 | self.response.setHeader('Content-Type', 'image/jpeg') |
---|
[7063] | 1370 | if image is None: |
---|
| 1371 | # show placeholder image |
---|
[7089] | 1372 | return open(DEFAULT_PASSPORT_IMAGE_PATH, 'rb').read() |
---|
[7063] | 1373 | return image |
---|
[7363] | 1374 | |
---|
[16059] | 1375 | class PassportImageForReport(PassportImage): |
---|
| 1376 | """Renders the passport image for applicants for referee reports. |
---|
| 1377 | """ |
---|
| 1378 | grok.name('passport_for_report.jpg') |
---|
| 1379 | grok.context(IApplicant) |
---|
| 1380 | grok.require('waeup.Public') |
---|
| 1381 | |
---|
| 1382 | def render(self): |
---|
| 1383 | # Check mandate |
---|
| 1384 | form = self.request.form |
---|
| 1385 | self.mandate_id = form.get('mandate_id', None) |
---|
| 1386 | self.mandates = grok.getSite()['mandates'] |
---|
| 1387 | mandate = self.mandates.get(self.mandate_id, None) |
---|
| 1388 | if mandate is None: |
---|
| 1389 | self.flash(_('No mandate.'), type='warning') |
---|
| 1390 | self.redirect(self.application_url()) |
---|
| 1391 | return |
---|
| 1392 | if mandate: |
---|
| 1393 | # Check the mandate expiration date after redirect again |
---|
| 1394 | if mandate.expires < datetime.utcnow(): |
---|
| 1395 | self.flash(_('Mandate expired.'), |
---|
| 1396 | type='warning') |
---|
| 1397 | self.redirect(self.application_url()) |
---|
| 1398 | return |
---|
| 1399 | # Check if mandate allows access |
---|
| 1400 | if mandate.params.get('applicant_id') != self.context.applicant_id: |
---|
| 1401 | self.flash(_('Wrong mandate.'), |
---|
| 1402 | type='warning') |
---|
| 1403 | self.redirect(self.application_url()) |
---|
| 1404 | return |
---|
| 1405 | return super(PassportImageForReport, self).render() |
---|
| 1406 | return |
---|
| 1407 | |
---|
[7819] | 1408 | class ApplicantRegistrationPage(KofaAddFormPage): |
---|
[7363] | 1409 | """Captcha'd registration page for applicants. |
---|
| 1410 | """ |
---|
| 1411 | grok.context(IApplicantsContainer) |
---|
| 1412 | grok.name('register') |
---|
[7373] | 1413 | grok.require('waeup.Anonymous') |
---|
[7363] | 1414 | grok.template('applicantregister') |
---|
| 1415 | |
---|
[7368] | 1416 | @property |
---|
[8033] | 1417 | def form_fields(self): |
---|
| 1418 | form_fields = None |
---|
[8128] | 1419 | if self.context.mode == 'update': |
---|
| 1420 | form_fields = grok.AutoFields(IApplicantRegisterUpdate).select( |
---|
[11738] | 1421 | 'lastname','reg_number','email') |
---|
[8128] | 1422 | else: #if self.context.mode == 'create': |
---|
[8033] | 1423 | form_fields = grok.AutoFields(IApplicantEdit).select( |
---|
| 1424 | 'firstname', 'middlename', 'lastname', 'email', 'phone') |
---|
| 1425 | return form_fields |
---|
| 1426 | |
---|
| 1427 | @property |
---|
[7368] | 1428 | def label(self): |
---|
[8078] | 1429 | return _('Apply for ${a}', |
---|
[7714] | 1430 | mapping = {'a':self.context.title}) |
---|
[7368] | 1431 | |
---|
[7363] | 1432 | def update(self): |
---|
[8665] | 1433 | if self.context.expired: |
---|
[11254] | 1434 | self.flash(_('Outside application period.'), type='warning') |
---|
[7368] | 1435 | self.redirect(self.url(self.context)) |
---|
| 1436 | return |
---|
[13394] | 1437 | blocker = grok.getSite()['configuration'].maintmode_enabled_by |
---|
| 1438 | if blocker: |
---|
| 1439 | self.flash(_('The portal is in maintenance mode ' |
---|
| 1440 | 'and registration temporarily disabled.'), |
---|
| 1441 | type='warning') |
---|
| 1442 | self.redirect(self.url(self.context)) |
---|
| 1443 | return |
---|
[7368] | 1444 | # Handle captcha |
---|
[7363] | 1445 | self.captcha = getUtility(ICaptchaManager).getCaptcha() |
---|
| 1446 | self.captcha_result = self.captcha.verify(self.request) |
---|
| 1447 | self.captcha_code = self.captcha.display(self.captcha_result.error_code) |
---|
| 1448 | return |
---|
| 1449 | |
---|
[8629] | 1450 | def _redirect(self, email, password, applicant_id): |
---|
| 1451 | # Forward only email to landing page in base package. |
---|
| 1452 | self.redirect(self.url(self.context, 'registration_complete', |
---|
| 1453 | data = dict(email=email))) |
---|
| 1454 | return |
---|
| 1455 | |
---|
[14578] | 1456 | @property |
---|
| 1457 | def _postfix(self): |
---|
| 1458 | """In customized packages we can add a container dependent string if |
---|
| 1459 | applicants have been imported into several containers. |
---|
| 1460 | """ |
---|
| 1461 | return '' |
---|
| 1462 | |
---|
[9178] | 1463 | @action(_('Send login credentials to email address'), style='primary') |
---|
[7363] | 1464 | def register(self, **data): |
---|
| 1465 | if not self.captcha_result.is_valid: |
---|
[8037] | 1466 | # Captcha will display error messages automatically. |
---|
[7363] | 1467 | # No need to flash something. |
---|
| 1468 | return |
---|
[8033] | 1469 | if self.context.mode == 'create': |
---|
[13217] | 1470 | # Check if there are unused records in this container which |
---|
| 1471 | # can be taken |
---|
| 1472 | applicant = self.context.first_unused |
---|
| 1473 | if applicant is None: |
---|
[13215] | 1474 | # Add applicant |
---|
| 1475 | applicant = createObject(u'waeup.Applicant') |
---|
| 1476 | self.context.addApplicant(applicant) |
---|
[14110] | 1477 | else: |
---|
| 1478 | applicants_root = grok.getSite()['applicants'] |
---|
| 1479 | ob_class = self.__implemented__.__name__.replace( |
---|
| 1480 | 'waeup.kofa.','') |
---|
| 1481 | applicants_root.logger.info('%s - used: %s' % ( |
---|
| 1482 | ob_class, applicant.applicant_id)) |
---|
[8033] | 1483 | self.applyData(applicant, **data) |
---|
[15578] | 1484 | # applicant.reg_number = applicant.applicant_id |
---|
[8042] | 1485 | notify(grok.ObjectModifiedEvent(applicant)) |
---|
[8033] | 1486 | elif self.context.mode == 'update': |
---|
| 1487 | # Update applicant |
---|
[8037] | 1488 | reg_number = data.get('reg_number','') |
---|
[11738] | 1489 | lastname = data.get('lastname','') |
---|
[8033] | 1490 | cat = getUtility(ICatalog, name='applicants_catalog') |
---|
[14578] | 1491 | searchstr = reg_number + self._postfix |
---|
[8033] | 1492 | results = list( |
---|
[14578] | 1493 | cat.searchResults(reg_number=(searchstr, searchstr))) |
---|
[8033] | 1494 | if results: |
---|
| 1495 | applicant = results[0] |
---|
[11738] | 1496 | if getattr(applicant,'lastname',None) is None: |
---|
[11254] | 1497 | self.flash(_('An error occurred.'), type='danger') |
---|
[8037] | 1498 | return |
---|
[11738] | 1499 | elif applicant.lastname.lower() != lastname.lower(): |
---|
[8042] | 1500 | # Don't tell the truth here. Anonymous must not |
---|
[11738] | 1501 | # know that a record was found and only the lastname |
---|
[8042] | 1502 | # verification failed. |
---|
[13099] | 1503 | self.flash( |
---|
| 1504 | _('No application record found.'), type='warning') |
---|
[8037] | 1505 | return |
---|
[8627] | 1506 | elif applicant.password is not None and \ |
---|
| 1507 | applicant.state != INITIALIZED: |
---|
| 1508 | self.flash(_('Your password has already been set and used. ' |
---|
[11254] | 1509 | 'Please proceed to the login page.'), |
---|
| 1510 | type='warning') |
---|
[8042] | 1511 | return |
---|
| 1512 | # Store email address but nothing else. |
---|
[8033] | 1513 | applicant.email = data['email'] |
---|
[8042] | 1514 | notify(grok.ObjectModifiedEvent(applicant)) |
---|
[8033] | 1515 | else: |
---|
[8042] | 1516 | # No record found, this is the truth. |
---|
[11254] | 1517 | self.flash(_('No application record found.'), type='warning') |
---|
[8033] | 1518 | return |
---|
| 1519 | else: |
---|
[8042] | 1520 | # Does not happen but anyway ... |
---|
[8033] | 1521 | return |
---|
[7819] | 1522 | kofa_utils = getUtility(IKofaUtils) |
---|
[7811] | 1523 | password = kofa_utils.genPassword() |
---|
[7380] | 1524 | IUserAccount(applicant).setPassword(password) |
---|
[7365] | 1525 | # Send email with credentials |
---|
[7399] | 1526 | login_url = self.url(grok.getSite(), 'login') |
---|
[8853] | 1527 | url_info = u'Login: %s' % login_url |
---|
[7714] | 1528 | msg = _('You have successfully been registered for the') |
---|
[7811] | 1529 | if kofa_utils.sendCredentials(IUserAccount(applicant), |
---|
[8853] | 1530 | password, url_info, msg): |
---|
[8629] | 1531 | email_sent = applicant.email |
---|
[7380] | 1532 | else: |
---|
[8629] | 1533 | email_sent = None |
---|
| 1534 | self._redirect(email=email_sent, password=password, |
---|
| 1535 | applicant_id=applicant.applicant_id) |
---|
[7380] | 1536 | return |
---|
| 1537 | |
---|
[7819] | 1538 | class ApplicantRegistrationEmailSent(KofaPage): |
---|
[7380] | 1539 | """Landing page after successful registration. |
---|
[8629] | 1540 | |
---|
[7380] | 1541 | """ |
---|
| 1542 | grok.name('registration_complete') |
---|
| 1543 | grok.require('waeup.Public') |
---|
| 1544 | grok.template('applicantregemailsent') |
---|
[7714] | 1545 | label = _('Your registration was successful.') |
---|
[7380] | 1546 | |
---|
[8629] | 1547 | def update(self, email=None, applicant_id=None, password=None): |
---|
[7380] | 1548 | self.email = email |
---|
[8629] | 1549 | self.password = password |
---|
| 1550 | self.applicant_id = applicant_id |
---|
[7380] | 1551 | return |
---|
[10655] | 1552 | |
---|
[13254] | 1553 | class ApplicantCheckStatusPage(KofaPage): |
---|
| 1554 | """Captcha'd status checking page for applicants. |
---|
| 1555 | """ |
---|
| 1556 | grok.context(IApplicantsRoot) |
---|
| 1557 | grok.name('checkstatus') |
---|
| 1558 | grok.require('waeup.Anonymous') |
---|
| 1559 | grok.template('applicantcheckstatus') |
---|
| 1560 | buttonname = _('Submit') |
---|
| 1561 | |
---|
| 1562 | def label(self): |
---|
| 1563 | if self.result: |
---|
[13429] | 1564 | return _('Admission status of ${a}', |
---|
[13254] | 1565 | mapping = {'a':self.applicant.applicant_id}) |
---|
[13428] | 1566 | return _('Check your admission status') |
---|
[13254] | 1567 | |
---|
| 1568 | def update(self, SUBMIT=None): |
---|
| 1569 | form = self.request.form |
---|
| 1570 | self.result = False |
---|
| 1571 | # Handle captcha |
---|
| 1572 | self.captcha = getUtility(ICaptchaManager).getCaptcha() |
---|
| 1573 | self.captcha_result = self.captcha.verify(self.request) |
---|
| 1574 | self.captcha_code = self.captcha.display(self.captcha_result.error_code) |
---|
| 1575 | if SUBMIT: |
---|
| 1576 | if not self.captcha_result.is_valid: |
---|
| 1577 | # Captcha will display error messages automatically. |
---|
| 1578 | # No need to flash something. |
---|
| 1579 | return |
---|
[13363] | 1580 | unique_id = form.get('unique_id', None) |
---|
[13254] | 1581 | lastname = form.get('lastname', None) |
---|
[13363] | 1582 | if not unique_id or not lastname: |
---|
[13254] | 1583 | self.flash( |
---|
| 1584 | _('Required input missing.'), type='warning') |
---|
| 1585 | return |
---|
| 1586 | cat = getUtility(ICatalog, name='applicants_catalog') |
---|
| 1587 | results = list( |
---|
[13363] | 1588 | cat.searchResults(applicant_id=(unique_id, unique_id))) |
---|
| 1589 | if not results: |
---|
| 1590 | results = list( |
---|
| 1591 | cat.searchResults(reg_number=(unique_id, unique_id))) |
---|
[13254] | 1592 | if results: |
---|
| 1593 | applicant = results[0] |
---|
[13282] | 1594 | if applicant.lastname.lower().strip() != lastname.lower(): |
---|
[13254] | 1595 | # Don't tell the truth here. Anonymous must not |
---|
| 1596 | # know that a record was found and only the lastname |
---|
| 1597 | # verification failed. |
---|
| 1598 | self.flash( |
---|
| 1599 | _('No application record found.'), type='warning') |
---|
| 1600 | return |
---|
| 1601 | else: |
---|
| 1602 | self.flash(_('No application record found.'), type='warning') |
---|
| 1603 | return |
---|
| 1604 | self.applicant = applicant |
---|
| 1605 | self.entry_session = "%s/%s" % ( |
---|
| 1606 | applicant.__parent__.year, |
---|
| 1607 | applicant.__parent__.year+1) |
---|
| 1608 | course_admitted = getattr(applicant, 'course_admitted', None) |
---|
| 1609 | self.course_admitted = False |
---|
| 1610 | if course_admitted is not None: |
---|
[14394] | 1611 | try: |
---|
| 1612 | self.course_admitted = True |
---|
| 1613 | self.longtitle = course_admitted.longtitle |
---|
| 1614 | self.department = course_admitted.__parent__.__parent__.longtitle |
---|
| 1615 | self.faculty = course_admitted.__parent__.__parent__.__parent__.longtitle |
---|
| 1616 | except AttributeError: |
---|
| 1617 | self.flash(_('Application record invalid.'), type='warning') |
---|
| 1618 | return |
---|
[13254] | 1619 | self.result = True |
---|
| 1620 | self.admitted = False |
---|
| 1621 | self.not_admitted = False |
---|
| 1622 | self.submitted = False |
---|
| 1623 | self.not_submitted = False |
---|
[13356] | 1624 | self.created = False |
---|
[13254] | 1625 | if applicant.state in (ADMITTED, CREATED): |
---|
| 1626 | self.admitted = True |
---|
[13356] | 1627 | if applicant.state in (CREATED): |
---|
| 1628 | self.created = True |
---|
[13365] | 1629 | self.student_id = applicant.student_id |
---|
| 1630 | self.password = applicant.application_number |
---|
[13254] | 1631 | if applicant.state in (NOT_ADMITTED,): |
---|
| 1632 | self.not_admitted = True |
---|
| 1633 | if applicant.state in (SUBMITTED,): |
---|
| 1634 | self.submitted = True |
---|
| 1635 | if applicant.state in (INITIALIZED, STARTED, PAID): |
---|
| 1636 | self.not_submitted = True |
---|
| 1637 | return |
---|
| 1638 | |
---|
[10655] | 1639 | class ExportJobContainerOverview(KofaPage): |
---|
| 1640 | """Page that lists active applicant data export jobs and provides links |
---|
| 1641 | to discard or download CSV files. |
---|
| 1642 | |
---|
| 1643 | """ |
---|
| 1644 | grok.context(VirtualApplicantsExportJobContainer) |
---|
| 1645 | grok.require('waeup.manageApplication') |
---|
| 1646 | grok.name('index.html') |
---|
| 1647 | grok.template('exportjobsindex') |
---|
[11254] | 1648 | label = _('Data Exports') |
---|
[10655] | 1649 | pnav = 3 |
---|
| 1650 | |
---|
| 1651 | def update(self, CREATE=None, DISCARD=None, job_id=None): |
---|
| 1652 | if CREATE: |
---|
| 1653 | self.redirect(self.url('@@start_export')) |
---|
| 1654 | return |
---|
| 1655 | if DISCARD and job_id: |
---|
| 1656 | entry = self.context.entry_from_job_id(job_id) |
---|
| 1657 | self.context.delete_export_entry(entry) |
---|
| 1658 | ob_class = self.__implemented__.__name__.replace('waeup.kofa.','') |
---|
| 1659 | self.context.logger.info( |
---|
| 1660 | '%s - discarded: job_id=%s' % (ob_class, job_id)) |
---|
| 1661 | self.flash(_('Discarded export') + ' %s' % job_id) |
---|
| 1662 | self.entries = doll_up(self, user=self.request.principal.id) |
---|
| 1663 | return |
---|
| 1664 | |
---|
[13950] | 1665 | class ExportJobContainerJobStart(UtilityView, grok.View): |
---|
| 1666 | """View that starts two export jobs, one for applicants and a second |
---|
| 1667 | one for applicant payments. |
---|
[10655] | 1668 | """ |
---|
| 1669 | grok.context(VirtualApplicantsExportJobContainer) |
---|
| 1670 | grok.require('waeup.manageApplication') |
---|
| 1671 | grok.name('start_export') |
---|
| 1672 | |
---|
| 1673 | def update(self): |
---|
[13152] | 1674 | utils = queryUtility(IKofaUtils) |
---|
| 1675 | if not utils.expensive_actions_allowed(): |
---|
| 1676 | self.flash(_( |
---|
| 1677 | "Currently, exporters cannot be started due to high " |
---|
| 1678 | "system load. Please try again later."), type='danger') |
---|
| 1679 | self.entries = doll_up(self, user=None) |
---|
| 1680 | return |
---|
[13950] | 1681 | |
---|
| 1682 | ob_class = self.__implemented__.__name__.replace('waeup.kofa.','') |
---|
| 1683 | container_code = self.context.__parent__.code |
---|
| 1684 | # Start first exporter |
---|
[10655] | 1685 | exporter = 'applicants' |
---|
| 1686 | job_id = self.context.start_export_job(exporter, |
---|
| 1687 | self.request.principal.id, |
---|
| 1688 | container=container_code) |
---|
| 1689 | self.context.logger.info( |
---|
| 1690 | '%s - exported: %s (%s), job_id=%s' |
---|
| 1691 | % (ob_class, exporter, container_code, job_id)) |
---|
[13950] | 1692 | # Commit transaction so that job is stored in the ZODB |
---|
| 1693 | transaction.commit() |
---|
| 1694 | # Start second exporter |
---|
| 1695 | exporter = 'applicantpayments' |
---|
| 1696 | job_id = self.context.start_export_job(exporter, |
---|
| 1697 | self.request.principal.id, |
---|
| 1698 | container=container_code) |
---|
| 1699 | self.context.logger.info( |
---|
| 1700 | '%s - exported: %s (%s), job_id=%s' |
---|
| 1701 | % (ob_class, exporter, container_code, job_id)) |
---|
| 1702 | |
---|
| 1703 | self.flash(_('Exports started.')) |
---|
[10655] | 1704 | self.redirect(self.url(self.context)) |
---|
| 1705 | return |
---|
| 1706 | |
---|
| 1707 | def render(self): |
---|
| 1708 | return |
---|
| 1709 | |
---|
| 1710 | class ExportJobContainerDownload(ExportCSVView): |
---|
| 1711 | """Page that downloads a students export csv file. |
---|
| 1712 | |
---|
| 1713 | """ |
---|
| 1714 | grok.context(VirtualApplicantsExportJobContainer) |
---|
[11253] | 1715 | grok.require('waeup.manageApplication') |
---|
[13976] | 1716 | |
---|
| 1717 | class RefereeReportDisplayFormPage(KofaDisplayFormPage): |
---|
| 1718 | """A display view for referee reports. |
---|
| 1719 | """ |
---|
| 1720 | grok.context(IApplicantRefereeReport) |
---|
| 1721 | grok.name('index') |
---|
| 1722 | grok.require('waeup.manageApplication') |
---|
| 1723 | label = _('Referee Report') |
---|
| 1724 | pnav = 3 |
---|
[16058] | 1725 | form_fields = grok.AutoFields(IApplicantRefereeReport) |
---|
| 1726 | form_fields[ |
---|
| 1727 | 'creation_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
[13976] | 1728 | |
---|
[16059] | 1729 | class RemoveRefereeReportPage(UtilityView, grok.View): |
---|
| 1730 | """ |
---|
| 1731 | """ |
---|
| 1732 | grok.context(IApplicantRefereeReport) |
---|
| 1733 | grok.name('remove') |
---|
| 1734 | grok.require('waeup.manageApplication') |
---|
| 1735 | |
---|
| 1736 | def update(self): |
---|
| 1737 | redirect_url = self.url(self.context.__parent__) |
---|
| 1738 | self.context.__parent__.writeLogMessage( |
---|
| 1739 | self, 'removed: %s' % self.context.r_id) |
---|
| 1740 | del self.context.__parent__[self.context.r_id] |
---|
| 1741 | self.flash(_('Referee report removed.')) |
---|
| 1742 | self.redirect(redirect_url) |
---|
| 1743 | return |
---|
| 1744 | |
---|
| 1745 | def render(self): |
---|
| 1746 | return |
---|
| 1747 | |
---|
[13976] | 1748 | class RefereeReportAddFormPage(KofaAddFormPage): |
---|
| 1749 | """Add-form to add an referee report. This form |
---|
[13992] | 1750 | is protected by a mandate. |
---|
[13976] | 1751 | """ |
---|
| 1752 | grok.context(IApplicant) |
---|
[13991] | 1753 | grok.require('waeup.Public') |
---|
[13976] | 1754 | grok.name('addrefereereport') |
---|
| 1755 | form_fields = grok.AutoFields( |
---|
| 1756 | IApplicantRefereeReport).omit('creation_date') |
---|
[13992] | 1757 | grok.template('refereereportpage') |
---|
[16059] | 1758 | label = _('Referee Report Form') |
---|
[13976] | 1759 | pnav = 3 |
---|
| 1760 | #doclink = DOCLINK + '/refereereports.html' |
---|
| 1761 | |
---|
| 1762 | def update(self): |
---|
[13991] | 1763 | blocker = grok.getSite()['configuration'].maintmode_enabled_by |
---|
| 1764 | if blocker: |
---|
| 1765 | self.flash(_('The portal is in maintenance mode. ' |
---|
| 1766 | 'Referee report forms are temporarily disabled.'), |
---|
| 1767 | type='warning') |
---|
| 1768 | self.redirect(self.application_url()) |
---|
| 1769 | return |
---|
| 1770 | # Check mandate |
---|
| 1771 | form = self.request.form |
---|
[13992] | 1772 | self.mandate_id = form.get('mandate_id', None) |
---|
| 1773 | self.mandates = grok.getSite()['mandates'] |
---|
| 1774 | mandate = self.mandates.get(self.mandate_id, None) |
---|
[13991] | 1775 | if mandate is None and not self.request.form.get('form.actions.submit'): |
---|
| 1776 | self.flash(_('No mandate.'), type='warning') |
---|
| 1777 | self.redirect(self.application_url()) |
---|
| 1778 | return |
---|
| 1779 | if mandate: |
---|
[16058] | 1780 | # Check the mandate expiration date after redirect again |
---|
| 1781 | if mandate.expires < datetime.utcnow(): |
---|
| 1782 | self.flash(_('Mandate expired.'), |
---|
| 1783 | type='warning') |
---|
| 1784 | self.redirect(self.application_url()) |
---|
| 1785 | return |
---|
[16059] | 1786 | args = {'mandate_id':mandate.mandate_id} |
---|
| 1787 | # Check if report exists. |
---|
| 1788 | # If so, redirect to the pdf file. |
---|
| 1789 | if mandate.params.get('redirect_path2'): |
---|
| 1790 | self.redirect( |
---|
| 1791 | self.application_url() + |
---|
| 1792 | mandate.params.get('redirect_path2') + |
---|
| 1793 | '?%s' % urlencode(args)) |
---|
| 1794 | return |
---|
[13991] | 1795 | # Prefill form with mandate params |
---|
| 1796 | self.form_fields.get( |
---|
| 1797 | 'name').field.default = mandate.params['name'] |
---|
| 1798 | self.form_fields.get( |
---|
| 1799 | 'email').field.default = mandate.params['email'] |
---|
[16059] | 1800 | self.passport_url = self.url( |
---|
| 1801 | self.context, 'passport_for_report.jpg') + '?%s' % urlencode(args) |
---|
[13976] | 1802 | super(RefereeReportAddFormPage, self).update() |
---|
| 1803 | return |
---|
| 1804 | |
---|
| 1805 | @action(_('Submit'), |
---|
| 1806 | warning=_('Are you really sure? ' |
---|
| 1807 | 'Reports can neither be modified or added ' |
---|
| 1808 | 'after submission.'), |
---|
| 1809 | style='primary') |
---|
| 1810 | def addRefereeReport(self, **data): |
---|
| 1811 | report = createObject(u'waeup.ApplicantRefereeReport') |
---|
| 1812 | timestamp = ("%d" % int(time()*10000))[1:] |
---|
| 1813 | report.r_id = "r%s" % timestamp |
---|
| 1814 | self.applyData(report, **data) |
---|
| 1815 | self.context[report.r_id] = report |
---|
[16059] | 1816 | # self.flash(_('Referee report has been saved. Thank you!')) |
---|
[13976] | 1817 | self.context.writeLogMessage(self, 'added: %s' % report.r_id) |
---|
[16059] | 1818 | # Changed on 19/04/20: We do no longer delete the mandate |
---|
| 1819 | # but set path to redirect to the pdf file |
---|
| 1820 | self.mandates[self.mandate_id].params[ |
---|
| 1821 | 'redirect_path2'] = '/applicants/%s/%s/%s/referee_report.pdf' % ( |
---|
| 1822 | self.context.__parent__.code, |
---|
| 1823 | self.context.application_number, |
---|
| 1824 | report.r_id) |
---|
| 1825 | notify(grok.ObjectModifiedEvent(self.mandates[self.mandate_id])) |
---|
| 1826 | args = {'mandate_id':self.mandate_id} |
---|
| 1827 | self.redirect(self.url(report, 'referee_report.pdf') |
---|
| 1828 | + '?%s' % urlencode(args)) |
---|
[15943] | 1829 | return |
---|
| 1830 | |
---|
[16058] | 1831 | class ExportPDFReportSlipPage(UtilityView, grok.View): |
---|
| 1832 | """Deliver a PDF slip of the context. |
---|
| 1833 | """ |
---|
| 1834 | grok.context(IApplicantRefereeReport) |
---|
| 1835 | grok.name('referee_report_slip.pdf') |
---|
| 1836 | grok.require('waeup.manageApplication') |
---|
| 1837 | form_fields = grok.AutoFields(IApplicantRefereeReport) |
---|
| 1838 | form_fields[ |
---|
| 1839 | 'creation_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
| 1840 | #prefix = 'form' |
---|
| 1841 | note = None |
---|
| 1842 | |
---|
| 1843 | @property |
---|
| 1844 | def title(self): |
---|
| 1845 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
| 1846 | return translate(_('Referee Report'), 'waeup.kofa', |
---|
| 1847 | target_language=portal_language) |
---|
| 1848 | |
---|
| 1849 | @property |
---|
| 1850 | def label(self): |
---|
| 1851 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
| 1852 | return translate(_('Referee Report Slip'), |
---|
| 1853 | 'waeup.kofa', target_language=portal_language) \ |
---|
| 1854 | + ' %s' % self.context.r_id |
---|
| 1855 | |
---|
| 1856 | def render(self): |
---|
| 1857 | applicantview = ApplicantBaseDisplayFormPage(self.context.__parent__, |
---|
| 1858 | self.request) |
---|
| 1859 | students_utils = getUtility(IStudentsUtils) |
---|
| 1860 | return students_utils.renderPDF(self,'referee_report_slip.pdf', |
---|
| 1861 | self.context.__parent__, applicantview, note=self.note) |
---|
| 1862 | |
---|
[16059] | 1863 | class ExportPDFReportSlipPage2(ExportPDFReportSlipPage): |
---|
| 1864 | """Deliver a PDF slip of the context to referees. |
---|
| 1865 | """ |
---|
| 1866 | grok.name('referee_report.pdf') |
---|
| 1867 | grok.require('waeup.Public') |
---|
| 1868 | |
---|
| 1869 | def update(self): |
---|
| 1870 | # Check mandate |
---|
| 1871 | form = self.request.form |
---|
| 1872 | self.mandate_id = form.get('mandate_id', None) |
---|
| 1873 | self.mandates = grok.getSite()['mandates'] |
---|
| 1874 | mandate = self.mandates.get(self.mandate_id, None) |
---|
| 1875 | if mandate is None: |
---|
| 1876 | self.flash(_('No mandate.'), type='warning') |
---|
| 1877 | self.redirect(self.application_url()) |
---|
| 1878 | return |
---|
| 1879 | if mandate: |
---|
| 1880 | # Check the mandate expiration date after redirect again |
---|
| 1881 | if mandate.expires < datetime.utcnow(): |
---|
| 1882 | self.flash(_('Mandate expired.'), |
---|
| 1883 | type='warning') |
---|
| 1884 | self.redirect(self.application_url()) |
---|
| 1885 | return |
---|
| 1886 | # Check if form has really been submitted |
---|
| 1887 | if not mandate.params.get('redirect_path2') \ |
---|
| 1888 | or mandate.params.get( |
---|
| 1889 | 'applicant_id') != self.context.__parent__.applicant_id: |
---|
| 1890 | self.flash(_('Wrong mandate.'), |
---|
| 1891 | type='warning') |
---|
| 1892 | self.redirect(self.application_url()) |
---|
| 1893 | return |
---|
| 1894 | super(ExportPDFReportSlipPage2, self).update() |
---|
| 1895 | return |
---|
| 1896 | |
---|
[15943] | 1897 | class AdditionalFile(grok.View): |
---|
| 1898 | """Renders additional pdf files for applicants. |
---|
| 1899 | This is a baseclass. |
---|
| 1900 | """ |
---|
| 1901 | grok.baseclass() |
---|
| 1902 | grok.context(IApplicant) |
---|
| 1903 | grok.require('waeup.viewApplication') |
---|
| 1904 | |
---|
| 1905 | def render(self): |
---|
| 1906 | pdf = getUtility(IExtFileStore).getFileByContext( |
---|
| 1907 | self.context, attr=self.__name__) |
---|
| 1908 | self.response.setHeader('Content-Type', 'application/pdf') |
---|
| 1909 | return pdf |
---|
| 1910 | |
---|
| 1911 | class TestFile(AdditionalFile): |
---|
| 1912 | """Renders testfile.pdf. |
---|
| 1913 | """ |
---|
| 1914 | grok.name('testfile.pdf') |
---|