[1860] | 1 | ## Script (Python) "clearance_edit" |
---|
[1107] | 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= |
---|
[805] | 9 | # $Id: clearance_edit.py 2013 2007-07-12 16:12:23Z henrik $ |
---|
[788] | 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() |
---|
[1016] | 17 | import logging |
---|
[1571] | 18 | logger = logging.getLogger('Skins.clearance_edit') |
---|
[1098] | 19 | request = REQUEST |
---|
[788] | 20 | |
---|
[885] | 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') |
---|
[1098] | 25 | result_edit_button = REQUEST.has_key('result_edit_button') |
---|
[893] | 26 | |
---|
[788] | 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.) |
---|
[832] | 33 | wftool = context.portal_workflow |
---|
[1073] | 34 | info = context.getClearanceInfo() |
---|
[788] | 35 | |
---|
[1036] | 36 | #'Sorry, you are not allowed to access this page!' |
---|
| 37 | if info == None: |
---|
[1073] | 38 | return REQUEST.RESPONSE.redirect(context.standard_error_message()) |
---|
[788] | 39 | student = info['student'] |
---|
[1098] | 40 | #app = info['app'] |
---|
| 41 | #app_doc = info['app_doc'] |
---|
[788] | 42 | clear = info['clear'] |
---|
| 43 | clear_doc = info['clear_doc'] |
---|
[1016] | 44 | student_id = info['id'] |
---|
| 45 | member_id = str(context.portal_membership.getAuthenticatedMember()) |
---|
[1098] | 46 | result_widgets = ('fst_sit_results', |
---|
| 47 | 'scd_sit_results', |
---|
| 48 | 'alr_results', |
---|
| 49 | ) |
---|
| 50 | required_scans = ('fst_sit_scan', |
---|
[1217] | 51 | # 'jamb_slip', |
---|
[1101] | 52 | 'ref_let', |
---|
[1098] | 53 | 'acc_let' |
---|
[1860] | 54 | ) |
---|
[1098] | 55 | form = request.form |
---|
| 56 | psm = "" |
---|
| 57 | args = {} |
---|
| 58 | action = "/external_clearance_edit_form" |
---|
[1860] | 59 | clearance_closed = False |
---|
| 60 | |
---|
[1098] | 61 | if context.isStudent(): |
---|
| 62 | action = "/clearance_edit_form" |
---|
[1860] | 63 | if info['clear_review_state'] == 'closed': |
---|
| 64 | clearance_closed = True |
---|
[832] | 65 | |
---|
[1860] | 66 | if not clearance_closed: |
---|
| 67 | is_valid, ds = clear_doc.validate(request=REQUEST, |
---|
[788] | 68 | schema_id = 'student_clearance', |
---|
[885] | 69 | layout_id = 'student_clearance', |
---|
[788] | 70 | proxy=clear, |
---|
| 71 | use_session=True) |
---|
[1839] | 72 | if clear_and_validate_button and info['review_state'] == "clearance_requested": |
---|
| 73 | logger.info('%s cleared %s' % (member_id,student_id )) |
---|
| 74 | #from Products.zdb import set_trace |
---|
| 75 | #set_trace() |
---|
| 76 | info['clear_doc'].edit(mapping = {'cleared_date': current,}) |
---|
| 77 | wftool.doActionFor(info['student'],'clear_and_validate') |
---|
[2013] | 78 | psm = "Clearance and eligibility record is validated and student is cleared!" |
---|
[1839] | 79 | elif clear_and_validate_button and info['review_state'] == "cleared_and_validated": |
---|
| 80 | psm = "This student is already cleared!" |
---|
| 81 | elif reject_clearance_button: |
---|
| 82 | logger.info('%s rejected clearance for %s' % (member_id,student_id )) |
---|
| 83 | wftool.doActionFor(info['clear'],'open') |
---|
| 84 | wftool.doActionFor(info['student'],'reject_clearance') |
---|
| 85 | action = "/external_contact_student_form" |
---|
| 86 | psm = "Student's clearance request has been rejected! Please fill and submit the form below!" |
---|
| 87 | subject = "Clearance request rejected" |
---|
| 88 | args['subject'] = subject |
---|
| 89 | args['continue'] = 'external_clearance_edit_form' |
---|
[1860] | 90 | elif clearance_closed: |
---|
| 91 | action = "/clearance_view" |
---|
[1862] | 92 | logger.info('%s tried to edit closed clearance object of %s' % (member_id,student_id )) |
---|
[1839] | 93 | elif is_valid: |
---|
[1098] | 94 | if cpsdocument_edit_button or result_edit_button: |
---|
[891] | 95 | psm = "Content changed!" |
---|
[1996] | 96 | logger.info('%s edited clearance object of %s' % (member_id,student_id )) |
---|
| 97 | |
---|
| 98 | ## No idea why the following lines were still active until July 6. |
---|
| 99 | ## The code does not make any sense. When editing the clearance object |
---|
| 100 | ## as admin, always the PIN HOS-1-4921190317 |
---|
| 101 | ## was filled in. This was the only PIN ever used by admin. |
---|
| 102 | |
---|
| 103 | #if clear_doc.clr_ac_pin == "": |
---|
| 104 | # res = context.portal_pins(student=member_id) |
---|
| 105 | # if res: |
---|
| 106 | # p = res[0].pin |
---|
| 107 | # if len(p) > 10: |
---|
| 108 | # pin = "%s-%s-%s" % (p[:3],p[3:4],p[4:]) |
---|
| 109 | # else: |
---|
| 110 | # pin = p |
---|
| 111 | # clear_doc.edit(mapping={'clr_ac_pin': pin}) |
---|
| 112 | |
---|
| 113 | ## simple method to remove the wrong PIN |
---|
| 114 | |
---|
| 115 | #if clear_doc.clr_ac_pin.startswith('HOS'): |
---|
| 116 | # pin='' |
---|
| 117 | # clear_doc.edit(mapping={'clr_ac_pin': pin}) |
---|
| 118 | |
---|
| 119 | |
---|
[851] | 120 | elif cpsdocument_edit_and_view_button: |
---|
[1016] | 121 | if acknowledge and info['review_state'] == "clearance_pin_entered": |
---|
[1098] | 122 | missing = False |
---|
[1110] | 123 | files = clear_doc.objectIds() |
---|
[1098] | 124 | for scan in required_scans: |
---|
[1110] | 125 | if scan not in files: |
---|
[1098] | 126 | missing = True |
---|
| 127 | break |
---|
| 128 | if not missing: |
---|
[1110] | 129 | if not "age_dec" in files and not "birth_certificate" in files: |
---|
[1098] | 130 | missing = True |
---|
| 131 | if missing: |
---|
[1571] | 132 | logger.info('%s requested clearance with documents missing' % (student_id)) |
---|
[1106] | 133 | psm = "You have not uploaded all necessary documents to request clearance!" |
---|
[1098] | 134 | else: |
---|
[1571] | 135 | logger.info('%s requested clearance' % (student_id)) |
---|
[1098] | 136 | info['clear_doc'].edit(mapping = {'request_date': current,}) |
---|
| 137 | wftool.doActionFor(info['clear'],'close') |
---|
| 138 | wftool.doActionFor(info['student'],'request_clearance',dest_container=1) |
---|
| 139 | psm = "You successfully requested clearance!" |
---|
| 140 | if context.isStudent(): |
---|
| 141 | action = "/clearance_view" |
---|
[1016] | 142 | elif acknowledge and info['review_state'] != "clearance_pin_entered": |
---|
[1571] | 143 | logger.info('%s repeatedly requested clearance' % (student_id)) |
---|
[1017] | 144 | psm = "You have already requested clearance!" |
---|
[893] | 145 | else: |
---|
| 146 | psm = "You must tick the acknowledgement check box before submission!" |
---|
[851] | 147 | else: |
---|
[891] | 148 | psm = "Please correct your errors!" |
---|
| 149 | args = getFormUidUrlArg(REQUEST) |
---|
[1996] | 150 | logger.info('%s got error when editing the clearance object of %s' % (member_id,student_id)) |
---|
[891] | 151 | |
---|
[851] | 152 | args['portal_status_message'] = psm |
---|
[891] | 153 | url = clear.absolute_url() + action + '?' + urlencode(args) |
---|
[1575] | 154 | return REQUEST.RESPONSE.redirect(url) |
---|
[1106] | 155 | |
---|