[5273] | 1 | ## |
---|
| 2 | ## browser.py |
---|
| 3 | ## Login : <uli@pu.smp.net> |
---|
| 4 | ## Started on Sun Jun 27 11:03:10 2010 Uli Fouquet |
---|
| 5 | ## $Id$ |
---|
| 6 | ## |
---|
| 7 | ## Copyright (C) 2010 Uli Fouquet |
---|
| 8 | ## This program is free software; you can redistribute it and/or modify |
---|
| 9 | ## it under the terms of the GNU General Public License as published by |
---|
| 10 | ## the Free Software Foundation; either version 2 of the License, or |
---|
| 11 | ## (at your option) any later version. |
---|
| 12 | ## |
---|
| 13 | ## This program is distributed in the hope that it will be useful, |
---|
| 14 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 15 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 16 | ## GNU General Public License for more details. |
---|
| 17 | ## |
---|
| 18 | ## You should have received a copy of the GNU General Public License |
---|
| 19 | ## along with this program; if not, write to the Free Software |
---|
| 20 | ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
---|
| 21 | ## |
---|
[5824] | 22 | """UI components for basic applicants and related components. |
---|
[5273] | 23 | """ |
---|
| 24 | import grok |
---|
| 25 | |
---|
[5837] | 26 | from datetime import datetime |
---|
| 27 | from hurry.jquery import jquery |
---|
| 28 | from hurry.jqueryui import jqueryui |
---|
[5822] | 29 | from zope.component import getUtility, getAllUtilitiesRegisteredFor |
---|
[5844] | 30 | from zope.formlib.widgets import FileWidget, DateWidget |
---|
[5273] | 31 | from waeup.sirp.browser import ( |
---|
| 32 | WAeUPPage, WAeUPEditFormPage, WAeUPAddFormPage, |
---|
| 33 | WAeUPDisplayFormPage, NullValidator) |
---|
[5442] | 34 | from waeup.sirp.browser.pages import LoginPage |
---|
[5320] | 35 | from waeup.sirp.interfaces import IWAeUPObject |
---|
[5837] | 36 | from waeup.sirp.browser.resources import datepicker |
---|
[5828] | 37 | from waeup.sirp.browser.viewlets import ( |
---|
| 38 | AddActionButton, ManageActionButton, PrimaryNavTab, |
---|
| 39 | ) |
---|
[5845] | 40 | from waeup.sirp.browser.breadcrumbs import Breadcrumb |
---|
[5910] | 41 | from waeup.sirp.applicants import get_applicant_data, ResultEntry, Applicant |
---|
[5758] | 42 | from waeup.sirp.applicants.interfaces import ( |
---|
[5822] | 43 | IApplicant, IApplicantPrincipal, IApplicantPDEEditData, |
---|
[5846] | 44 | IApplicantsRoot, IApplicantsContainer, IApplicantsContainerProvider, |
---|
[5822] | 45 | ) |
---|
[5686] | 46 | from waeup.sirp.widgets.passportwidget import ( |
---|
| 47 | PassportWidget, PassportDisplayWidget |
---|
| 48 | ) |
---|
[5273] | 49 | #from zope.formlib.objectwidget import ObjectWidget |
---|
| 50 | from zope.formlib.sequencewidget import ListSequenceWidget, SequenceDisplayWidget |
---|
| 51 | from zope.formlib.widget import CustomWidgetFactory |
---|
[5850] | 52 | from waeup.sirp.utils.helpers import ReST2HTML |
---|
[5303] | 53 | from waeup.sirp.widgets.objectwidget import ( |
---|
[5301] | 54 | WAeUPObjectWidget, WAeUPObjectDisplayWidget) |
---|
[5303] | 55 | from waeup.sirp.widgets.multilistwidget import ( |
---|
[5273] | 56 | MultiListWidget, MultiListDisplayWidget) |
---|
[5686] | 57 | from waeup.sirp.image.browser.widget import ( |
---|
| 58 | ThumbnailWidget, EncodingImageFileWidget, |
---|
| 59 | ) |
---|
[5320] | 60 | |
---|
[5273] | 61 | results_widget = CustomWidgetFactory( |
---|
[5301] | 62 | WAeUPObjectWidget, ResultEntry) |
---|
[5273] | 63 | |
---|
| 64 | results_display_widget = CustomWidgetFactory( |
---|
[5301] | 65 | WAeUPObjectDisplayWidget, ResultEntry) |
---|
[5273] | 66 | |
---|
| 67 | #list_results_widget = CustomWidgetFactory( |
---|
| 68 | # ListSequenceWidget, subwidget=results_widget) |
---|
| 69 | |
---|
| 70 | list_results_widget = CustomWidgetFactory( |
---|
| 71 | MultiListWidget, subwidget=results_widget) |
---|
| 72 | |
---|
| 73 | list_results_display_widget = CustomWidgetFactory( |
---|
| 74 | MultiListDisplayWidget, subwidget=results_display_widget) |
---|
| 75 | |
---|
[5844] | 76 | #: A date widget that renders with CSS class `datepicker` thus |
---|
| 77 | # enabling : the jQuery datepicker for this field if the form loaded |
---|
| 78 | # the jQuery code. |
---|
| 79 | FriendlyDateWidget = CustomWidgetFactory( |
---|
| 80 | DateWidget, cssClass='datepicker') |
---|
| 81 | |
---|
[5822] | 82 | class ApplicationsPage(WAeUPPage): |
---|
| 83 | grok.context(IApplicantsRoot) |
---|
| 84 | grok.name('index') |
---|
| 85 | title = 'Applicants' |
---|
[5843] | 86 | pnav = 3 |
---|
[5822] | 87 | |
---|
| 88 | def getApplications(self): |
---|
| 89 | """Get a list of all stored applicant containers. |
---|
| 90 | """ |
---|
| 91 | for key, val in self.context.items(): |
---|
| 92 | url = self.url(val) |
---|
[5861] | 93 | yield(dict(url=url, name=key, container=val)) |
---|
[5273] | 94 | |
---|
[5828] | 95 | class ManageApplicantsRootActionButton(ManageActionButton): |
---|
| 96 | grok.context(IApplicantsRoot) |
---|
| 97 | grok.view(ApplicationsPage) |
---|
| 98 | text = 'Manage applicant containers' |
---|
| 99 | |
---|
| 100 | class ApplicantsRootEditPage(WAeUPPage): |
---|
| 101 | grok.context(IApplicantsRoot) |
---|
| 102 | grok.name('manage') |
---|
| 103 | grok.template('applicantsrooteditpage') |
---|
| 104 | title = 'Edit applicants containers' |
---|
[5843] | 105 | pnav = 3 |
---|
[5828] | 106 | |
---|
| 107 | def update(self, entries=None, DELETE=None, CANCEL=None): |
---|
| 108 | if CANCEL is not None: |
---|
| 109 | self.redirect(self.url(self.context)) |
---|
| 110 | return |
---|
| 111 | if DELETE is None: |
---|
| 112 | return |
---|
| 113 | if entries is None: |
---|
| 114 | return |
---|
| 115 | if not isinstance(entries, list): |
---|
| 116 | entries = [entries] |
---|
| 117 | for name in entries: |
---|
| 118 | del self.context[name] |
---|
| 119 | self.flash('Deleted "%s"' % name) |
---|
| 120 | return |
---|
| 121 | |
---|
| 122 | def getApplications(self): |
---|
| 123 | """Get a list of all stored applicant containers. |
---|
| 124 | """ |
---|
| 125 | for key, val in self.context.items(): |
---|
| 126 | url = self.url(val) |
---|
| 127 | yield(dict(url=url, name=key)) |
---|
| 128 | |
---|
[5822] | 129 | class AddApplicantsContainerActionButton(AddActionButton): |
---|
| 130 | grok.context(IApplicantsRoot) |
---|
[5828] | 131 | grok.view(ApplicantsRootEditPage) |
---|
[5822] | 132 | text = 'Add applicants container' |
---|
| 133 | |
---|
| 134 | class AddApplicantsContainer(WAeUPPage): |
---|
| 135 | grok.context(IApplicantsRoot) |
---|
| 136 | grok.name('add') |
---|
| 137 | grok.template('addcontainer') |
---|
| 138 | title = 'Add applicants container' |
---|
[5843] | 139 | pnav = 3 |
---|
[5822] | 140 | |
---|
[5828] | 141 | def update(self, providername=None, name=None, title=None, |
---|
| 142 | description=None, ADD=None, CANCEL=None): |
---|
[5822] | 143 | if CANCEL is not None: |
---|
| 144 | self.redirect(self.url(self.context)) |
---|
| 145 | return |
---|
| 146 | if ADD is None: |
---|
| 147 | return |
---|
| 148 | if not name: |
---|
| 149 | self.flash('Error: you must give a name') |
---|
| 150 | return |
---|
| 151 | if name in self.context.keys(): |
---|
| 152 | self.flash('A container of the given name already exists') |
---|
| 153 | return |
---|
| 154 | # Add new applicants container... |
---|
[5846] | 155 | provider = getUtility(IApplicantsContainerProvider, |
---|
[5822] | 156 | name=providername) |
---|
| 157 | container = provider.factory() |
---|
[5828] | 158 | if title: |
---|
| 159 | container.title = title |
---|
| 160 | if description: |
---|
| 161 | container.description = description |
---|
[5822] | 162 | self.context[name] = container |
---|
| 163 | self.flash('Added "%s".' % name) |
---|
| 164 | self.redirect(self.url(self.context)) |
---|
| 165 | return |
---|
| 166 | |
---|
| 167 | def getContainerProviders(self): |
---|
[5825] | 168 | """Get a list of applicants container providers. |
---|
[5822] | 169 | |
---|
[5825] | 170 | Applicants container providers are named utilities that help |
---|
| 171 | to create applicants containers of different types |
---|
| 172 | (JAMB-based, non-JAMB-based, etc.). |
---|
| 173 | |
---|
| 174 | The list returned contains dicts:: |
---|
| 175 | |
---|
| 176 | {'name': <utility_name>, |
---|
| 177 | 'provider': <provider instance>} |
---|
| 178 | |
---|
| 179 | where `utility_name` is the name under which the respective |
---|
| 180 | provider utility is registered and `provider` is the real |
---|
| 181 | provider instance. |
---|
| 182 | |
---|
| 183 | The `utility_name` can be used to lookup the utility anew (for |
---|
| 184 | instance after submitting a form) and the `provider` instance |
---|
| 185 | can be used to create new instances of the respective |
---|
| 186 | applicants container type. |
---|
| 187 | """ |
---|
[5846] | 188 | providers = getAllUtilitiesRegisteredFor(IApplicantsContainerProvider) |
---|
[5822] | 189 | result = [ |
---|
| 190 | {'name': getattr(x, 'grokcore.component.directive.name'), |
---|
| 191 | 'provider': x} |
---|
| 192 | for x in providers |
---|
| 193 | ] |
---|
| 194 | return result |
---|
[5828] | 195 | |
---|
[5845] | 196 | class ApplicantsRootBreadcrumb(Breadcrumb): |
---|
| 197 | """A breadcrumb for applicantsroot. |
---|
| 198 | """ |
---|
| 199 | grok.context(IApplicantsRoot) |
---|
| 200 | title = u'Applicants' |
---|
| 201 | |
---|
| 202 | class ApplicantsContainerBreadcrumb(Breadcrumb): |
---|
| 203 | """A breadcrumb for applicantscontainers. |
---|
| 204 | """ |
---|
| 205 | grok.context(IApplicantsContainer) |
---|
[5828] | 206 | |
---|
| 207 | class ApplicantsTab(PrimaryNavTab): |
---|
| 208 | """Faculties-tab in primary navigation. |
---|
| 209 | """ |
---|
| 210 | grok.context(IWAeUPObject) |
---|
| 211 | grok.order(3) |
---|
| 212 | grok.require('waeup.View') |
---|
| 213 | grok.template('primarynavtab') |
---|
| 214 | |
---|
[5843] | 215 | pnav = 3 |
---|
[5828] | 216 | tab_title = u'Applicants' |
---|
| 217 | |
---|
| 218 | @property |
---|
| 219 | def link_target(self): |
---|
| 220 | return self.view.application_url('applicants') |
---|
| 221 | |
---|
[5830] | 222 | class ApplicantsContainerPage(WAeUPPage): |
---|
| 223 | """The standard view for regular applicant containers. |
---|
| 224 | """ |
---|
| 225 | grok.context(IApplicantsContainer) |
---|
| 226 | grok.name('index') |
---|
[5850] | 227 | pnav = 3 |
---|
| 228 | |
---|
[5837] | 229 | @property |
---|
| 230 | def title(self): |
---|
| 231 | return "Applicants Container: %s" % getattr( |
---|
| 232 | self.context, '__name__', 'unnamed') |
---|
| 233 | |
---|
| 234 | @property |
---|
| 235 | def label(self): |
---|
| 236 | return self.title |
---|
[5830] | 237 | |
---|
[5850] | 238 | def descriptionToHTML(self): |
---|
| 239 | return ReST2HTML(self.context.description) |
---|
| 240 | |
---|
[5832] | 241 | class ManageApplicantsContainerActionButton(ManageActionButton): |
---|
| 242 | grok.context(IApplicantsContainer) |
---|
| 243 | grok.view(ApplicantsContainerPage) |
---|
| 244 | text = 'Manage' |
---|
| 245 | |
---|
| 246 | |
---|
[5837] | 247 | class ManageApplicantsContainer(WAeUPEditFormPage): |
---|
| 248 | grok.context(IApplicantsContainer) |
---|
[5850] | 249 | grok.name('manage') |
---|
[5837] | 250 | form_fields = grok.AutoFields(IApplicantsContainer) |
---|
[5844] | 251 | # Use friendlier date widget... |
---|
| 252 | form_fields['startdate'].custom_widget = FriendlyDateWidget |
---|
| 253 | form_fields['enddate'].custom_widget = FriendlyDateWidget |
---|
[5850] | 254 | |
---|
| 255 | @property |
---|
| 256 | def title(self): |
---|
| 257 | return "Manage applicants container: %s" % getattr( |
---|
| 258 | self.context, '__name__', 'unnamed') |
---|
| 259 | |
---|
| 260 | @property |
---|
| 261 | def label(self): |
---|
| 262 | return self.title |
---|
| 263 | |
---|
[5845] | 264 | pnav = 3 |
---|
[5837] | 265 | |
---|
| 266 | def update(self): |
---|
[5850] | 267 | datepicker.need() # Enable jQuery datepicker in date fields. |
---|
[5837] | 268 | return super(ManageApplicantsContainer, self).update() |
---|
| 269 | |
---|
[5850] | 270 | @grok.action('Save') |
---|
[5837] | 271 | def apply(self, **data): |
---|
| 272 | self.applyData(self.context, **data) |
---|
| 273 | self.flash('Data saved.') |
---|
| 274 | return |
---|
| 275 | |
---|
| 276 | @grok.action('Back') |
---|
| 277 | def cancel(self, **data): |
---|
| 278 | self.redirect(self.url(self.context)) |
---|
| 279 | return |
---|
[5886] | 280 | |
---|
| 281 | class LoginApplicant(WAeUPPage): |
---|
| 282 | grok.context(IApplicantsContainer) |
---|
| 283 | grok.name('login') |
---|
| 284 | grok.require('zope.Public') |
---|
| 285 | |
---|
| 286 | title = u'Login' |
---|
[5837] | 287 | |
---|
[5886] | 288 | @property |
---|
| 289 | def label(self): |
---|
| 290 | return self.title |
---|
| 291 | |
---|
| 292 | pnav = 3 |
---|
| 293 | prefix = u'APP' |
---|
| 294 | |
---|
[5896] | 295 | def update(self, SUBMIT=None): |
---|
| 296 | self.ac_series = self.request.form.get('form.ac_series', None) |
---|
| 297 | self.ac_number = self.request.form.get('form.ac_number', None) |
---|
[5886] | 298 | if SUBMIT is None: |
---|
| 299 | return |
---|
| 300 | |
---|
[5894] | 301 | if self.request.principal.id == 'zope.anybody': |
---|
| 302 | self.flash('Entered credentials are invalid') |
---|
[5886] | 303 | return |
---|
[5894] | 304 | |
---|
| 305 | if not IApplicantPrincipal.providedBy(self.request.principal): |
---|
| 306 | # Don't care if user is already authenticated as non-applicant |
---|
| 307 | return |
---|
| 308 | |
---|
[5905] | 309 | pin = self.request.principal.access_code |
---|
| 310 | if pin not in self.context.keys(): |
---|
| 311 | # Create applicant record |
---|
| 312 | applicant = Applicant() |
---|
| 313 | applicant.access_code = pin |
---|
| 314 | self.context[pin] = applicant |
---|
| 315 | # XXX: set owner role on created applicant |
---|
| 316 | |
---|
| 317 | self.redirect(self.url(self.context[pin])) |
---|
[5886] | 318 | return |
---|
| 319 | |
---|
[5758] | 320 | #class AddApplicant(WAeUPAddFormPage): |
---|
[5846] | 321 | # grok.context(IApplicantsContainer) |
---|
[5758] | 322 | # grok.name('add') |
---|
| 323 | # form_fields = grok.AutoFields(IApplicant) |
---|
| 324 | # form_fields['fst_sit_results'].custom_widget = list_results_widget |
---|
| 325 | # form_fields['passport'].custom_widget = EncodingImageFileWidget |
---|
| 326 | # label = 'Add Applicant' |
---|
| 327 | # title = 'Add Applicant' |
---|
| 328 | # pnav = 1 |
---|
| 329 | # |
---|
| 330 | # @grok.action('Add applicant') |
---|
| 331 | # def addApplicant(self, **data): |
---|
| 332 | # from waeup.sirp.jambtables.applicants import Applicant |
---|
| 333 | # applicant = Applicant() |
---|
| 334 | # self.applyData(applicant, **data) |
---|
| 335 | # # XXX: temporarily disabled. |
---|
| 336 | # #self.context[applicant.reg_no] = applicant |
---|
| 337 | # try: |
---|
| 338 | # self.context[applicant.access_code] = applicant |
---|
| 339 | # except KeyError: |
---|
| 340 | # self.flash('The given access code is already in use!') |
---|
| 341 | # return |
---|
| 342 | # self.redirect(self.url(self.context)) |
---|
[5273] | 343 | |
---|
| 344 | class DisplayApplicant(WAeUPDisplayFormPage): |
---|
| 345 | grok.context(IApplicant) |
---|
| 346 | grok.name('index') |
---|
| 347 | form_fields = grok.AutoFields(IApplicant) |
---|
| 348 | form_fields['fst_sit_results'].custom_widget = list_results_display_widget |
---|
[5686] | 349 | #form_fields['passport'].custom_widget = PassportDisplayWidget |
---|
[5919] | 350 | form_fields['passport'].custom_widget = ThumbnailWidget |
---|
| 351 | #form_fields['passport'].custom_widget = EncodingImageFileWidget |
---|
[5273] | 352 | label = 'Applicant' |
---|
| 353 | title = 'Applicant' |
---|
[5843] | 354 | pnav = 3 |
---|
[5273] | 355 | |
---|
| 356 | class EditApplicant(WAeUPEditFormPage): |
---|
| 357 | grok.context(IApplicant) |
---|
| 358 | grok.name('edit') |
---|
[5484] | 359 | form_fields = grok.AutoFields(IApplicantPDEEditData) |
---|
[5686] | 360 | #form_fields['passport'].custom_widget = FileWidget |
---|
| 361 | #form_fields['passport'].custom_widget = PassportWidget |
---|
| 362 | form_fields['passport'].custom_widget = EncodingImageFileWidget |
---|
[5488] | 363 | grok.template('form_edit_pde') |
---|
[5484] | 364 | |
---|
[5686] | 365 | def update(self): |
---|
| 366 | super(EditApplicant, self).update() |
---|
| 367 | print self.request.form |
---|
| 368 | return |
---|
| 369 | |
---|
[5484] | 370 | @property |
---|
| 371 | def label(self): |
---|
| 372 | # XXX: Use current/upcoming session |
---|
| 373 | return 'Apply for Post UDE Screening Test (2009/2010)' |
---|
[5273] | 374 | title = 'Edit Application' |
---|
[5845] | 375 | pnav = 3 |
---|
[5273] | 376 | |
---|
| 377 | @grok.action('Save') |
---|
| 378 | def save(self, **data): |
---|
| 379 | self.applyData(self.context, **data) |
---|
| 380 | self.context._p_changed = True |
---|
| 381 | return |
---|
| 382 | |
---|
[5484] | 383 | @grok.action('Final Submit') |
---|
| 384 | def finalsubmit(self, **data): |
---|
[5273] | 385 | self.applyData(self.context, **data) |
---|
[5484] | 386 | self.context._p_changed = True |
---|
| 387 | # XXX: Lock the form for editing... |
---|
[5273] | 388 | return |
---|