blob: 698ec5457aef27914fde5ecebaeb24f7ac276cbf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
import hashlib
from django.contrib.auth.models import User, check_password
from models_spoken import MdlUser
class MyBackend:
supports_object_permissions = False
supports_anonymous_user = False
supports_inactive_user = False
def authenticate(self, username=None, password=None):
'''
Checks username and password with external User table.
If valid then adds the user detail in django User table
and authenticates user.
'''
try:
user = MdlUser.objects.get(username=username)
pwd = user.password
uid = user.id
firstname = user.firstname
lastname = user.lastname
email_id = user.email
p = hashlib.md5(password)
pwd_valid = (pwd == p.hexdigest())
if user and pwd_valid:
try:
user = User.objects.get(username=username)
return user
except Exception, e:
user=User(id=uid, username=username, password=pwd,\
first_name=firstname, last_name=lastname,\
email=email_id)
user.save()
return user
except Exception, e:
return None
def get_user(self, user_id):
try:
return User.objects.get(pk=user_id)
except Exception, e:
return None
|