1 | ##parameters=REQUEST |
---|
2 | # $Id: start_clearance.py 1051 2006-12-13 18:35:54Z joachim $ |
---|
3 | """ |
---|
4 | request Clearance |
---|
5 | """ |
---|
6 | import DateTime |
---|
7 | current = DateTime.DateTime() |
---|
8 | pr = context.portal_registration |
---|
9 | import logging |
---|
10 | logger = logging.getLogger('Student.Clearance.Start') |
---|
11 | |
---|
12 | type_name = 'Student' |
---|
13 | request=REQUEST |
---|
14 | ti = context.portal_types[type_name] |
---|
15 | request.set('type_name',type_name) |
---|
16 | redirect = request.RESPONSE.redirect |
---|
17 | wf = context.portal_workflow |
---|
18 | validate = REQUEST.has_key("cpsdocument_create_button") |
---|
19 | |
---|
20 | lt = context.portal_layouts |
---|
21 | pr = context.portal_registration |
---|
22 | |
---|
23 | info = context.getStudentInfo() |
---|
24 | if info is None: |
---|
25 | member_id = str(context.portal_membership.getAuthenticatedMember()) |
---|
26 | logger.info('"%s","access to", "%s"' % (member_id,request.get('PATH_INFO').split('/')[-2])) |
---|
27 | return redirect("%s/srp_invalid_access" % context.portal_url()) |
---|
28 | app_doc = info['app_doc'] |
---|
29 | review_state = info['review_state'] |
---|
30 | session = REQUEST.SESSION |
---|
31 | res,psm,ds = lt.renderLayout(layout_id='student_clearance', |
---|
32 | schema_id= 'student_clearance', |
---|
33 | context=context, |
---|
34 | mapping=validate and REQUEST, |
---|
35 | ob={}, |
---|
36 | layout_mode='create', |
---|
37 | formaction = "start_clearance", |
---|
38 | button = "Start", |
---|
39 | ) |
---|
40 | if psm == '': |
---|
41 | return context.clearance_pin_form(rendered = res, |
---|
42 | psm = None, |
---|
43 | firstlayout = True, |
---|
44 | lastlayout = True, |
---|
45 | ds = ds, |
---|
46 | ) |
---|
47 | error = False |
---|
48 | if session.get("clicked",None): |
---|
49 | psm = 'Please wait a moment until "Clearance started" turns green, then click on the green link!' |
---|
50 | error = True |
---|
51 | logger.info('"%s","repeatedly pressed the clearance button"' % (info['id'])) |
---|
52 | elif app_doc.passport is None: |
---|
53 | psm = "You must upload your passport picture before you can start the registration process!" |
---|
54 | error = True |
---|
55 | logger.info('"%s", "tried to start clerance without passport picture"' % (info['id'])) |
---|
56 | elif review_state == "clearance_pin_entered": |
---|
57 | psm = "You have already entered a clearance pin!" |
---|
58 | error = True |
---|
59 | logger.info('"%s", "tried to start clearance though already started"' % (info['id'])) |
---|
60 | elif psm == 'invalid': |
---|
61 | psm = "Please correct your input!" |
---|
62 | error = True |
---|
63 | logger.info('"%s","entered wrong clearance pin"' % (info['id'])) |
---|
64 | if error: |
---|
65 | return context.clearance_pin_form(rendered = res, |
---|
66 | psm = psm, |
---|
67 | firstlayout = True, |
---|
68 | lastlayout = True, |
---|
69 | ds = ds, |
---|
70 | ) |
---|
71 | session.set("clicked","clicked") |
---|
72 | pin = str(ds.get('clr_ac_pin')) |
---|
73 | logger.info('"%s", "started clearance with pin", "%s"' % (info['id'],pin)) |
---|
74 | wf.doActionFor(info['student'],'enter_clearance_pin') |
---|
75 | wf.doActionFor(info['clear'],'open') |
---|
76 | dc = {} |
---|
77 | app_doc = info['app_doc'] |
---|
78 | dc['lga_ident'] = app_doc.get('jamb_lga') |
---|
79 | dc['lga'] = app_doc.get('jamb_state','no state') + ' / ' + app_doc.get('jamb_lga','no lga') |
---|
80 | dc['clr_ac_pin'] = pin |
---|
81 | dc['clr_ac_date'] = current |
---|
82 | dc['entry_date'] = current |
---|
83 | dc['entry_session'] = "2006/2007" |
---|
84 | wf.doActionFor(info['app'],'close') |
---|
85 | info['clear_doc'].edit(mapping = dc) |
---|
86 | return redirect("%s/clearance_edit_form" % info['clear'].absolute_url()) |
---|