source: WAeUP_SRP/base/skins/waeup_student/check_admission.py @ 2978

Last change on this file since 2978 was 2576, checked in by Henrik Bettermann, 17 years ago

Uebergabe an Joachim, darf noch nicht ausgecheckt werden

  • Property svn:keywords set to Id
File size: 3.3 KB
Line 
1##parameters=REQUEST
2# $Id: check_admission.py 2576 2007-11-08 07:55:07Z henrik $
3"""
4request Clearance
5"""
6import DateTime
7from urllib import urlencode
8current = DateTime.DateTime()
9pr = context.portal_registration
10type_name = 'StudentApplication'
11ti = context.portal_types[type_name]
12REQUEST.set('type_name',type_name)
13redirect = REQUEST.RESPONSE.redirect
14wf = context.portal_workflow
15validate = REQUEST.has_key("cpsdocument_create_button")
16
17mtool = context.portal_membership
18is_anon = mtool.isAnonymousUser()
19member = mtool.getAuthenticatedMember()
20
21lt = context.portal_layouts
22pr = context.portal_registration
23
24res,psm,ds = lt.renderLayout('student_application',
25                             'student_application',
26                             context,
27                             mapping=validate and REQUEST,
28                             layout_mode='create',
29                             ob={},
30                             commit=False,
31                             formaction = "check_admission",
32                             button = "Check",
33                             )
34if psm == 'invalid':
35    return context.check_admission_pin_form(rendered = res,
36                                 psm = "Please correct your input!",
37                                 #psm = "%s, %s" % (psm,ds),
38                                 firstlayout = True,
39                                 lastlayout = True,
40                                 ds = ds,
41                                 )
42elif psm == '':
43    return context.check_admission_pin_form(rendered = res,
44                                 psm = None,
45                                 firstlayout = True,
46                                 lastlayout = True,
47                                 ds = ds,
48                                 )
49elif psm == 'valid':
50    s_id = ds.get('s_id')
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                                 )
67##
68##    email = ds.get('app_email')
69    student = getattr(context.campus.students, s_id)
70    review_state = wf.getInfoFor(student,'review_state',None)
71    #if review_state == "admission_rejected":
72    #    url = "%s/campus/students/%s/pume/admission_rejected_view" % (context.portal_url(),s_id)
73    #    return redirect(url)
74    pw = str(ds.get('app_ac_pin_n'))
75    args = {}
76    args['__ac_name'] = s_id
77    #args['__ac_password'] = pin.split('-')[2]
78    args['__ac_password'] = pw
79    args['pin'] = str(ds.get('app_ac_pin_p')) + '-' + str(ds.get('app_ac_pin_b')) + '-' + str(ds.get('app_ac_pin_n'))
80##    args['email'] = email
81    url = "%s/logged_in?%s" % (context.absolute_url(),urlencode(args))
82    return redirect(url)
83
Note: See TracBrowser for help on using the repository browser.