[2217] | 1 | ## Script (Python) "logged_in" |
---|
| 2 | ##bind container=container |
---|
| 3 | ##bind context=context |
---|
| 4 | ##bind namespace= |
---|
| 5 | ##bind script=script |
---|
| 6 | ##bind subpath=traverse_subpath |
---|
| 7 | ##parameters= |
---|
| 8 | ##title= |
---|
| 9 | ## |
---|
| 10 | """Prepare user login |
---|
| 11 | modified from cps_default/logged_in.py |
---|
| 12 | |
---|
| 13 | $Id: logged_in.py 1933 2007-06-19 05:05:29Z henrik $ |
---|
| 14 | """ |
---|
| 15 | try: |
---|
| 16 | from Products.zdb import set_trace |
---|
| 17 | except: |
---|
| 18 | def set_trace(): |
---|
| 19 | pass |
---|
| 20 | import DateTime |
---|
[5656] | 21 | import os |
---|
[2217] | 22 | current = DateTime.DateTime() |
---|
| 23 | import logging |
---|
| 24 | logger = logging.getLogger('Skins.logged_in') |
---|
| 25 | |
---|
| 26 | |
---|
| 27 | from urllib import unquote |
---|
| 28 | |
---|
| 29 | request = context.REQUEST |
---|
| 30 | response = request.RESPONSE |
---|
| 31 | utool = context.portal_url |
---|
| 32 | mtool = context.portal_membership |
---|
| 33 | wftool = context.portal_workflow |
---|
| 34 | portal = utool.getPortalObject() |
---|
| 35 | |
---|
| 36 | redirect_to_portal = False |
---|
| 37 | is_anon = mtool.isAnonymousUser() |
---|
| 38 | member = mtool.getAuthenticatedMember() |
---|
[5655] | 39 | member_id = str(member) |
---|
[2710] | 40 | |
---|
[5784] | 41 | try: |
---|
| 42 | cred = context.waeup_tool.getCredentialFromAuthHeader(request) |
---|
| 43 | except: |
---|
| 44 | cred = "no authentication header" |
---|
[5656] | 45 | |
---|
[2710] | 46 | if context.isStaff(): |
---|
[5655] | 47 | is_unsecure = context.waeup_tool.checkGenericPassword(member_id) |
---|
[2710] | 48 | if is_unsecure: |
---|
| 49 | response.expireCookie('__ac', path='/') |
---|
| 50 | return response.redirect("%s/user_logged_in_disabled" % context.portal_url()) |
---|
| 51 | |
---|
[2217] | 52 | #load_passport = hasattr(context.waeup_tool,'loadStudentFoto') |
---|
| 53 | |
---|
| 54 | if not is_anon: |
---|
| 55 | if "Student" in member.getRoles(): |
---|
| 56 | students = context.portal_url.getPortalObject().campus.students |
---|
[5655] | 57 | student = getattr(students,member_id) |
---|
[2217] | 58 | student_app = getattr(student,'application',None) |
---|
| 59 | student_per = getattr(student,'personal',None) |
---|
[5655] | 60 | |
---|
[2412] | 61 | |
---|
[2407] | 62 | ######################################################### |
---|
[2412] | 63 | |
---|
[2407] | 64 | # perform makeStudentData for returning students who login for the first time |
---|
| 65 | # the returning key comes from set_access_data |
---|
[2412] | 66 | |
---|
[3115] | 67 | if request.has_key('returning') and student_per is None: |
---|
[2217] | 68 | email=request.get("email") |
---|
| 69 | phone=request.get("phone_nr") |
---|
[5655] | 70 | context.waeup_tool.makeStudentData(member_id, |
---|
[2217] | 71 | email=email, |
---|
| 72 | phone_nr=phone, |
---|
| 73 | ) |
---|
| 74 | #d = {} |
---|
[5655] | 75 | #d['id'] = member_id |
---|
[2217] | 76 | #d['email'] = email |
---|
| 77 | #d['phone'] = phone |
---|
| 78 | #context.students_catalog.modifyRecord(**d) |
---|
[3115] | 79 | elif student_per is None: |
---|
[5655] | 80 | context.waeup_tool.makeStudentData(member_id) |
---|
[2447] | 81 | |
---|
[2412] | 82 | ######################################################### |
---|
| 83 | |
---|
| 84 | # add missing payments folder |
---|
| 85 | |
---|
[2217] | 86 | if 'payments' not in student.objectIds(): |
---|
| 87 | student.invokeFactory('PaymentsFolder','payments') |
---|
| 88 | payments = getattr(student,'payments') |
---|
| 89 | wftool.doActionFor(payments,'open') |
---|
| 90 | d = {} |
---|
| 91 | d['Title'] = 'Online Payments' |
---|
| 92 | payments.getContent().edit(mapping=d) |
---|
[2412] | 93 | |
---|
| 94 | ######################################################### |
---|
| 95 | |
---|
[2407] | 96 | #student_pume = getattr(student,'pume',None) |
---|
[2217] | 97 | s_review_state = context.getStudentReviewState(student.id) |
---|
| 98 | a_review_state = wftool.getInfoFor(student_app,'review_state',None) |
---|
| 99 | student_per = getattr(student,'personal',None) |
---|
| 100 | p_review_state = wftool.getInfoFor(student_per,'review_state',None) |
---|
| 101 | logger.info('%s logged in, review_state %s' % (member,s_review_state)) |
---|
[2480] | 102 | if student_app is None: |
---|
| 103 | logger.info('%s logged in, without application object' % (member)) |
---|
| 104 | else: |
---|
| 105 | app_doc = student_app.getContent() |
---|
[5655] | 106 | |
---|
| 107 | res = context.students_catalog(id = member_id) |
---|
| 108 | matric_no = res[0].matric_no |
---|
| 109 | jamb_reg_no = res[0].jamb_reg_no |
---|
| 110 | entry_mode = res[0].entry_mode |
---|
| 111 | verdict = res[0].verdict |
---|
| 112 | level = res[0].level |
---|
| 113 | has_level = level |
---|
| 114 | has_verdict = verdict and not verdict == 'N/A' |
---|
[2217] | 115 | |
---|
[2407] | 116 | ######################################################### |
---|
[2412] | 117 | |
---|
[2407] | 118 | # save email and phone of returning students after all objects have been created |
---|
| 119 | |
---|
[2480] | 120 | if request.has_key('returning') and student_app: |
---|
[2217] | 121 | email=request.get("email") |
---|
| 122 | phone=request.get("phone_nr") |
---|
| 123 | # should be always closed, however ... |
---|
[5506] | 124 | #if a_review_state != 'opened': |
---|
| 125 | # wftool.doActionFor(student_app,'open') |
---|
[2217] | 126 | # should be always opened after import, however ... |
---|
| 127 | if p_review_state != 'opened': |
---|
| 128 | wftool.doActionFor(student_per,'open') |
---|
| 129 | per_doc = student_per.getContent() |
---|
[5506] | 130 | #app_doc.edit(mapping = {'app_email' : email}) |
---|
[2217] | 131 | per_doc.edit(mapping = {'email' : email, 'phone' : phone}) |
---|
[5506] | 132 | #wftool.doActionFor(student_app,'close') |
---|
[2412] | 133 | |
---|
| 134 | ######################################################### |
---|
| 135 | |
---|
[2407] | 136 | # look for passport pictures of returning students |
---|
[2217] | 137 | |
---|
[2420] | 138 | if s_review_state == 'returning' and\ |
---|
[5655] | 139 | not context.waeup_tool.picturesExist(('passport',), member_id): |
---|
[2217] | 140 | folder = 'pictures_returning' |
---|
[5655] | 141 | #res = context.students_catalog(id = member_id) |
---|
[2217] | 142 | filename = res[0].matric_no.upper() |
---|
| 143 | msg = context.waeup_tool.loadStudentFoto(student,filename,folder) |
---|
| 144 | logger.info('%s (%s), %s' % (member,s_review_state,msg)) |
---|
[2407] | 145 | |
---|
| 146 | ######################################################### |
---|
[5655] | 147 | |
---|
| 148 | # look for passport pictures of transfer students |
---|
[2412] | 149 | |
---|
[5655] | 150 | if entry_mode == 'transfer' and\ |
---|
| 151 | s_review_state in ('returning','school_fee_paid',) and\ |
---|
| 152 | not context.waeup_tool.picturesExist(('passport',), member_id): |
---|
| 153 | res_both = context.students_catalog(jamb_reg_no = jamb_reg_no) |
---|
| 154 | #set_trace() |
---|
| 155 | if len(res_both) == 2: |
---|
| 156 | for ts in res_both: |
---|
| 157 | if ts.id != member_id: |
---|
| 158 | msg = context.waeup_tool.loadTransferStudentFoto(ts.id,member_id) |
---|
| 159 | logger.info('%s (%s on transfer), %s' % (member,s_review_state,msg)) |
---|
| 160 | |
---|
| 161 | ######################################################### |
---|
| 162 | |
---|
[2407] | 163 | # look for passport pictures of new students |
---|
| 164 | |
---|
[2447] | 165 | if s_review_state in ('admitted', |
---|
[5501] | 166 | 'student_created', |
---|
[2447] | 167 | 'clearance_pin_entered', |
---|
[2420] | 168 | 'clearance_requested' |
---|
| 169 | ) and not context.waeup_tool.picturesExist(('passport',), |
---|
[5655] | 170 | member_id): |
---|
[2217] | 171 | folder = 'pictures_admitted_latest' |
---|
| 172 | filename = app_doc.jamb_reg_no.replace('/','_') |
---|
| 173 | msg = context.waeup_tool.loadStudentFoto(student,filename,folder) |
---|
| 174 | logger.info('%s (%s), %s' % (member,s_review_state,msg)) |
---|
[5496] | 175 | if 'passport picture not found' in msg: |
---|
[5501] | 176 | filename = app_doc.app_reg_pin.replace('-','') |
---|
[5496] | 177 | msg = context.waeup_tool.loadStudentFoto(student,filename,folder) |
---|
| 178 | logger.info('%s (%s), %s' % (member,s_review_state,msg)) |
---|
[2407] | 179 | |
---|
| 180 | ######################################################### |
---|
[2412] | 181 | |
---|
[2407] | 182 | # perform necessary updates for new students |
---|
| 183 | |
---|
| 184 | # 1. add pin and application date to app_doc |
---|
[2412] | 185 | |
---|
[2579] | 186 | if s_review_state == "student_created": |
---|
| 187 | wftool.doActionFor(student,'admit') |
---|
[2710] | 188 | s_review_state = 'admitted' |
---|
[2579] | 189 | |
---|
| 190 | if s_review_state == "admitted" and a_review_state == 'created': |
---|
[2217] | 191 | wftool.doActionFor(student_app,'open') |
---|
[2407] | 192 | #if student_pume is not None: |
---|
| 193 | # wftool.doActionFor(student_pume,'close') |
---|
[2217] | 194 | da = {} |
---|
| 195 | pin = request.get('pin') |
---|
[2412] | 196 | |
---|
| 197 | # if the student comes directly, add missing pin or pin with wrong syntax (fix) |
---|
[2217] | 198 | if not pin: |
---|
| 199 | jamb_reg_no = app_doc.jamb_reg_no |
---|
| 200 | for reg_no in (jamb_reg_no,jamb_reg_no.lower(),jamb_reg_no.upper()): |
---|
| 201 | res = context.portal_pins(student=reg_no) |
---|
| 202 | if len(res) > 0: |
---|
| 203 | break |
---|
| 204 | if len(res) > 0: |
---|
| 205 | p = res[0].pin |
---|
| 206 | if len(p) > 10: |
---|
[3998] | 207 | if p.startswith('IPTP'): |
---|
| 208 | pin = "%s-%s-%s" % (p[:4],p[4:5],p[5:]) |
---|
| 209 | else: |
---|
[5517] | 210 | pin = "%s-%s-%s" % (p[:3],p[3:-10],p[-10:]) |
---|
[2217] | 211 | else: |
---|
| 212 | pin = p |
---|
| 213 | da['app_ac_pin'] = pin |
---|
| 214 | da['app_ac_date'] = current |
---|
| 215 | app_doc.edit(mapping = da) |
---|
[2412] | 216 | |
---|
| 217 | # 2. same as 1 but without opening app_doc, assuming that the student already logged in |
---|
| 218 | # but the pin is missing in app_doc (fix) |
---|
| 219 | |
---|
[2217] | 220 | elif s_review_state in ("admitted") and a_review_state == 'opened' and\ |
---|
[3998] | 221 | (not app_doc.app_ac_pin or app_doc.app_ac_pin.startswith('IPT-P')): |
---|
[2217] | 222 | jamb_reg_no = app_doc.jamb_reg_no |
---|
| 223 | for reg_no in (jamb_reg_no,jamb_reg_no.lower(),jamb_reg_no.upper()): |
---|
| 224 | res = context.portal_pins(student=reg_no) |
---|
| 225 | if len(res) > 0: |
---|
| 226 | break |
---|
| 227 | if len(res) > 0: |
---|
| 228 | p = res[0].pin |
---|
| 229 | if len(p) > 10: |
---|
[3998] | 230 | if p.startswith('IPTP'): |
---|
| 231 | pin = "%s-%s-%s" % (p[:4],p[4:5],p[5:]) |
---|
| 232 | else: |
---|
[5517] | 233 | pin = "%s-%s-%s" % (p[:3],p[3:-10],p[-10:]) |
---|
[2217] | 234 | else: |
---|
| 235 | pin = p |
---|
| 236 | da = {} |
---|
| 237 | da['app_ac_pin'] = pin |
---|
| 238 | app_doc.edit(mapping = da) |
---|
[2412] | 239 | |
---|
| 240 | # 3. open personal object (fix). This should be done in clearance_edit. |
---|
| 241 | |
---|
[2217] | 242 | elif s_review_state in ("cleared_and_validated",) and\ |
---|
| 243 | p_review_state == 'created' : |
---|
| 244 | wftool.doActionFor(student_per,'open') |
---|
[2412] | 245 | |
---|
| 246 | |
---|
[2407] | 247 | ######################################################### |
---|
[2412] | 248 | |
---|
[5022] | 249 | #if matric_no: |
---|
| 250 | # has_results = context.results_import(matric_no = matric_no) |
---|
| 251 | #else: |
---|
| 252 | # has_results = '' |
---|
[2407] | 253 | |
---|
[2447] | 254 | ######################################################### |
---|
[2456] | 255 | |
---|
[2447] | 256 | # fetch current verdict via getVerdict and level via getLevelFromResultsCosCode |
---|
| 257 | |
---|
[5022] | 258 | #if s_review_state in ('returning','school_fee_paid') and not (has_verdict and has_level): |
---|
| 259 | # if has_results: |
---|
| 260 | # study_course = getattr(student,'study_course') |
---|
| 261 | # sc_review_state = wftool.getInfoFor(study_course,'review_state',None) |
---|
| 262 | # dsc = {} |
---|
| 263 | # if not has_verdict and s_review_state == 'returning': |
---|
| 264 | # dsc['current_verdict'] = context.getVerdict(has_results[0].Verdict)[0] |
---|
| 265 | # if not has_level and s_review_state == 'returning': |
---|
| 266 | # lnr = context.getLevelFromResultsCosCode(has_results) |
---|
| 267 | # dsc['current_level'] = "%d00" % lnr |
---|
| 268 | # elif not has_level and s_review_state == 'school_fee_paid': |
---|
| 269 | # lnr = context.getLevelFromResultsCosCode(has_results) |
---|
| 270 | # cv = context.getVerdict(has_results[0].Verdict)[0] |
---|
| 271 | # if cv in ('A','B',): |
---|
| 272 | # lnr += 1 |
---|
| 273 | # dsc['current_level'] = "%d00" % lnr |
---|
| 274 | # dsc['previous_verdict'] = cv |
---|
| 275 | # if sc_review_state != 'opened': |
---|
| 276 | # wftool.doActionFor(study_course,'open') |
---|
| 277 | # study_course_doc =study_course.getContent() |
---|
| 278 | # study_course_doc.edit(mapping = dsc) |
---|
| 279 | # wftool.doActionFor(study_course,'close_for_edit') |
---|
[2412] | 280 | |
---|
[2407] | 281 | ######################################################### |
---|
[2412] | 282 | |
---|
[2407] | 283 | |
---|
| 284 | # determine appropriate redirect url |
---|
| 285 | |
---|
[2217] | 286 | if s_review_state == "application_pin_entered": |
---|
| 287 | redirect_url = "%s/application_edit_form" % student.absolute_url() |
---|
| 288 | elif s_review_state in ('admitted', 'objection_raised',): |
---|
| 289 | redirect_url = "%s/admission_form" % student.absolute_url() |
---|
| 290 | elif s_review_state == "clearance_pin_entered": |
---|
| 291 | redirect_url = "%s/clearance_edit_form" % student.absolute_url() |
---|
| 292 | elif s_review_state == "cleared_and_validated": |
---|
| 293 | redirect_url = "%s/personal_edit_form" % student.absolute_url() |
---|
[3972] | 294 | #elif s_review_state == "returning" and has_results: |
---|
| 295 | # redirect_url = "%s/session_results_view" % student.absolute_url() |
---|
[2217] | 296 | elif s_review_state in ('school_fee_paid','courses_registered'): |
---|
| 297 | redirect_url = "%s/study_course/study_course_view" % student.absolute_url() |
---|
| 298 | else: |
---|
| 299 | redirect_url = "%s/student_index" % student.absolute_url() |
---|
[2407] | 300 | |
---|
| 301 | |
---|
[2217] | 302 | else: |
---|
| 303 | logger.info('%s logged in' % (member)) |
---|
| 304 | redirect_url = portal.absolute_url() |
---|
| 305 | #Anonymous |
---|
| 306 | else: |
---|
[5656] | 307 | logger.info('failed login with %s' % cred) |
---|
[2217] | 308 | response.expireCookie('__ac', path='/') |
---|
| 309 | return context.user_logged_in_failed() |
---|
| 310 | |
---|
| 311 | # Setup skins |
---|
| 312 | if (getattr(utool, 'updateSkinCookie', False) and |
---|
| 313 | utool.updateSkinCookie()): |
---|
| 314 | context.setupCurrentSkin() |
---|
| 315 | |
---|
| 316 | response.redirect(redirect_url) |
---|
| 317 | |
---|