source: WAeUP_SRP/trunk/skins/waeup_custom/logged_in.py @ 997

Last change on this file since 997 was 990, checked in by joachim, 18 years ago

fixed not created issue
and application-pin rendering

  • Property svn:keywords set to Id
File size: 4.9 KB
Line 
1## Script (Python) "logged_in"
2##bind container=container
3##bind context=context
4##bind namespace=
5##bind script=script
6##bind subpath=traverse_subpath
7##parameters=came_from=None
8##title=
9##
10"""Prepare user login
11modified from cps_default/logged_in.py
12
13$Id: logged_in.py 990 2006-12-05 12:08:24Z joachim $
14"""
15import DateTime
16current = DateTime.DateTime()
17
18from urllib import unquote
19
20def checkRedirect(portal, mtool):
21    to_member_home = False
22    to_workspaces = False
23##    has_home = mtool.getHomeFolder()
24##    if has_home:
25##        to_member_home = True
26##    if not has_home and mtool.checkPermission('View', portal.workspaces):
27##        to_workspaces = True
28    return to_member_home, to_workspaces
29
30request = context.REQUEST
31response = request.RESPONSE
32utool = context.portal_url
33mtool = context.portal_membership
34wftool = context.portal_workflow
35portal = utool.getPortalObject()
36portal_absolute_url = portal.absolute_url()
37
38redirect_url = came_from
39redirect_to_portal = False
40to_member_home = False
41to_workspaces = False
42to_waeup_student_home = False
43
44is_anon = mtool.isAnonymousUser()
45member = mtool.getAuthenticatedMember()
46
47if True or not redirect_url or redirect_url.endswith('/logged_out'):
48    if not is_anon:
49        if "Student" in member.getRoles():
50            to_waeup_student_home = True
51            info = context.getStudentInfo()
52            student = info['student']
53            if info['review_state'] in ("student_created","admitted") and\
54            wftool.getInfoFor(info['app'],'review_state',None) == 'created' :
55                #student.content_status_modify(workflow_action="enter_clearance_pin")
56                wftool.doActionFor(info['app'],'open')
57                #wftool.doActionFor(info['pume'],'close')
58                if info['pume'] is not None:
59                  wftool.doActionFor(info['pume'],'close')
60                da = {}
61                pin = request.get('pin')
62                if not pin:
63                    jamb_reg_no = info['app_doc'].jamb_reg_no
64                    res = context.portal_pins(student=jamb_reg_no)
65                    if len(res) == 1:
66                        p = res[0].pin
67                        pin = "%s-%s-%s" % (p[:3],p[3:4],p[4:])
68##                email = request.get('email')
69                app_doc = info['app_doc']
70                da['app_ac_pin'] = pin
71##                da['app_email'] = email
72                da['app_ac_date'] = current
73                app_doc.edit(mapping = da)
74##                dc = {}
75##                dc['clr_ac_pin'] = pin
76##                dc['entry_date'] = current
77##                dc['session'] = "%s" % current.year()
78##                dc['lga'] = app_doc.jamb_lga
79##                info['clear_doc'].edit(mapping = dc)
80        elif "Manager" in member.getRoles():
81            pass
82        else:
83            to_member_home, to_workspaces = checkRedirect(portal, mtool)
84    if (not to_member_home) and (not to_workspaces):
85        redirect_to_portal = True
86else:
87    redirect_url = unquote(redirect_url)
88    # One can be redirected from an http page while the login is done from an
89    # https page. This is a fix for #1205.
90    # A better option here would be to replace the previous portal_absolute_url
91    # prefix in the redirect_url by the current portal absolute URL.
92    if not redirect_url.startswith(portal_absolute_url):
93        if not is_anon:
94            to_member_home, to_workspaces = checkRedirect(portal, mtool)
95        if (not to_member_home) and (not to_workspaces):
96            redirect_to_portal = True
97
98if to_waeup_student_home:
99    #member.setProperties(last_login_time=current,login_time=current)
100    if info['review_state'] == "application_pin_entered":
101        return response.redirect("%s/application_edit" % student.absolute_url())
102    elif info['review_state'] == "admitted":
103        return response.redirect("%s/admission_form" % student.absolute_url())
104    elif info['review_state'] == "clearance_pin_entered":
105        return response.redirect("%s/clearance_edit" % student.absolute_url())
106    return response.redirect("%s/student_index" % info['url'])
107
108elif to_member_home:
109    redirect_url = mtool.getHomeFolder().absolute_url()
110elif to_workspaces:
111    redirect_url = portal.workspaces.absolute_url()
112elif redirect_to_portal:
113    redirect_url = portal_absolute_url
114
115REQUEST = context.REQUEST
116RESPONSE = REQUEST.RESPONSE
117
118# Setup skins
119if (getattr(utool, 'updateSkinCookie', False) and
120    utool.updateSkinCookie()):
121    context.setupCurrentSkin()
122
123# Anonymous
124if is_anon:
125    RESPONSE.expireCookie('__ac', path='/')
126    return context.user_logged_in_failed()
127
128login_time = member.getProperty('login_time', '2000/01/01')
129first_time = (str(login_time) == '2000/01/01')
130
131##if first_time and member.has_role('Member') and not member.has_role('Student'):
132##    mtool.createMemberArea()
133##    now = context.ZopeTime()
134##    member.setProperties(last_login_time=now, login_time=now)
135
136if to_member_home or to_workspaces:
137    redirect_url = '%s/?%s' % (redirect_url, 'portal_status_message=psm_logged_in')
138RESPONSE.redirect(redirect_url)
Note: See TracBrowser for help on using the repository browser.