2016-02-14 16:15:13 +01:00
|
|
|
import datetime
|
2016-02-09 20:46:04 +01:00
|
|
|
from django.core.exceptions import ObjectDoesNotExist
|
2016-02-09 19:51:05 +01:00
|
|
|
from django.http import HttpResponse
|
2016-01-31 16:17:37 +01:00
|
|
|
from django.shortcuts import render_to_response
|
|
|
|
|
2016-02-09 19:51:05 +01:00
|
|
|
from tkupek_elearning.elearning.models import Setting, Question, Option, UserAnswer, User
|
2016-01-31 18:19:45 +01:00
|
|
|
|
2016-02-14 16:15:13 +01:00
|
|
|
# import pdb
|
2016-01-31 16:17:37 +01:00
|
|
|
|
2016-02-14 16:15:13 +01:00
|
|
|
|
|
|
|
def start(request):
|
2016-02-14 15:02:26 +01:00
|
|
|
|
|
|
|
token = request.GET.get('token')
|
|
|
|
|
|
|
|
try:
|
|
|
|
user = User.objects.get(token=token)
|
|
|
|
except ObjectDoesNotExist:
|
|
|
|
user = None
|
|
|
|
|
2016-02-14 16:15:13 +01:00
|
|
|
settings = Setting.objects.get(active=1)
|
2016-01-31 16:17:37 +01:00
|
|
|
|
2016-02-14 15:02:26 +01:00
|
|
|
if user is not None:
|
2016-02-14 16:15:13 +01:00
|
|
|
|
|
|
|
log_last_seen(user)
|
|
|
|
|
2016-02-14 15:02:26 +01:00
|
|
|
settings.message_welcome_user = settings.message_welcome_user.replace('{username}', user.name)
|
|
|
|
|
|
|
|
questions_options = {}
|
|
|
|
questions = Question.objects.all()
|
|
|
|
for question in questions:
|
|
|
|
options = Option.objects.filter(question=question.id)
|
|
|
|
|
|
|
|
user_answer = get_user_answer(question, user)
|
|
|
|
|
|
|
|
if user_answer is None:
|
|
|
|
question.enable = True
|
|
|
|
else:
|
|
|
|
question.enable = False
|
2016-01-31 21:18:13 +01:00
|
|
|
|
2016-02-14 15:02:26 +01:00
|
|
|
questions_options[question] = options
|
|
|
|
questions_options[question] = options
|
|
|
|
|
|
|
|
return render_to_response('elearning.html', {'settings': settings, 'questions_options': questions_options})
|
|
|
|
|
|
|
|
else:
|
|
|
|
return render_to_response('access_denied.html', {'settings': settings})
|
2016-02-09 19:51:05 +01:00
|
|
|
|
|
|
|
|
2016-02-09 21:35:46 +01:00
|
|
|
def get_answer(request):
|
2016-02-09 20:46:04 +01:00
|
|
|
if request.method == 'GET':
|
|
|
|
|
|
|
|
request_id = request.GET.get('id')
|
|
|
|
request_token = request.GET.get('token')
|
|
|
|
request_answers = request.GET.get('answers')
|
|
|
|
|
|
|
|
question = Question.objects.get(id=request_id)
|
|
|
|
user = User.objects.get(token=request_token)
|
2016-02-14 16:15:13 +01:00
|
|
|
log_last_seen(user)
|
2016-02-09 20:46:04 +01:00
|
|
|
|
2016-02-14 15:02:26 +01:00
|
|
|
user_answer = get_user_answer(question, user)
|
2016-02-09 20:46:04 +01:00
|
|
|
|
2016-02-09 21:35:46 +01:00
|
|
|
if user_answer is None:
|
|
|
|
user_answer = UserAnswer()
|
2016-02-09 21:46:52 +01:00
|
|
|
user_answer.question = question
|
2016-02-09 21:35:46 +01:00
|
|
|
user_answer.user = user
|
|
|
|
user_answer.answers = request_answers
|
|
|
|
user_answer.save()
|
2016-02-09 20:46:04 +01:00
|
|
|
|
|
|
|
options = Option.objects.filter(question=question.id, correct=True)
|
2016-02-09 19:51:05 +01:00
|
|
|
|
2016-02-09 21:35:46 +01:00
|
|
|
options_id = ""
|
|
|
|
for option in options:
|
|
|
|
options_id += str(option.id) + "_"
|
|
|
|
|
|
|
|
if options_id is not "":
|
|
|
|
options_id = options_id[:-1]
|
|
|
|
|
|
|
|
return HttpResponse(options_id)
|
2016-02-14 15:02:26 +01:00
|
|
|
|
|
|
|
|
|
|
|
def get_user_answer(question, user):
|
|
|
|
try:
|
|
|
|
user_answer = UserAnswer.objects.get(question=question.id, user=user.id)
|
|
|
|
except ObjectDoesNotExist:
|
|
|
|
user_answer = None
|
|
|
|
|
2016-02-14 16:15:13 +01:00
|
|
|
return user_answer
|
|
|
|
|
|
|
|
|
|
|
|
def log_last_seen(user):
|
|
|
|
user.last_seen = datetime.datetime.now()
|
|
|
|
user.save()
|
|
|
|
|
|
|
|
|
|
|
|
def statistic():
|
|
|
|
|
|
|
|
settings = Setting.objects.get(active=1)
|
|
|
|
users = User.objects.all()
|
|
|
|
|
|
|
|
for user in users:
|
|
|
|
user.questions_answered = UserAnswer.objects.filter(user=user.id).count()
|
|
|
|
|
|
|
|
questions = Question.objects.all()
|
|
|
|
for question in questions:
|
|
|
|
question.answers = UserAnswer.objects.filter(question=question.id).count()
|
|
|
|
|
|
|
|
return render_to_response('statistic.html', {'settings': settings, 'users': users, 'questions': questions})
|