Newer
Older
# -*- coding: utf-8 -*-
from __future__ import division
__copyright__ = "Copyright (C) 2014 Andreas Kloeckner"
__license__ = """
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
"""
from django.shortcuts import ( # noqa
render, get_object_or_404, redirect)
from django.contrib import messages # noqa
from django.core.exceptions import PermissionDenied
from django.db import transaction
import django.forms as forms
from crispy_forms.helper import FormHelper
from crispy_forms.layout import Submit
from bootstrap3_datetime.widgets import DateTimePicker
from course.auth import get_role_and_participation
from course.models import (Course, participation_role, TimeLabel)
from course.content import (get_course_repo, get_course_desc, get_active_commit_sha)
courses_and_descs_and_invalid_flags = []
desc = get_course_desc(repo, course, course.active_git_commit_sha.encode())
role, participation = get_role_and_participation(request, course)
show = True
if course.hidden:
if role not in [participation_role.teaching_assistant,
participation_role.instructor]:
show = False
if role != participation_role.instructor:
show = False
if show:
courses_and_descs_and_invalid_flags.append(
courses_and_descs_and_invalid_flags.sort(key=course_sort_key)
return render(request, "course/home.html", {
"courses_and_descs_and_invalid_flags": courses_and_descs_and_invalid_flags
def check_course_state(course, role):
if course.hidden:
if role not in [participation_role.teaching_assistant,
participation_role.instructor]:
raise PermissionDenied("only course staff have access")
if role != participation_role.instructor:
raise PermissionDenied("only the instructor has access")
def course_page(request, course_identifier):
course = get_object_or_404(Course, identifier=course_identifier)
role, participation = get_role_and_participation(request, course)
commit_sha = get_active_commit_sha(course, participation)
course_desc = get_course_desc(repo, course, commit_sha)
from course.content import get_processed_course_chunks
chunks = get_processed_course_chunks(
course, repo, commit_sha, course_desc,
return render(request, "course/course-page.html", {
"course": course,
"course_desc": course_desc,
"participation": participation,
def get_media(request, course_identifier, commit_sha, media_path):
course = get_object_or_404(Course, identifier=course_identifier)
role, participation = get_role_and_participation(request, course)
repo = get_course_repo(course)
from course.content import get_repo_blob
data = get_repo_blob(repo, "media/"+media_path, commit_sha.encode()).data
from mimetypes import guess_type
content_type = guess_type(media_path)
from django.http import HttpResponse
return HttpResponse(data, content_type=content_type)
# }}}
# {{{ time labels
def check_time_labels(request, course_identifier):
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
course = get_object_or_404(Course, identifier=course_identifier)
role, participation = get_role_and_participation(request, course)
if role != participation_role.instructor:
raise PermissionDenied("only instructors may do that")
repo = get_course_repo(course)
commit_sha = get_active_commit_sha(course, participation)
course_desc = get_course_desc(repo, course, commit_sha)
invalid_datespecs = set()
from course.content import InvalidDatespec, parse_date_spec
def datespec_callback(datespec):
try:
parse_date_spec(course, datespec, return_now_on_error=False)
except InvalidDatespec as e:
invalid_datespecs.add(e.datespec)
from course.validation import validate_course_content
validate_course_content(
repo, course.course_file, commit_sha,
datespec_callback=datespec_callback)
return render(request, "course/invalid-datespec-list.html", {
"course": course,
"course_desc": course_desc,
"participation": participation,
"role": role,
"participation_role": participation_role,
"invalid_datespecs": sorted(invalid_datespecs),
})
class RecurringTimeLabelForm(forms.Form):
kind = forms.CharField(required=True,
help_text="Should be lower_case_with_underscores, no spaces allowed.")
time = forms.DateTimeField(
widget=DateTimePicker(
options={"format": "YYYY-MM-DD HH:mm", "pickSeconds": False}))
interval = forms.ChoiceField(required=True,
choices=(
("weekly", "Weekly"),
))
starting_ordinal = forms.IntegerField(required=True, initial=1)
count = forms.IntegerField(required=True)
def __init__(self, *args, **kwargs):
self.helper = FormHelper()
self.helper.form_class = "form-horizontal"
self.helper.label_class = "col-lg-2"
self.helper.field_class = "col-lg-8"
self.helper.add_input(
Submit("submit", "Create", css_class="col-lg-offset-2"))
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
super(RecurringTimeLabelForm, self).__init__(*args, **kwargs)
@transaction.atomic
def create_recurring_time_labels(request, course_identifier):
course = get_object_or_404(Course, identifier=course_identifier)
role, participation = get_role_and_participation(request, course)
if role != participation_role.instructor:
raise PermissionDenied("only instructors may do that")
repo = get_course_repo(course)
commit_sha = get_active_commit_sha(course, participation)
course_desc = get_course_desc(repo, course, commit_sha)
if request.method == "POST":
form = RecurringTimeLabelForm(request.POST, request.FILES)
if form.is_valid():
time = form.cleaned_data["time"]
ordinal = form.cleaned_data["starting_ordinal"]
interval = form.cleaned_data["interval"]
import datetime
for i in xrange(form.cleaned_data["count"]):
label = TimeLabel()
label.course = course
label.kind = form.cleaned_data["kind"]
label.ordinal = ordinal
label.time = time
label.save()
if interval == "weekly":
date = time.date()
date += datetime.timedelta(weeks=1)
print type(time.tzinfo)
time = time.tzinfo.localize(
datetime.datetime(date.year, date.month, date.day,
time.hour, time.minute, time.second))
del date
else:
raise ValueError("unknown interval: %s" % interval)
ordinal += 1
messages.add_message(request, messages.SUCCESS,
"Time labels created.")
else:
form = RecurringTimeLabelForm()
return render(request, "course/generic-course-form.html", {
"participation": participation,
"form": form,
"form_description": "Create recurring time labels",
"course": course,
"course_desc": course_desc,
})
class RenumberTimeLabelsForm(forms.Form):
kind = forms.CharField(required=True,
help_text="Should be lower_case_with_underscores, no spaces allowed.")
starting_ordinal = forms.IntegerField(required=True, initial=1)
def __init__(self, *args, **kwargs):
self.helper = FormHelper()
self.helper.form_class = "form-horizontal"
self.helper.label_class = "col-lg-2"
self.helper.field_class = "col-lg-8"
self.helper.add_input(
Submit("submit", "Renumber", css_class="col-lg-offset-2"))
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
super(RenumberTimeLabelsForm, self).__init__(*args, **kwargs)
@transaction.atomic
def renumber_time_labels(request, course_identifier):
course = get_object_or_404(Course, identifier=course_identifier)
role, participation = get_role_and_participation(request, course)
if role != participation_role.instructor:
raise PermissionDenied("only instructors may do that")
repo = get_course_repo(course)
commit_sha = get_active_commit_sha(course, participation)
course_desc = get_course_desc(repo, course, commit_sha)
if request.method == "POST":
form = RenumberTimeLabelsForm(request.POST, request.FILES)
if form.is_valid():
labels = list(TimeLabel.objects
.filter(course=course, kind=form.cleaned_data["kind"])
.order_by('time'))
if labels:
queryset = (TimeLabel.objects
.filter(course=course, kind=form.cleaned_data["kind"]))
queryset.delete()
ordinal = form.cleaned_data["starting_ordinal"]
for label in labels:
new_label = TimeLabel()
new_label.course = course
new_label.kind = form.cleaned_data["kind"]
new_label.ordinal = ordinal
new_label.time = label.time
new_label.save()
ordinal += 1
messages.add_message(request, messages.SUCCESS,
"Time labels renumbered.")
else:
messages.add_message(request, messages.ERROR,
"No time labels found.")
else:
form = RenumberTimeLabelsForm()
return render(request, "course/generic-course-form.html", {
"participation": participation,
"form": form,
"form_description": "Renumber time labels",
"course": course,
"course_desc": course_desc,
})
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
# }}}
# {{{ time travel
class FakeTimeForm(forms.Form):
time = forms.DateTimeField(
widget=DateTimePicker(
options={"format": "YYYY-MM-DD HH:mm", "pickSeconds": False}))
def __init__(self, *args, **kwargs):
self.helper = FormHelper()
self.helper.form_class = "form-horizontal"
self.helper.label_class = "col-lg-2"
self.helper.field_class = "col-lg-8"
self.helper.add_input(
Submit("set", "Set", css_class="col-lg-offset-2"))
self.helper.add_input(
Submit("unset", "Unset"))
super(FakeTimeForm, self).__init__(*args, **kwargs)
def get_fake_time(request):
if "courseflow_fake_time" in request.session:
import datetime
from django.conf import settings
from pytz import timezone
tz = timezone(settings.TIME_ZONE)
return tz.localize(
datetime.datetime.fromtimestamp(
request.session["courseflow_fake_time"]))
else:
return None
def get_now_or_fake_time(request):
fake_time = get_fake_time(request)
if fake_time is None:
from django.utils.timezone import now
return now()
else:
return fake_time
def set_fake_time(request):
if not request.user.is_staff:
raise PermissionDenied("only staff may set fake time")
if request.method == "POST":
form = FakeTimeForm(request.POST, request.FILES)
do_set = "set" in form.data
if form.is_valid():
fake_time = form.cleaned_data["time"]
if do_set:
import time
request.session["courseflow_fake_time"] = \
time.mktime(fake_time.timetuple())
else:
request.session.pop("courseflow_fake_time", None)
else:
if "courseflow_fake_time" in request.session:
form = FakeTimeForm({
"time": get_fake_time(request)
})
else:
form = FakeTimeForm()
return render(request, "generic-form.html", {
"form": form,
"form_description": "Set fake time",
})
def fake_time_context_processor(request):
return {
"fake_time": get_fake_time(request),
}
# {{{ grading
def view_grades(request, course_identifier):
course = get_object_or_404(Course, identifier=course_identifier)
role, participation = get_role_and_participation(request, course)
check_course_state(course, role)
messages.add_message(request, messages.ERROR,
"Grade viewing is not yet implemented. (Sorry!) It will be "
"once you start accumulating a sufficient number of grades.")
return redirect("course.views.course_page", course_identifier)
# }}}