1 | ##parameters=REQUEST |
---|
2 | # $Id: start_clearance.py 1857 2007-06-05 20:41:11Z 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('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('student_clearance', |
---|
31 | 'student_clearance', |
---|
32 | context, |
---|
33 | mapping=validate and REQUEST, |
---|
34 | layout_mode='create', |
---|
35 | ob={}, |
---|
36 | commit = False, |
---|
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 | info = info, |
---|
47 | ) |
---|
48 | error = False |
---|
49 | |
---|
50 | ##if session.get("clicked",None): |
---|
51 | ## psm = 'Please wait a moment until "Clearance started" turns green, then click on the green link!' |
---|
52 | ## error = True |
---|
53 | ## logger.info('"%s","repeatedly pressed the clearance button"' % (info['id'])) |
---|
54 | |
---|
55 | if review_state == "clearance_pin_entered": |
---|
56 | psm = "You have already entered a clearance pin!" |
---|
57 | error = True |
---|
58 | logger.info('%s tried to start clearance though already started' % (info['id'])) |
---|
59 | elif psm == 'invalid': |
---|
60 | psm = "Please correct your input!" |
---|
61 | error = True |
---|
62 | logger.info('%s entered wrong clearance pin' % (info['id'])) |
---|
63 | elif app_doc.passport is None: |
---|
64 | #psm = "You must upload your passport picture before you can start the registration process!" |
---|
65 | #error = True |
---|
66 | logger.info('%s started clearance without passport picture' % (info['id'])) |
---|
67 | if error: |
---|
68 | return context.clearance_pin_form(rendered = res, |
---|
69 | psm = psm, |
---|
70 | firstlayout = True, |
---|
71 | lastlayout = True, |
---|
72 | ds = ds, |
---|
73 | info = info, |
---|
74 | ) |
---|
75 | #session.set("clicked","clicked") |
---|
76 | pin = str(ds.get('clr_ac_pin')) |
---|
77 | logger.info('%s started clearance with pin %s' % (info['id'],pin)) |
---|
78 | wf.doActionFor(info['student'],'enter_clearance_pin') |
---|
79 | wf.doActionFor(info['clear'],'open') |
---|
80 | dc = {} |
---|
81 | app_doc = info['app_doc'] |
---|
82 | dc['lga_ident'] = app_doc.get('jamb_lga') |
---|
83 | dc['lga'] = app_doc.get('jamb_state','no state') + ' / ' + app_doc.get('jamb_lga','no lga') |
---|
84 | dc['clr_ac_pin'] = pin |
---|
85 | dc['clr_ac_date'] = current |
---|
86 | dc['entry_date'] = current |
---|
87 | #dc['entry_session'] = "2006/2007" |
---|
88 | wf.doActionFor(info['app'],'close') |
---|
89 | info['clear_doc'].edit(mapping = dc) |
---|
90 | |
---|
91 | if info['penalty']: |
---|
92 | logger.info('%s started late clearance' % (info['id'])) |
---|
93 | |
---|
94 | return redirect("%s/clearance_edit_form" % info['clear'].absolute_url()) |
---|
95 | |
---|