source: WAeUP_SRP/trunk/skins/waeup_student/check_admission.py @ 1856

Last change on this file since 1856 was 1856, checked in by joachim, 17 years ago

aviod conflict errors (in custom)

  • Property svn:keywords set to Id
File size: 3.2 KB
RevLine 
[766]1##parameters=REQUEST
[805]2# $Id: check_admission.py 1856 2007-06-05 13:06:23Z joachim $
[766]3"""
4request Clearance
5"""
6import DateTime
[788]7from urllib import urlencode
[766]8current = DateTime.DateTime()
9pr = context.portal_registration
10type_name = 'StudentApplication'
11ti = context.portal_types[type_name]
12REQUEST.set('type_name',type_name)
[785]13redirect = REQUEST.RESPONSE.redirect
14wf = context.portal_workflow
[766]15validate = REQUEST.has_key("cpsdocument_create_button")
16
[992]17mtool = context.portal_membership
18is_anon = mtool.isAnonymousUser()
19member = mtool.getAuthenticatedMember()
20
[766]21lt = context.portal_layouts
22pr = context.portal_registration
23
24res,psm,ds = lt.renderLayout(layout_id= 'student_application_fe',
25                      schema_id= 'student_application',
26                      context=context,
27                      mapping=validate and REQUEST,
28                      ob={},
29                      layout_mode='create',
[785]30                      formaction = "check_admission",
[799]31                      button = "Check",
[1856]32                      commit=False,
[766]33                      )
34if psm == 'invalid':
[785]35    return context.check_admission_pin_form(rendered = res,
[892]36                                 psm = "Please correct your input!",
[766]37                                 #psm = "%s, %s" % (psm,ds),
38                                 firstlayout = True,
39                                 lastlayout = True,
40                                 ds = ds,
41                                 )
42elif psm == '':
[785]43    return context.check_admission_pin_form(rendered = res,
[766]44                                 psm = None,
45                                 firstlayout = True,
46                                 lastlayout = True,
47                                 ds = ds,
48                                 )
49elif psm == 'valid':
50    s_id = ds.get('s_id')
[997]51    if is_anon and not s_id:
52        return context.check_admission_pin_form(rendered = res,
53                                 psm = "You are not allowed to call this form in this context. Please try to log in.",
54                                 #psm = "%s, %s" % (psm,ds),
55                                 firstlayout = True,
56                                 lastlayout = True,
57                                 ds = ds,
58                                 )
59    elif not is_anon:
60        return context.check_admission_pin_form(rendered = res,
61                                 psm = "You are already logged in!",
62                                 #psm = "%s, %s" % (psm,ds),
63                                 firstlayout = True,
64                                 lastlayout = True,
65                                 ds = ds,
66                                 )
[979]67## 
68##    email = ds.get('app_email')
[785]69    student = getattr(context.campus.students, s_id)
70    review_state = wf.getInfoFor(student,'review_state',None)
[797]71    if review_state == "admission_rejected":
72        url = "%s/campus/students/%s/pume/admission_rejected_view" % (context.portal_url(),s_id)
[785]73        return redirect(url)
[992]74    pin = str(ds.get('app_ac_pin_n'))
[788]75    args = {}
76    args['__ac_name'] = s_id
[992]77    #args['__ac_password'] = pin.split('-')[2]
78    args['__ac_password'] = pin
[788]79    args['pin'] = pin
[979]80##    args['email'] = email
[788]81    url = "%s/logged_in?%s" % (context.absolute_url(),urlencode(args))
82    return redirect(url)
[997]83
Note: See TracBrowser for help on using the repository browser.