20
20
'''AJAX backend for the tutorial application.'''
25
from storm.locals import Store
27
27
import ivle.database
28
from ivle.database import Exercise, ExerciseAttempt, ExerciseSave, Worksheet, \
29
Offering, Subject, Semester, User, WorksheetExercise
30
import ivle.worksheet.utils
31
from ivle.webapp.base.rest import (JSONRESTView, named_operation,
33
from ivle.webapp.errors import NotFound
30
import ivle.webapp.tutorial.test
32
from ivle.webapp.base.rest import JSONRESTView, named_operation
34
# If True, getattempts or getattempt will allow browsing of inactive/disabled
35
# attempts. If False, will not allow this.
36
HISTORY_ALLOW_INACTIVE = False
36
38
TIMESTAMP_FORMAT = '%Y-%m-%d %H:%M:%S'
39
41
class AttemptsRESTView(JSONRESTView):
40
42
'''REST view of a user's attempts at an exercise.'''
42
@require_permission('edit')
43
43
def GET(self, req):
44
44
"""Handles a GET Attempts action."""
45
attempts = req.store.find(ExerciseAttempt,
46
ExerciseAttempt.ws_ex_id == self.context.worksheet_exercise.id,
47
ExerciseAttempt.user_id == self.context.user.id)
45
exercise = ivle.database.Exercise.get_by_name(req.store,
47
user = ivle.database.User.get_by_login(req.store, self.username)
49
attempts = ivle.worksheet.get_exercise_attempts(req.store, user,
50
exercise, allow_inactive=HISTORY_ALLOW_INACTIVE)
48
51
# attempts is a list of ExerciseAttempt objects. Convert to dictionaries
49
52
time_fmt = lambda dt: datetime.datetime.strftime(dt, TIMESTAMP_FORMAT)
50
53
attempts = [{'date': time_fmt(a.date), 'complete': a.complete}
56
@require_permission('edit')
57
59
def PUT(self, req, data):
58
""" Tests the given submission """
59
test_results = ivle.worksheet.utils.test_exercise_submission(
60
req.config, req.user, self.context.worksheet_exercise.exercise,
60
''' Tests the given submission '''
61
exercisefile = ivle.util.open_exercise_file(self.exercise)
62
if exercisefile is None:
63
req.throw_error(req.HTTP_NOT_FOUND,
64
"The exercise was not found.")
66
# Start a console to run the tests on
67
jail_path = os.path.join(ivle.conf.jail_base, req.user.login)
68
working_dir = os.path.join("/home", req.user.login)
69
cons = ivle.console.Console(req.user.unixid, jail_path, working_dir)
71
# Parse the file into a exercise object using the test suite
72
exercise_obj = ivle.webapp.tutorial.test.parse_exercise_file(
76
# Run the test cases. Get the result back as a JSONable object.
78
test_results = exercise_obj.run_tests(data['code'])
83
# Get the Exercise from the database
84
exercise = ivle.database.Exercise.get_by_name(req.store, self.exercise)
63
86
attempt = ivle.database.ExerciseAttempt(user=req.user,
64
worksheet_exercise = self.context.worksheet_exercise,
65
date = datetime.datetime.now(),
66
complete = test_results['passed'],
67
text = unicode(data['code'])
88
date=datetime.datetime.now(),
89
complete=test_results['passed'],
91
text=unicode(data['code']))
70
93
req.store.add(attempt)
72
95
# Query the DB to get an updated score on whether or not this problem
73
96
# has EVER been completed (may be different from "passed", if it has
74
97
# been completed before), and the total number of attempts.
75
completed, attempts = ivle.worksheet.utils.get_exercise_status(
76
req.store, req.user, self.context.worksheet_exercise)
98
completed, attempts = ivle.worksheet.get_exercise_status(req.store,
77
100
test_results["completed"] = completed
78
101
test_results["attempts"] = attempts
83
106
class AttemptRESTView(JSONRESTView):
84
107
'''REST view of an exercise attempt.'''
86
@require_permission('view')
87
109
def GET(self, req):
88
return {'code': self.context.text}
91
class WorksheetExerciseRESTView(JSONRESTView):
92
'''REST view of a worksheet exercise.'''
94
@named_operation('view')
110
# Get an actual date object, rather than a string
111
date = datetime.datetime.strptime(self.date, TIMESTAMP_FORMAT)
113
exercise = ivle.database.Exercise.get_by_name(req.store, self.exercise)
114
attempt = ivle.worksheet.get_exercise_attempt(req.store, req.user,
115
exercise, as_of=date, allow_inactive=HISTORY_ALLOW_INACTIVE)
116
if attempt is not None:
117
attempt = attempt.text
118
# attempt may be None; will write "null"
119
return {'code': attempt}
122
class ExerciseRESTView(JSONRESTView):
123
'''REST view of an exercise.'''
95
125
def save(self, req, text):
96
# Find the appropriate WorksheetExercise to save to. If its not found,
97
# the user is submitting against a non-existant worksheet/exercise
99
old_save = req.store.find(ExerciseSave,
100
ExerciseSave.ws_ex_id == self.context.id,
101
ExerciseSave.user == req.user).one()
103
#Overwrite the old, or create a new if there isn't one
105
new_save = ExerciseSave()
106
req.store.add(new_save)
110
new_save.worksheet_exercise = self.context
111
new_save.user = req.user
112
new_save.text = unicode(text)
113
new_save.date = datetime.datetime.now()
126
# Need to open JUST so we know this is a real exercise.
127
# (This avoids users submitting code for bogus exercises).
128
exercisefile = ivle.util.open_exercise_file(self.exercise)
129
if exercisefile is None:
130
req.throw_error(req.HTTP_NOT_FOUND,
131
"The exercise was not found.")
134
exercise = ivle.database.Exercise.get_by_name(req.store, self.exercise)
135
ivle.worksheet.save_exercise(req.store, req.user, exercise,
136
unicode(text), datetime.datetime.now())
115
137
return {"result": "ok"}
118
class WorksheetsRESTView(JSONRESTView):
119
"""View used to update and create Worksheets."""
121
@named_operation('edit_worksheets')
122
def move_up(self, req, worksheetid):
123
"""Takes a list of worksheet-seq_no pairs and updates their
124
corresponding Worksheet objects to match."""
126
worksheet_below = req.store.find(Worksheet,
127
Worksheet.offering_id == self.context.id,
128
Worksheet.identifier == unicode(worksheetid)).one()
129
if worksheet_below is None:
130
raise NotFound('worksheet_below')
131
worksheet_above = req.store.find(Worksheet,
132
Worksheet.offering_id == self.context.id,
133
Worksheet.seq_no == (worksheet_below.seq_no - 1)).one()
134
if worksheet_above is None:
135
raise NotFound('worksheet_above')
137
worksheet_below.seq_no = worksheet_below.seq_no - 1
138
worksheet_above.seq_no = worksheet_above.seq_no + 1
140
return {'result': 'ok'}
142
@named_operation('edit_worksheets')
143
def move_down(self, req, worksheetid):
144
"""Takes a list of worksheet-seq_no pairs and updates their
145
corresponding Worksheet objects to match."""
147
worksheet_above = req.store.find(Worksheet,
148
Worksheet.offering_id == self.context.id,
149
Worksheet.identifier == unicode(worksheetid)).one()
150
if worksheet_above is None:
151
raise NotFound('worksheet_below')
152
worksheet_below = req.store.find(Worksheet,
153
Worksheet.offering_id == self.context.id,
154
Worksheet.seq_no == (worksheet_above.seq_no + 1)).one()
155
if worksheet_below is None:
156
raise NotFound('worksheet_above')
158
worksheet_below.seq_no = worksheet_below.seq_no - 1
159
worksheet_above.seq_no = worksheet_above.seq_no + 1
161
return {'result': 'ok'}