-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathviews.py
executable file
·53 lines (46 loc) · 1.74 KB
/
views.py
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
43
44
45
46
47
48
49
50
51
52
53
from django.shortcuts import render, get_object_or_404
from django.views import generic
from django.utils import timezone
from .models import Question, UserSolution
from . import program_executor
from django.contrib.auth.decorators import login_required
class IndexView(generic.ListView):
template_name = 'practice/index.html'
context_object_name = 'question_list'
def get_queryset(self):
return Question.objects.all()
@login_required(login_url='../../login/')
def detail(request, question_id):
question = get_object_or_404(Question, pk=question_id)
code = """
#include <iostream>
using namespace std;
int main(){
// your code goes here
return 0;
}
"""
return render(request, 'practice/question_page.html', {
'question': question,
'source_code': code,
})
# How do I get the userID to pass to add_submission_to_db function?
# Basically, how can I get the currently logged in user's ID?
@login_required(login_url='../../../login/')
def submit(request, question_id):
question = get_object_or_404(Question, pk=question_id)
code = request.POST['answer_input']
result = program_executor.execute_on(code, question.id)
if result[0] == 0:
program_executor.cleanup(question.id)
# FIXME: Unable to get current user's ID, remove the hardcoded '1'.
add_submission_to_db(1, question.id, code, result[0])
return render(request, 'practice/question_page.html',{
'question': question,
'result_code': result[0],
'result_message': result[1],
'source_code': code,
})
def add_submission_to_db(user_id, question_id, code, status_code):
UserSolution.objects.create(user_id=user_id, question_id=question_id, solution=code,
status_code=status_code, submitted_on=timezone.now())