views that do *not* require authentication need to inherit FreeAccessView
[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
8 from unfold.loginrequired import FreeAccessView
9
10 from manifold.manifoldresult import ManifoldResult
11 from ui.topmenu import topmenu_items, the_user
12 from myslice.config import Config
13
14 class HomeView (FreeAccessView):
15
16     # expose this so we can mention the backend URL on the welcome page
17     def default_env (self):
18         config=Config()
19         return { 
20                  'MANIFOLD_URL':config.manifold_url(),
21                  }
22
23     def post (self,request):
24         env = self.default_env()
25         username = request.POST.get('username')
26         password = request.POST.get('password')
27         
28         # pass request within the token, so manifold session key can be attached to the request session.
29         token = {'username': username, 'password': password, 'request': request}    
30
31         # our authenticate function returns either
32         # . a ManifoldResult - when something has gone wrong, like e.g. backend is unreachable
33         # . a django User in case of success
34         # . or None if the backend could be reached but the authentication failed
35         auth_result = authenticate(token=token)
36         # high-level errors, like connection refused or the like
37         if isinstance (auth_result, ManifoldResult):
38             manifoldresult = auth_result
39             # let's use ManifoldResult.__repr__
40             env['state']="%s"%manifoldresult
41             return render_to_response('home-view.html',env, context_instance=RequestContext(request))
42         # user was authenticated at the backend
43         elif auth_result is not None:
44             user=auth_result
45             if user.is_active:
46                 print "LOGGING IN"
47                 login(request, user)
48                 return HttpResponseRedirect ('/login-ok')
49             else:
50                 env['state'] = "Your account is not active, please contact the site admin."
51                 return render_to_response('home-view.html',env, context_instance=RequestContext(request))
52         # otherwise
53         else:
54             env['state'] = "Your username and/or password were incorrect."
55             return render_to_response('home-view.html',env, context_instance=RequestContext(request))
56
57     # login-ok sets state="Welcome to MySlice" in urls.py
58     def get (self, request, state=None):
59         env = self.default_env()
60         env['username']=the_user(request)
61         env['topmenu_items'] = topmenu_items(None, request)
62         if state: env['state'] = state
63         elif not env['username']: env['state'] = "Please sign in"
64         return render_to_response('home-view.html',env, context_instance=RequestContext(request))
65