[766] | 1 | ##parameters=REQUEST |
---|
[805] | 2 | # $Id: check_admission.py 805 2006-11-09 09:38:29Z joachim $ |
---|
[766] | 3 | """ |
---|
| 4 | request Clearance |
---|
| 5 | """ |
---|
| 6 | import DateTime |
---|
[788] | 7 | from urllib import urlencode |
---|
[766] | 8 | current = DateTime.DateTime() |
---|
| 9 | pr = context.portal_registration |
---|
| 10 | type_name = 'StudentApplication' |
---|
| 11 | ti = context.portal_types[type_name] |
---|
| 12 | REQUEST.set('type_name',type_name) |
---|
[785] | 13 | redirect = REQUEST.RESPONSE.redirect |
---|
| 14 | wf = context.portal_workflow |
---|
[766] | 15 | validate = REQUEST.has_key("cpsdocument_create_button") |
---|
| 16 | |
---|
| 17 | lt = context.portal_layouts |
---|
| 18 | pr = context.portal_registration |
---|
| 19 | |
---|
| 20 | res,psm,ds = lt.renderLayout(layout_id= 'student_application_fe', |
---|
| 21 | schema_id= 'student_application', |
---|
| 22 | context=context, |
---|
| 23 | mapping=validate and REQUEST, |
---|
| 24 | ob={}, |
---|
| 25 | layout_mode='create', |
---|
[785] | 26 | formaction = "check_admission", |
---|
[799] | 27 | button = "Check", |
---|
[766] | 28 | ) |
---|
| 29 | if psm == 'invalid': |
---|
[785] | 30 | return context.check_admission_pin_form(rendered = res, |
---|
[766] | 31 | psm = "Please correct your input.", |
---|
| 32 | #psm = "%s, %s" % (psm,ds), |
---|
| 33 | firstlayout = True, |
---|
| 34 | lastlayout = True, |
---|
| 35 | ds = ds, |
---|
| 36 | ) |
---|
| 37 | elif psm == '': |
---|
[785] | 38 | return context.check_admission_pin_form(rendered = res, |
---|
[766] | 39 | psm = None, |
---|
| 40 | firstlayout = True, |
---|
| 41 | lastlayout = True, |
---|
| 42 | ds = ds, |
---|
| 43 | ) |
---|
| 44 | elif psm == 'valid': |
---|
| 45 | s_id = ds.get('s_id') |
---|
[788] | 46 | email = ds.get('app_email') |
---|
[785] | 47 | student = getattr(context.campus.students, s_id) |
---|
| 48 | review_state = wf.getInfoFor(student,'review_state',None) |
---|
[797] | 49 | if review_state == "admission_rejected": |
---|
| 50 | url = "%s/campus/students/%s/pume/admission_rejected_view" % (context.portal_url(),s_id) |
---|
[785] | 51 | return redirect(url) |
---|
[766] | 52 | pin = str(ds.get('app_ac_pin')) |
---|
[788] | 53 | args = {} |
---|
| 54 | args['__ac_name'] = s_id |
---|
| 55 | args['__ac_password'] = pin.split('-')[2] |
---|
| 56 | args['pin'] = pin |
---|
| 57 | args['email'] = email |
---|
| 58 | url = "%s/logged_in?%s" % (context.absolute_url(),urlencode(args)) |
---|
| 59 | return redirect(url) |
---|