1 | ##parameters=REQUEST |
---|
2 | # $Id: check_admission.py 106 2005-10-27 19:30:56Z joachim $ |
---|
3 | """ |
---|
4 | process the Admission Form |
---|
5 | return html renderer + psm |
---|
6 | """ |
---|
7 | type_name = 'Jamb' |
---|
8 | ti = context.portal_types[type_name] |
---|
9 | |
---|
10 | REQUEST.set('type_name',type_name) |
---|
11 | |
---|
12 | validate = REQUEST.has_key("cpsdocument_edit_button") |
---|
13 | |
---|
14 | |
---|
15 | lt = context.portal_layouts |
---|
16 | pr = context.portal_registration |
---|
17 | |
---|
18 | res,psm,ds = lt.renderLayout(layout_id= 'admission', |
---|
19 | schema_id= 'jamb', |
---|
20 | context=context, |
---|
21 | mapping=validate and REQUEST, |
---|
22 | ob={}, |
---|
23 | layout_mode='create', |
---|
24 | ) |
---|
25 | if psm == 'invalid': |
---|
26 | return context.check_admission_form(rendered = res, |
---|
27 | psm = "Please correct your input", |
---|
28 | ds = ds, |
---|
29 | ) |
---|
30 | elif psm == '': |
---|
31 | return context.check_admission_form(rendered = res, |
---|
32 | psm = None, |
---|
33 | ds = ds, |
---|
34 | ) |
---|
35 | elif psm == 'valid': |
---|
36 | s_id = "s%s" % ds.get('jamb_id') |
---|
37 | catalog = context.portal_catalog |
---|
38 | search = catalog(SearchableText = "%s*" % s_id) |
---|
39 | if len(search) < 1: |
---|
40 | psm = "Your not admitted" |
---|
41 | return context.check_admission_form(rendered = res, |
---|
42 | psm = psm + str(search), |
---|
43 | ds = ds, |
---|
44 | ) |
---|
45 | sf = getattr(context,s_id,None) |
---|
46 | if sf and getattr(sf,'PERSONAL',None): |
---|
47 | psm = "Your already admitted, pleae login" |
---|
48 | return context.check_admission_form(rendered = res, |
---|
49 | psm = psm, |
---|
50 | ds = ds, |
---|
51 | ) |
---|
52 | rset = REQUEST.set |
---|
53 | sc_pin = ds.get('sc_pin') |
---|
54 | return REQUEST.RESPONSE.redirect("%s/logged_in?__ac_name=%s&__ac_password=UnSeT&sc_pin=%s" |
---|
55 | % (context.absolute_url(),s_id,sc_pin)) |
---|
56 | ## return context.student_admitted_form(rendered = res, |
---|
57 | ## psm = psm, |
---|
58 | ## ds = ds, |
---|
59 | ## student = student, |
---|
60 | ## jamb = jamb, |
---|
61 | ## pd = pd, |
---|
62 | ## ) |
---|
63 | ## |
---|
64 | ##return res,psm,ds |
---|
65 | |
---|