Changeset 5453 for main/waeup.sirp/trunk/src/waeup/sirp
- Timestamp:
- 18 Aug 2010, 14:53:38 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/jambtables/browser.py
r5442 r5453 31 31 from waeup.sirp.jambtables import JAMBDataTable 32 32 from waeup.sirp.jambtables.util import get_applicant_data 33 from waeup.sirp.jambtables.interfaces import IApplicant, IApplicantContainer 33 from waeup.sirp.jambtables.interfaces import ( 34 IApplicant, IApplicantContainer, IApplicantPrincipal) 35 34 36 35 37 #from zope.formlib.objectwidget import ObjectWidget … … 84 86 applicant = Applicant() 85 87 self.applyData(applicant, **data) 86 self.context[applicant.reg_no] = applicant 88 # XXX: temporarily disabled. 89 #self.context[applicant.reg_no] = applicant 90 try: 91 self.context[applicant.access_code] = applicant 92 except KeyError: 93 self.flash('The given access code is already in use!') 94 return 87 95 self.redirect(self.url(self.context)) 88 96 … … 107 115 @grok.action('Save') 108 116 def save(self, **data): 109 print "DATA: ", data110 117 self.applyData(self.context, **data) 111 print "ENTRY: ", self.context.fst_sit_results112 118 self.context._p_changed = True 113 119 return … … 131 137 pnav = 1 132 138 133 def update(self , reg_no=None, ac_series=None, ac_number=None):139 def update(self): 134 140 """Validate credentials and redirect or show error. 135 141 136 XXX: log things happening here 137 XXX: consider real login procedure with single applicant user. 138 """ 139 self.reg_no = reg_no 140 self.ac_series = ac_series 141 self.ac_number = ac_number 142 for param in [reg_no, ac_series, ac_number]: 143 if param is None: 142 The real validation is done by an pluggable authentication 143 utility (PAU). Here we only check, whether correct credentials 144 were entered by looking up the principal status of the 145 request: If the user authenticated successfully, we get an 146 applicant principal. Otherwise we get the unauthenticated 147 principal. 148 """ 149 formfields = ['form.ac_number', 'form.jamb_reg_no', 150 'form.ac_series', 'form.prefix',] 151 152 self.reg_no = self.request.form.get('form.jamb_reg_no', '') 153 self.ac_series = self.request.form.get('form.ac_series', '') 154 self.ac_number = self.request.form.get('form.ac_number', '') 155 156 for required_field in formfields: 157 if required_field not in self.request.form.keys(): 144 158 return 145 ac = "PUDE-%s-%s" % (ac_series, ac_number) 146 data = self.getApplicantData(reg_no, ac) 147 if data is None: 148 self.flash('Invalid data entered') 159 self.reg_no = self.request.form['form.jamb_reg_no'] 160 self.ac_series = self.request.form['form.ac_series'] 161 self.ac_number = self.request.form['form.ac_number'] 162 principal = self.request.principal 163 if not IApplicantPrincipal.providedBy(principal): 164 self.flash('You entered invalid credentials') 149 165 return 150 applicant_data, access_code = data 151 app_page = self.url(applicant_data, '@@edit') 152 # XXX: Invalidate ACCESS_CODE 153 self.redirect(app_page) 166 if hasattr(principal, 'reg_no'): 167 if not principal.reg_no is None: 168 169 site = grok.getSite() 170 applications = site['applications'] 171 application = applications[principal.reg_no] 172 self.redirect(self.url(application, '@@edit')) 154 173 return 155 174 … … 158 177 159 178 XXX: This should be computed or retrieved from elsewhere. 179 180 `session` here means an academic session, not a browser 181 session. 160 182 """ 161 183 return u'2010/2011'
Note: See TracChangeset for help on using the changeset viewer.