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