source: WAeUP_SRP/trunk/skins/waeup_student/set_access_data.py @ 1212

Last change on this file since 1212 was 1207, checked in by joachim, 18 years ago

fix (in custom)

  • Property svn:keywords set to Id
File size: 2.7 KB
Line 
1##parameters=REQUEST,matric_no=None
2# $Id: set_access_data.py 1207 2007-01-05 18:26:15Z joachim $
3"""
4process the Application Form
5return html renderer + psm
6"""
7import DateTime,logging
8current = DateTime.DateTime()
9pr = context.portal_registration
10logger = logging.getLogger('Returning')
11validate = REQUEST.has_key("cpsdocument_edit_button")
12
13if matric_no is None:
14    logger.info('"No Matricel Nr"')
15    return REQUEST.RESPONSE.redirect("%s" % context.portal_url())
16lt = context.portal_layouts
17#pr = context.portal_registration
18default = {'matric_no':matric_no}
19st_res = context.students_catalog(matric_no = matric_no)
20if st_res:
21    sid = st_res[0].id
22else:
23    logger.info('"%s","Studentobject does not exist"' % matric_no)
24res,psm,ds = lt.renderLayout(layout_id= 'student_session_results_search',
25                      schema_id= 'student_returning',
26                      context=context,
27                      mapping=validate and REQUEST,
28                      ob=default,
29                      layout_mode='edit',
30                      formaction = "set_access_data",
31                      button = "Search",
32                      matric_no = matric_no,
33                      commit = False,
34                      )
35if psm == '':
36    return context.set_access_data_form(rendered = res,
37                                 psm = None,
38                                 firstlayout = True,
39                                 lastlayout = True,
40                                 ds = ds,
41                                 name = "%(name)s" % REQUEST.form
42                                 )
43elif psm == 'invalid':
44    psm = "Please correct your input!"
45elif psm == 'valid' and not REQUEST.form.has_key('acknowledge'):
46    psm = "You did not check the ackkowledge box!"
47else:
48    password = REQUEST.get('widget__password')
49    try:
50        context.waeup_tool.makeStudentMember(sid,password=password)
51        psm = ''
52    except KeyError:
53        psm = "You are already registered please log in with your UserId %s" % sid
54        logger.info('"%s","repeatedly tried to set password"' % sid)
55if psm != '':
56    return context.set_access_data_form(rendered = res,
57                                 #psm = "%s, %s" % (psm,ds),
58                                 psm = psm,
59                                 firstlayout = True,
60                                 lastlayout = True,
61                                 ds = ds,
62                                 name = "%(name)s" % REQUEST.form
63                                 )
64email = ds.get('email')
65args = {}
66args['__ac_name'] = sid
67args['__ac_password'] = password
68args['returning'] = '1'
69args['email'] = email
70args['phone_nr'] = ds.get('phone_nr')
71from urllib import urlencode
72url = "%s/logged_in?%s" % (context.absolute_url(),urlencode(args))
73return REQUEST.RESPONSE.redirect(url)
Note: See TracBrowser for help on using the repository browser.