1 | ## Script (Python) "apply_admission" |
---|
2 | ##bind container=container |
---|
3 | ##bind context=context |
---|
4 | ##bind namespace= |
---|
5 | ##bind script=script |
---|
6 | ##bind subpath=traverse_subpath |
---|
7 | ##parameters=REQUEST |
---|
8 | ##title= |
---|
9 | ## |
---|
10 | # $Id: apply_admission.py 2670 2007-11-15 22:07:14Z henrik $ |
---|
11 | """ |
---|
12 | process the Application Form |
---|
13 | """ |
---|
14 | try: |
---|
15 | from Products.zdb import set_trace |
---|
16 | except: |
---|
17 | def set_trace(): |
---|
18 | pass |
---|
19 | |
---|
20 | import DateTime |
---|
21 | import logging |
---|
22 | logger = logging.getLogger('Skins.apply_admission') |
---|
23 | |
---|
24 | mtool = context.portal_membership |
---|
25 | member = mtool.getAuthenticatedMember() |
---|
26 | |
---|
27 | current = DateTime.DateTime() |
---|
28 | pr = context.portal_registration |
---|
29 | request = REQUEST |
---|
30 | |
---|
31 | #type_name = 'StudentApplication' |
---|
32 | #ti = context.portal_types[type_name] |
---|
33 | #REQUEST.set('type_name',type_name) |
---|
34 | create = "create" in request.keys() |
---|
35 | apply_admission = "apply" in request.keys() |
---|
36 | edit = "edit" in request.keys() |
---|
37 | slip = "slip" in request.keys() |
---|
38 | manage = "manage" in request.keys() |
---|
39 | submitted = False |
---|
40 | mode = request.get('mode','') |
---|
41 | if not mode: |
---|
42 | if apply_admission or edit or manage: |
---|
43 | mode = "edit" |
---|
44 | else: |
---|
45 | mode = "create" |
---|
46 | validate = create or edit or apply_admission |
---|
47 | |
---|
48 | if manage: |
---|
49 | validate = False |
---|
50 | without_reg_no = False |
---|
51 | |
---|
52 | |
---|
53 | lt = context.portal_layouts |
---|
54 | |
---|
55 | pin = request.form.get('pin','') |
---|
56 | reg_no = request.get('widget__reg_no','').upper() |
---|
57 | if not reg_no: |
---|
58 | reg_no = request.form.get('reg_no','').upper() |
---|
59 | if not reg_no: |
---|
60 | reg_no = request.get('widget__pin_n','').upper() |
---|
61 | |
---|
62 | object = {} |
---|
63 | if reg_no: |
---|
64 | brains = context.applicants_catalog(reg_no = reg_no) |
---|
65 | if len(brains) == 1: |
---|
66 | for field in context.applicants_catalog.schema(): |
---|
67 | object[field] = getattr(brains[0],field,None) |
---|
68 | if not object['passport']: |
---|
69 | object['passport'] = '' |
---|
70 | if object['status'] and ('submitted' in object['status'] or 'admitted' in object['status'] or 'created' in object['status']): |
---|
71 | submitted = True |
---|
72 | |
---|
73 | if not (create or slip) and (pin != object['pin'] and not context.isSectionOfficer()): |
---|
74 | logger.info('%s/%s entered wrong pin %s' % (member,reg_no,pin)) |
---|
75 | return request.RESPONSE.redirect("%s/srp_anonymous_view" % context.portal_url()) |
---|
76 | |
---|
77 | # For the next application session it should be reverted to |
---|
78 | # (see comment 09/06/07 16:40:52 in ticket #328): |
---|
79 | |
---|
80 | #if not create and (pin != object['pin'] and not context.isSectionOfficer()): |
---|
81 | #logger.info('%s/%s entered wrong pin %s' % (member,reg_no,pin)) |
---|
82 | #return request.RESPONSE.redirect("%s/srp_anonymous_view" % context.portal_url()) |
---|
83 | |
---|
84 | |
---|
85 | screening_types = ('prence','pume','pce','pde','cest') |
---|
86 | headings = {} |
---|
87 | headings['pume'] = 'Apply for Post UME Screening Test (2007/2008)! ' |
---|
88 | headings['pde'] = 'Apply for Post UDE Screening Test (2007/2008)! ' |
---|
89 | headings['prence'] = 'Apply for Pre-NCE Programme (2007/2008)! ' |
---|
90 | headings['pce'] = 'Apply for PCE Screening (2007/2008)! ' |
---|
91 | headings['cest'] = 'Apply for Common Entrance Screening Test (2007/2008)! ' |
---|
92 | headings_slip = {} |
---|
93 | headings_slip['pume'] = 'Post UME Screening (2007/2008) Aknowledgement Slip!' |
---|
94 | headings_slip['pde'] = 'Post UDE Screening (2007/2008) Aknowledgement Slip' |
---|
95 | headings_slip['prence'] = 'Pre-NCE Application (2007/2008) Aknowledgement Slip' |
---|
96 | headings_slip['pce'] = 'PCE Screening (2007/2008) Aknowledgement Slip' |
---|
97 | headings_slip['cest'] = 'Common Entrance Screening (2007/2008) Aknowledgement Slip' |
---|
98 | |
---|
99 | deadline = {} |
---|
100 | deadline['pume'] = '[Date of PUME Deadline]' |
---|
101 | deadline['pde'] = 'Sunday, 4th November 2007' |
---|
102 | deadline['prence'] = '[Date of PRENCE Deadline]' |
---|
103 | deadline['pce'] = '[Date of PCE Deadline]' |
---|
104 | deadline['cest'] = '[Date of CEST Deadline]' |
---|
105 | |
---|
106 | info = {} |
---|
107 | |
---|
108 | info['status'] = object.get('status','') |
---|
109 | |
---|
110 | if traverse_subpath and traverse_subpath[0] in screening_types: |
---|
111 | screening_type = info['screening_type'] = traverse_subpath[0] |
---|
112 | info['heading'] = headings[screening_type] |
---|
113 | info['heading_slip'] = headings_slip[screening_type] |
---|
114 | info['deadline'] = deadline[screening_type] |
---|
115 | layout = "application_%s" % screening_type |
---|
116 | without_reg_no = screening_type in ('prence',) |
---|
117 | elif manage: |
---|
118 | if object['screening_type']: |
---|
119 | st = object['screening_type'] |
---|
120 | else: |
---|
121 | st = 'pume' |
---|
122 | screening_type = info['screening_type'] = st |
---|
123 | info['heading'] = headings[screening_type] |
---|
124 | info['heading_slip'] = headings_slip[screening_type] |
---|
125 | info['deadline'] = deadline[screening_type] |
---|
126 | layout = "application_%s" % screening_type |
---|
127 | without_reg_no = screening_type in ('prence',) |
---|
128 | else: |
---|
129 | return request.RESPONSE.redirect("%s/srp_anonymous_view" % context.portal_url()) |
---|
130 | |
---|
131 | |
---|
132 | if slip: |
---|
133 | mode = "view_slip" |
---|
134 | logger.info('%s/%s views application slip' % (member,reg_no)) |
---|
135 | |
---|
136 | res,psm,ds = lt.renderLayout(layout_id= layout, |
---|
137 | schema_id= 'import_application', |
---|
138 | layout_mode = mode, |
---|
139 | context=context, |
---|
140 | mapping=validate and REQUEST, |
---|
141 | ob=object, |
---|
142 | commit = False, |
---|
143 | ) |
---|
144 | if slip: |
---|
145 | return context.apply_admission_slip(rendered = res, |
---|
146 | psm = "", |
---|
147 | mode = mode, |
---|
148 | ds = ds, |
---|
149 | info = info, |
---|
150 | ) |
---|
151 | if psm == 'invalid': |
---|
152 | return context.apply_admission_form(rendered = res, |
---|
153 | psm = "Please correct your input!", |
---|
154 | mode = mode, |
---|
155 | ds = ds, |
---|
156 | info = info, |
---|
157 | ) |
---|
158 | elif psm == '' and not manage: |
---|
159 | return context.apply_admission_form(rendered = res, |
---|
160 | psm = psm, |
---|
161 | ds = ds, |
---|
162 | mode = mode, |
---|
163 | info = info, |
---|
164 | ) |
---|
165 | # elif psm == 'valid' or (psm == '' and manage): |
---|
166 | # pass |
---|
167 | if without_reg_no: |
---|
168 | reg_no = ds.get('reg_no') |
---|
169 | data = {} |
---|
170 | dm = ds.getDataModel() |
---|
171 | for field in context.applicants_catalog.schema(): |
---|
172 | if dm.has_key("%s" % field): |
---|
173 | data[field] = dm.get(field) |
---|
174 | data['reg_no'] = reg_no |
---|
175 | |
---|
176 | if apply_admission: |
---|
177 | if submitted: |
---|
178 | mode = "view" |
---|
179 | psm = "The form has already been submitted and you are not allowed to resubmit the data!" |
---|
180 | logger.info('%s/%s tried to resubmit application record' % (member,reg_no)) |
---|
181 | res,psm_dummy,ds_dummy = lt.renderLayout(layout_id= layout, |
---|
182 | schema_id= 'import_application', |
---|
183 | layout_mode = mode, |
---|
184 | context=context, |
---|
185 | mapping={}, |
---|
186 | ob=object, |
---|
187 | commit = False, |
---|
188 | ) |
---|
189 | elif not request.has_key('confirm'): |
---|
190 | mode = "edit" |
---|
191 | psm = "Please confirm Passport Photograph!" |
---|
192 | logger.info('%s/%s tried to submit without ticking confirmation check box' % (member,reg_no)) |
---|
193 | else: |
---|
194 | mode = "view" |
---|
195 | psm = "You successfully applied for admission!" |
---|
196 | if object['status'] == 'edited': |
---|
197 | data['status'] = "submitted" |
---|
198 | data['application_date'] = current |
---|
199 | logger.info('%s/%s modified and submitted application record' % (member,reg_no)) |
---|
200 | elif object['status'] == 'reset': |
---|
201 | data['status'] = 'resubmitted on %s' % DateTime.DateTime().strftime('%A, %B %d, %Y') |
---|
202 | logger.info('%s/%s modified and resubmitted application record' % (member,reg_no)) |
---|
203 | object['status'] = data['status'] |
---|
204 | context.applicants_catalog.modifyRecord(**data) |
---|
205 | |
---|
206 | res,psm_dummy,ds = lt.renderLayout(layout_id= layout, |
---|
207 | schema_id= 'import_application', |
---|
208 | layout_mode = mode, |
---|
209 | context=context, |
---|
210 | mapping=validate and REQUEST, |
---|
211 | ob=object, |
---|
212 | commit = False, |
---|
213 | ) |
---|
214 | elif create: |
---|
215 | if submitted: |
---|
216 | mode = "view" |
---|
217 | logger.info('%s/%s views application record' % (member,reg_no)) |
---|
218 | else: |
---|
219 | mode = "edit" |
---|
220 | logger.info('%s/%s edits application record' % (member,reg_no)) |
---|
221 | psm = "" |
---|
222 | if without_reg_no: |
---|
223 | object['reg_no'] = reg_no |
---|
224 | object['pin'] = str(ds.get('pin')) |
---|
225 | res,psm,ds_dummy = lt.renderLayout(layout_id= layout, |
---|
226 | schema_id= 'import_application', |
---|
227 | layout_mode = mode, |
---|
228 | context=context, |
---|
229 | mapping={}, |
---|
230 | ob=object, |
---|
231 | commit = False, |
---|
232 | ) |
---|
233 | elif edit: |
---|
234 | if submitted: |
---|
235 | mode = "view" |
---|
236 | psm = "The form has already been submitted and you are not allowed to modify the data!" |
---|
237 | logger.info('%s/%s tried to edit submitted application record' % (member,reg_no)) |
---|
238 | res,psm_dummy,ds_dummy = lt.renderLayout(layout_id= layout, |
---|
239 | schema_id= 'import_application', |
---|
240 | layout_mode = mode, |
---|
241 | context=context, |
---|
242 | mapping={}, |
---|
243 | ob=object, |
---|
244 | commit = False, |
---|
245 | ) |
---|
246 | else: |
---|
247 | mode = "edit" |
---|
248 | psm = "Content changed!" |
---|
249 | data['status'] = "edited" |
---|
250 | #set_trace() |
---|
251 | context.applicants_catalog.modifyRecord(**data) |
---|
252 | logger.info('%s/%s modified application record' % (member,reg_no)) |
---|
253 | |
---|
254 | elif manage: |
---|
255 | if submitted: |
---|
256 | mode = "view" |
---|
257 | psm = "You are now assuming the applicant's role!" |
---|
258 | logger.info('%s/%s entered application record' % (member,reg_no)) |
---|
259 | res,psm_dummy,ds_dummy = lt.renderLayout(layout_id= layout, |
---|
260 | schema_id= 'import_application', |
---|
261 | layout_mode = mode, |
---|
262 | context=context, |
---|
263 | mapping={}, |
---|
264 | ob=object, |
---|
265 | commit = False, |
---|
266 | ) |
---|
267 | else: |
---|
268 | mode = "edit" |
---|
269 | psm = "You are now assuming the applicant's role!" |
---|
270 | logger.info('%s/%s entered application record' % (member,reg_no)) |
---|
271 | |
---|
272 | |
---|
273 | try: |
---|
274 | passport_uploaded = bool(data['passport']) |
---|
275 | except: |
---|
276 | passport_uploaded = False |
---|
277 | |
---|
278 | return context.apply_admission_form(rendered = res, |
---|
279 | psm = psm, |
---|
280 | mode = mode, |
---|
281 | show_submit = passport_uploaded, |
---|
282 | ds = ds, |
---|
283 | info = info, |
---|
284 | ) |
---|