1 | ## Script (Python) "application_edit" |
---|
2 | ##bind container=container |
---|
3 | ##bind context=context |
---|
4 | ##bind namespace= |
---|
5 | ##bind script=script |
---|
6 | ##bind subpath=traverse_subpath |
---|
7 | ##parameters=REQUEST, cpsdocument_edit_and_view_button=None, action=None, portal_status_message='' |
---|
8 | ##title= |
---|
9 | # $Id: application_edit.py 4002 2009-03-06 18:19:15Z 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.application_edit') |
---|
19 | |
---|
20 | psm = "" |
---|
21 | args = {} |
---|
22 | |
---|
23 | info = context.getApplicationInfo() |
---|
24 | |
---|
25 | student = info['student'] |
---|
26 | |
---|
27 | if info is None: |
---|
28 | logger.info('Anonymous user tried to access %s' % REQUEST.get('URL0')) |
---|
29 | return REQUEST.RESPONSE.redirect("%s/srp_anonymous_view" % context.portal_url()) |
---|
30 | |
---|
31 | if info['has_passport'] and info['app_doc'].app_email: |
---|
32 | logger.info('%s proceeded to start clearance' % (info['id'])) |
---|
33 | #personal_doc = student.personal.getContent() |
---|
34 | #try: |
---|
35 | # wftool.doActionFor(student.personal,'open') |
---|
36 | #except: |
---|
37 | # pass |
---|
38 | #personal_doc.edit(mapping = {'email' : info['app_doc'].app_email}) |
---|
39 | #wftool.doActionFor(student.personal,'close') |
---|
40 | action = "/start_clearance" |
---|
41 | base_url = student.absolute_url() |
---|
42 | url = base_url + action |
---|
43 | return REQUEST.RESPONSE.redirect(url) |
---|
44 | elif not cpsdocument_edit_and_view_button: |
---|
45 | action = "/application_edit_form" |
---|
46 | base_url = student.absolute_url() |
---|
47 | #url = base_url + action |
---|
48 | if portal_status_message: |
---|
49 | args['portal_status_message'] = portal_status_message |
---|
50 | url = base_url + action + '?' + urlencode(args) |
---|
51 | else: |
---|
52 | url = base_url + action |
---|
53 | return REQUEST.RESPONSE.redirect(url) |
---|
54 | |
---|
55 | |
---|
56 | |
---|
57 | app = info['app'] |
---|
58 | app_doc = info['app_doc'] |
---|
59 | state = info['review_state'] |
---|
60 | |
---|
61 | app_review_state = wftool.getInfoFor(app,'review_state',None) |
---|
62 | if app_review_state != 'opened': |
---|
63 | wftool.doActionFor(app,'open') |
---|
64 | |
---|
65 | is_valid, ds = app_doc.validate(request=REQUEST, |
---|
66 | schema_id = 'student_application', |
---|
67 | layout_id = 'student_application', |
---|
68 | proxy=app, |
---|
69 | use_session=False) |
---|
70 | |
---|
71 | |
---|
72 | action = "/application_edit" |
---|
73 | base_url = app.absolute_url() |
---|
74 | |
---|
75 | if is_valid: |
---|
76 | args['portal_status_message'] = "You didn't upload all required data!" |
---|
77 | |
---|
78 | else: |
---|
79 | args['portal_status_message'] = "Please correct your error!" |
---|
80 | |
---|
81 | url = base_url + action + '?' + urlencode(args) |
---|
82 | |
---|
83 | |
---|
84 | |
---|
85 | return REQUEST.RESPONSE.redirect(url) |
---|