X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=auth%2Fmanifoldbackend.py;h=96697b3f001daa3c64ed39c99ebf72f275525daf;hb=b709866ba93d98c32127ff4deae5b783e271e5b3;hp=f548b4340a6ea16f74292481ae438ca5c91e2f8b;hpb=a222cef0a10a5517349f05cea0e382b35e3a14a6;p=myslice.git diff --git a/auth/manifoldbackend.py b/auth/manifoldbackend.py index f548b434..96697b3f 100644 --- a/auth/manifoldbackend.py +++ b/auth/manifoldbackend.py @@ -1,49 +1,55 @@ -# import the User object -from django.contrib.auth.models import User -from engine.manifoldapi import ManifoldAPI +import time +from django.contrib.auth.models import User -# import time - this is used to create Django's internal username -import time +from manifold.manifoldapi import ManifoldAPI # Name my backend 'ManifoldBackend' class ManifoldBackend: # Create an authentication method # This is called by the standard Django login procedure - def authenticate(self, username=None, password=None): - if not username or not password: + def authenticate(self, token=None): + if not token: return None try: + username = token['username'] + password = token['password'] + request = token['request'] + auth = {'AuthMethod': 'password', 'Username': username, 'AuthString': password} api = ManifoldAPI(auth) # Authenticate user and get session key session = api.GetSession() if not session : return None - + #self.session = session # Change GetSession() at some point to return expires as well expires = time.time() + (24 * 60 * 60) # Change to session authentication api.auth = {'AuthMethod': 'session', 'session': session} - #self.api = api + self.api = api # Get account details - person = api.GetPersons(auth) - #self.person = person[0] + person = api.GetPersons(auth)[0] + self.person = person + + request.session['manifold'] = {'auth': api.auth, 'person': person, 'expires': expires} except: return None try: # Check if the user exists in Django's local database - user = User.objects.get(email=username) + user = User.objects.get(username=username) except User.DoesNotExist: # Create a user in Django's local database - user = User.objects.create_user(time.time(), username, 'passworddoesntmatter') - + user = User.objects.create_user(username, username, 'passworddoesntmatter') + user.first_name = person['first_name'] + user.last_name = person['last_name'] + user.email = person['email'] return user # Required for your backend to work properly - unchanged in most scenarios