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 |
---|
11 | modified from cps_default/logged_in.py |
---|
12 | |
---|
13 | $Id: logged_in.py 34693 2006-03-23 17:44:22Z ogrisel $ |
---|
14 | """ |
---|
15 | import DateTime |
---|
16 | current = DateTime.DateTime() |
---|
17 | |
---|
18 | from urllib import unquote |
---|
19 | |
---|
20 | def 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 | |
---|
30 | request = context.REQUEST |
---|
31 | response = request.RESPONSE |
---|
32 | utool = context.portal_url |
---|
33 | mtool = context.portal_membership |
---|
34 | wftool = context.portal_workflow |
---|
35 | portal = utool.getPortalObject() |
---|
36 | portal_absolute_url = portal.absolute_url() |
---|
37 | |
---|
38 | redirect_url = came_from |
---|
39 | redirect_to_portal = False |
---|
40 | to_member_home = False |
---|
41 | to_workspaces = False |
---|
42 | to_waeup_student_home = False |
---|
43 | |
---|
44 | is_anon = mtool.isAnonymousUser() |
---|
45 | member = mtool.getAuthenticatedMember() |
---|
46 | |
---|
47 | if 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"): |
---|
54 | #student.content_status_modify(workflow_action="enter_clearance_pin") |
---|
55 | wftool.doActionFor(info['app'],'open') |
---|
56 | #wftool.doActionFor(info['pume'],'close') |
---|
57 | if info['pume'] is not None: |
---|
58 | wftool.doActionFor(info['pume'],'close') |
---|
59 | da = {} |
---|
60 | pin = request.get('pin') |
---|
61 | email = request.get('email') |
---|
62 | app_doc = info['app_doc'] |
---|
63 | da['app_ac_pin'] = pin |
---|
64 | da['app_email'] = email |
---|
65 | da['app_ac_date'] = current |
---|
66 | app_doc.edit(mapping = da) |
---|
67 | ## dc = {} |
---|
68 | ## dc['clr_ac_pin'] = pin |
---|
69 | ## dc['entry_date'] = current |
---|
70 | ## dc['session'] = "%s" % current.year() |
---|
71 | ## dc['lga'] = app_doc.jamb_lga |
---|
72 | ## info['clear_doc'].edit(mapping = dc) |
---|
73 | elif "Manager" in member.getRoles(): |
---|
74 | pass |
---|
75 | else: |
---|
76 | to_member_home, to_workspaces = checkRedirect(portal, mtool) |
---|
77 | if (not to_member_home) and (not to_workspaces): |
---|
78 | redirect_to_portal = True |
---|
79 | else: |
---|
80 | redirect_url = unquote(redirect_url) |
---|
81 | # One can be redirected from an http page while the login is done from an |
---|
82 | # https page. This is a fix for #1205. |
---|
83 | # A better option here would be to replace the previous portal_absolute_url |
---|
84 | # prefix in the redirect_url by the current portal absolute URL. |
---|
85 | if not redirect_url.startswith(portal_absolute_url): |
---|
86 | if not is_anon: |
---|
87 | to_member_home, to_workspaces = checkRedirect(portal, mtool) |
---|
88 | if (not to_member_home) and (not to_workspaces): |
---|
89 | redirect_to_portal = True |
---|
90 | |
---|
91 | if to_waeup_student_home: |
---|
92 | member.setProperties(last_login_time=current,login_time=current) |
---|
93 | if info['review_state'] == "application_pin_entered": |
---|
94 | return response.redirect("%s/application_edit" % student.absolute_url()) |
---|
95 | elif info['review_state'] == "admitted": |
---|
96 | return response.redirect("%s/admission_accept_form" % student.absolute_url()) |
---|
97 | elif info['review_state'] == "clearance_pin_entered": |
---|
98 | return response.redirect("%s/clearance_edit" % student.absolute_url()) |
---|
99 | return response.redirect("%s/student_index" % info['url']) |
---|
100 | |
---|
101 | elif to_member_home: |
---|
102 | redirect_url = mtool.getHomeFolder().absolute_url() |
---|
103 | elif to_workspaces: |
---|
104 | redirect_url = portal.workspaces.absolute_url() |
---|
105 | elif redirect_to_portal: |
---|
106 | redirect_url = portal_absolute_url |
---|
107 | |
---|
108 | REQUEST = context.REQUEST |
---|
109 | RESPONSE = REQUEST.RESPONSE |
---|
110 | |
---|
111 | # Setup skins |
---|
112 | if (getattr(utool, 'updateSkinCookie', False) and |
---|
113 | utool.updateSkinCookie()): |
---|
114 | context.setupCurrentSkin() |
---|
115 | |
---|
116 | # Anonymous |
---|
117 | if is_anon: |
---|
118 | RESPONSE.expireCookie('__ac', path='/') |
---|
119 | return context.user_logged_in_failed() |
---|
120 | |
---|
121 | login_time = member.getProperty('login_time', '2000/01/01') |
---|
122 | first_time = (str(login_time) == '2000/01/01') |
---|
123 | |
---|
124 | if first_time and member.has_role('Member'): |
---|
125 | mtool.createMemberArea() |
---|
126 | now = context.ZopeTime() |
---|
127 | member.setProperties(last_login_time=now, login_time=now) |
---|
128 | |
---|
129 | if to_member_home or to_workspaces: |
---|
130 | redirect_url = '%s/?%s' % (redirect_url, 'portal_status_message=psm_logged_in') |
---|
131 | RESPONSE.redirect(redirect_url) |
---|