1 | ## Script (Python) "clearance_edit" |
---|
2 | ##bind container=container |
---|
3 | ##bind context=context |
---|
4 | ##bind namespace= |
---|
5 | ##bind script=script |
---|
6 | ##bind subpath=traverse_subpath |
---|
7 | ##parameters=REQUEST, acknowledge=None |
---|
8 | ##title= |
---|
9 | # $Id: clearance_edit.py 4065 2009-04-23 19:02:59Z henrik $ |
---|
10 | """ |
---|
11 | """ |
---|
12 | wftool = context.portal_workflow |
---|
13 | from urllib import urlencode |
---|
14 | from Products.CPSDocument.utils import getFormUidUrlArg |
---|
15 | import DateTime |
---|
16 | current = DateTime.DateTime() |
---|
17 | import logging |
---|
18 | logger = logging.getLogger('Skins.clearance_edit') |
---|
19 | request = REQUEST |
---|
20 | |
---|
21 | cpsdocument_edit_button = REQUEST.has_key('cpsdocument_edit_button') |
---|
22 | cpsdocument_edit_and_view_button = REQUEST.has_key('cpsdocument_edit_and_view_button') |
---|
23 | clear_and_validate_button = REQUEST.has_key('clear_and_validate_button') |
---|
24 | reject_clearance_button = REQUEST.has_key('reject_clearance_button') |
---|
25 | result_edit_button = REQUEST.has_key('result_edit_button') |
---|
26 | |
---|
27 | # Until ajax posts directly to its own script... |
---|
28 | ##if 'ajax_edit' in REQUEST.form: |
---|
29 | ## return context.cpsdocument_edit_ajax(REQUEST, cluster=cluster) |
---|
30 | |
---|
31 | # Validate the document and write it if it's valid |
---|
32 | # (We don't call getEditableContent here, validate does it when needed.) |
---|
33 | wftool = context.portal_workflow |
---|
34 | info = context.getClearanceInfo() |
---|
35 | |
---|
36 | #'Sorry, you are not allowed to access this page!' |
---|
37 | if info == None: |
---|
38 | return REQUEST.RESPONSE.redirect(context.standard_error_message()) |
---|
39 | student = info['student'] |
---|
40 | #app = info['app'] |
---|
41 | #app_doc = info['app_doc'] |
---|
42 | clear = info['clear'] |
---|
43 | clear_doc = info['clear_doc'] |
---|
44 | student_id = info['id'] |
---|
45 | member_id = str(context.portal_membership.getAuthenticatedMember()) |
---|
46 | result_widgets = ('fst_sit_results', |
---|
47 | 'scd_sit_results', |
---|
48 | 'alr_results', |
---|
49 | ) |
---|
50 | required_scans = ('fst_sit_scan', |
---|
51 | # 'jamb_slip', |
---|
52 | 'ref_let', |
---|
53 | 'acc_let' |
---|
54 | ) |
---|
55 | # start customization |
---|
56 | |
---|
57 | no_scans_required = True |
---|
58 | |
---|
59 | # end customization |
---|
60 | |
---|
61 | form = request.form |
---|
62 | psm = "" |
---|
63 | args = {} |
---|
64 | action = "/external_clearance_edit_form" |
---|
65 | clearance_closed = False |
---|
66 | |
---|
67 | if context.isStudent(): |
---|
68 | action = "/clearance_edit_form" |
---|
69 | if info['clear_review_state'] == 'closed': |
---|
70 | clearance_closed = True |
---|
71 | |
---|
72 | if not clearance_closed: |
---|
73 | is_valid, ds = clear_doc.validate(request=REQUEST, |
---|
74 | schema_id = 'student_clearance', |
---|
75 | layout_id = 'student_clearance', |
---|
76 | proxy=clear, |
---|
77 | use_session=False) |
---|
78 | if clear_and_validate_button and info['review_state'] == "clearance_requested": |
---|
79 | logger.info('%s cleared %s' % (member_id,student_id )) |
---|
80 | #from Products.zdb import set_trace |
---|
81 | #set_trace() |
---|
82 | clear_doc.edit(mapping = {'clearance_officer': member_id, |
---|
83 | 'cleared_date': current,}) |
---|
84 | wftool.doActionFor(info['student'],'clear_and_validate') |
---|
85 | if clear_doc.firstname and clear_doc.lastname: |
---|
86 | if info['per_review_state'] != 'opened': |
---|
87 | wftool.doActionFor(info['per'],'open') |
---|
88 | per_doc = info['per'].getContent() |
---|
89 | firstname = clear_doc.firstname.replace('-',' - ') |
---|
90 | firstname = ' '.join([m.capitalize() for m in firstname.split()]) |
---|
91 | firstname = firstname.replace(' - ','-') |
---|
92 | middlename = clear_doc.middlename.replace('-',' - ') |
---|
93 | middlename = ' '.join([m.capitalize() for m in middlename.split()]) |
---|
94 | middlename = middlename.replace(' - ','-') |
---|
95 | lastname = clear_doc.lastname.replace('-',' - ') |
---|
96 | lastname = ' '.join([m.capitalize() for m in lastname.split()]) |
---|
97 | lastname = lastname.replace(' - ','-') |
---|
98 | # we changed |
---|
99 | context.waeup_tool.updateRoleMappingsFor('waeup_student_subobject_wf',info['per']) |
---|
100 | per_doc.edit(mapping = {'firstname': firstname, 'middlename': middlename, 'lastname': lastname,}) |
---|
101 | |
---|
102 | psm = "Clearance and eligibility record is validated and student is cleared!" |
---|
103 | elif clear_and_validate_button and info['review_state'] == "cleared_and_validated": |
---|
104 | psm = "This student is already cleared!" |
---|
105 | elif reject_clearance_button: |
---|
106 | logger.info('%s rejected clearance for %s' % (member_id,student_id )) |
---|
107 | clear_doc.edit(mapping = {'clearance_officer': '', |
---|
108 | 'cleared_date': None,}) |
---|
109 | try: |
---|
110 | wftool.doActionFor(info['clear'],'open') |
---|
111 | except: |
---|
112 | pass |
---|
113 | wftool.doActionFor(info['student'],'reject_clearance') |
---|
114 | action = "/external_contact_student_form" |
---|
115 | psm = "Student's clearance request has been rejected! Please fill and submit the form below!" |
---|
116 | subject = "Clearance request rejected" |
---|
117 | args['subject'] = subject |
---|
118 | args['continue'] = 'external_clearance_edit_form' |
---|
119 | elif clearance_closed: |
---|
120 | action = "/clearance_view" |
---|
121 | logger.info('%s tried to edit closed clearance object of %s' % (member_id,student_id )) |
---|
122 | elif is_valid: |
---|
123 | if cpsdocument_edit_button or result_edit_button: |
---|
124 | psm = "Content changed!" |
---|
125 | logger.info('%s edited clearance object of %s' % (member_id,student_id )) |
---|
126 | elif cpsdocument_edit_and_view_button: |
---|
127 | if acknowledge and info['review_state'] == "clearance_pin_entered": |
---|
128 | files = context.waeup_tool.picturesList() |
---|
129 | req_found = [scan for scan in required_scans if scan in files] or no_scans_required |
---|
130 | birth_found = "age_dec" in files or "birth_certificate" in files or no_scans_required |
---|
131 | if not req_found or not birth_found: |
---|
132 | logger.info('%s requested clearance with documents missing' % (student_id)) |
---|
133 | psm = "You have not uploaded all necessary documents to request clearance!" |
---|
134 | elif not clear_doc.firstname or not clear_doc.lastname: |
---|
135 | logger.info('%s requested clearance without confirming name' % (student_id)) |
---|
136 | psm = "Please fill the name fields! First and last name are required. " |
---|
137 | else: |
---|
138 | logger.info('%s requested clearance' % (student_id)) |
---|
139 | clear_doc.edit(mapping = {'request_date': current,}) |
---|
140 | wftool.doActionFor(info['clear'],'close') |
---|
141 | wftool.doActionFor(info['student'],'request_clearance',dest_container=1) |
---|
142 | psm = "You successfully requested clearance!" |
---|
143 | if context.isStudent(): |
---|
144 | action = "/clearance_view" |
---|
145 | elif acknowledge and info['review_state'] != "clearance_pin_entered": |
---|
146 | logger.info('%s repeatedly requested clearance' % (student_id)) |
---|
147 | psm = "You have already requested clearance!" |
---|
148 | else: |
---|
149 | psm = "You must tick the acknowledgement check box before submission!" |
---|
150 | else: |
---|
151 | psm = "Please correct your errors!" |
---|
152 | args = getFormUidUrlArg(REQUEST) |
---|
153 | logger.info('%s got error when editing the clearance object of %s' % (member_id,student_id)) |
---|
154 | |
---|
155 | args['portal_status_message'] = psm |
---|
156 | url = clear.absolute_url() + action + '?' + urlencode(args) |
---|
157 | return REQUEST.RESPONSE.redirect(url) |
---|
158 | |
---|