summaryrefslogtreecommitdiff
path: root/testapp/myauthentication/backend.py
diff options
context:
space:
mode:
authorPrabhu Ramachandran2015-09-29 13:45:06 +0530
committerPrabhu Ramachandran2015-09-29 13:45:06 +0530
commitebbf135af98720f1979cd28a9108817bac385ce7 (patch)
treee812ac5466ad043f867c58bc363df823522a8468 /testapp/myauthentication/backend.py
parent31f5e743031d105b0406e9587dc33bb065cd6e4d (diff)
parent53be4bc2ec40a9a84ff5ea73db2fbea0a07f5338 (diff)
downloadonline_test-ebbf135af98720f1979cd28a9108817bac385ce7.tar.gz
online_test-ebbf135af98720f1979cd28a9108817bac385ce7.tar.bz2
online_test-ebbf135af98720f1979cd28a9108817bac385ce7.zip
Merge pull request #56 from ankitjavalkar/examtime
Start and Expiry times for Quizzes
Diffstat (limited to 'testapp/myauthentication/backend.py')
-rw-r--r--testapp/myauthentication/backend.py43
1 files changed, 0 insertions, 43 deletions
diff --git a/testapp/myauthentication/backend.py b/testapp/myauthentication/backend.py
deleted file mode 100644
index 721fe54..0000000
--- a/testapp/myauthentication/backend.py
+++ /dev/null
@@ -1,43 +0,0 @@
-import hashlib
-from django.contrib.auth.models import User, check_password
-from models_spoken_tutorial import MoodleUser
-
-
-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 details in django User table
- and authenticates the user.
- '''
- try:
- user = MoodleUser.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