LDAP support in views
[myslice.git] / portal / homeview.py
1 # this somehow is not used anymore - should it not be ?
2 from django.core.context_processors import csrf
3 from django.http import HttpResponseRedirect
4 from django.contrib.auth import authenticate, login, logout
5 from django.template import RequestContext
6 from django.shortcuts import render_to_response
7 from django.shortcuts import render
8
9 from unfold.loginrequired import FreeAccessView
10
11 from manifoldapi.manifoldresult import ManifoldResult
12 from ui.topmenu import topmenu_items, the_user
13 from myslice.configengine import ConfigEngine
14
15 from theme import ThemeView
16
17 class HomeView (FreeAccessView, ThemeView):
18     template_name = 'home-view.html'
19         
20     # expose this so we can mention the backend URL on the welcome page
21     def default_env (self):
22         return { 
23                  'MANIFOLD_URL':ConfigEngine().manifold_url(),
24                  }
25
26     def post (self,request):
27         env = self.default_env()
28         env['theme'] = self.theme
29         username = request.POST.get('username')
30         password = request.POST.get('password')
31        
32         # LDAP form - If FIBRE, then get the possibilite to authenticate using usernameldap
33         #if self.theme == 'fibre':
34         usernameldap = request.POST.get('usernameldap')
35         token = {'usernameldap': usernameldap, 'username': username ,'password': password, 'request': request}    
36         #else:
37         
38         # Follow original code
39         ## pass request within the token, so manifold session key can be attached to the request session.
40         #token = {'username': username, 'password': password, 'request': request}    
41
42         # our authenticate function returns either
43         # . a ManifoldResult - when something has gone wrong, like e.g. backend is unreachable
44         # . a django User in case of success
45         # . or None if the backend could be reached but the authentication failed
46         auth_result = authenticate(token=token)
47         # use one or two columns for the layout - not logged in users will see the login prompt
48         # high-level errors, like connection refused or the like
49         if isinstance (auth_result, ManifoldResult):
50             manifoldresult = auth_result
51             # let's use ManifoldResult.__repr__
52             env['state']="%s"%manifoldresult
53             
54             return render_to_response(self.template,env, context_instance=RequestContext(request))
55         # user was authenticated at the backend
56         elif auth_result is not None:
57             user=auth_result
58             if user.is_active:
59                 print "LOGGING IN"
60                 login(request, user)
61                 
62                 if request.user.is_authenticated(): 
63                     env['person'] = self.request.user
64                     env['username'] = self.request.user
65                 else: 
66                     env['person'] = None
67                 return render_to_response(self.template,env, context_instance=RequestContext(request))
68             else:
69                 env['state'] = "Your account is not active, please contact the site admin."
70                 env['layout_1_or_2']="layout-unfold2.html"
71                 
72                 return render_to_response(self.template,env, context_instance=RequestContext(request))
73         # otherwise
74         else:
75             env['state'] = "Your username and/or password were incorrect."
76             
77             return render_to_response(self.template, env, context_instance=RequestContext(request))
78
79     def get (self, request, state=None):
80         env = self.default_env()
81
82         if request.user.is_authenticated(): 
83             env['person'] = self.request.user
84         else: 
85             env['person'] = None
86     
87         env['theme'] = self.theme
88     
89
90         env['username']=the_user(request)
91         env['topmenu_items'] = topmenu_items(None, request)
92         if state: env['state'] = state
93         elif not env['username']: env['state'] = None
94         # use one or two columns for the layout - not logged in users will see the login prompt
95         
96         
97         return render_to_response(self.template, env, context_instance=RequestContext(request))
98