Newer
Older
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
54
55
56
57
58
59
60
61
62
# -*- 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.contrib.auth.decorators import login_required
from course.utils import course_view, render_course_page
from django.core.exceptions import PermissionDenied, ObjectDoesNotExist
from django.db import transaction
from django.contrib import messages # noqa
import django.forms as forms
from crispy_forms.layout import Submit
from bootstrap3_datetime.widgets import DateTimePicker
from courseflow.utils import StyledForm
from course.models import (participation_role, Event)
# {{{ creation
@login_required
@course_view
def check_events(pctx):
if pctx.role != participation_role.instructor:
raise PermissionDenied("only instructors may do that")
invalid_datespecs = {}
from course.content import InvalidDatespec, parse_date_spec
def datespec_callback(location, datespec):
try:
parse_date_spec(pctx.course, datespec, return_now_on_error=False)
except InvalidDatespec as e:
invalid_datespecs.setdefault(e.datespec, []).append(location)
from course.validation import validate_course_content
validate_course_content(
pctx.repo, pctx.course.course_file, pctx.course.events_file,
pctx.course_commit_sha, datespec_callback=datespec_callback)
return render_course_page(pctx, "course/invalid-datespec-list.html", {
"invalid_datespecs": sorted(invalid_datespecs.iteritems()),
})
class RecurringEventForm(StyledForm):
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}))
duration_in_minutes = forms.FloatField(required=False)
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
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):
super(RecurringEventForm, self).__init__(*args, **kwargs)
self.helper.add_input(
Submit("submit", "Create", css_class="col-lg-offset-2"))
@transaction.atomic
@login_required
@course_view
def create_recurring_events(pctx):
if pctx.role != participation_role.instructor:
raise PermissionDenied("only instructors may do that")
request = pctx.request
if request.method == "POST":
form = RecurringEventForm(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"]):
evt = Event()
evt.course = pctx.course
evt.kind = form.cleaned_data["kind"]
evt.ordinal = ordinal
evt.time = time
if form.cleaned_data["duration_in_minutes"]:
evt.end_time = evt.time + datetime.timedelta(
minutes=form.cleaned_data["duration_in_minutes"])
evt.save()
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
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
200
201
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
if interval == "weekly":
date = time.date()
date += datetime.timedelta(weeks=1)
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,
"Events created.")
else:
form = RecurringEventForm()
return render_course_page(pctx, "course/generic-course-form.html", {
"form": form,
"form_description": "Create recurring events",
})
class RenumberEventsForm(StyledForm):
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):
super(RenumberEventsForm, self).__init__(*args, **kwargs)
self.helper.add_input(
Submit("submit", "Renumber", css_class="col-lg-offset-2"))
@transaction.atomic
@login_required
@course_view
def renumber_events(pctx):
if pctx.role != participation_role.instructor:
raise PermissionDenied("only instructors may do that")
request = pctx.request
if request.method == "POST":
form = RenumberEventsForm(request.POST, request.FILES)
if form.is_valid():
labels = list(Event.objects
.filter(course=pctx.course, kind=form.cleaned_data["kind"])
.order_by('time'))
if labels:
queryset = (Event.objects
.filter(course=pctx.course, kind=form.cleaned_data["kind"]))
queryset.delete()
ordinal = form.cleaned_data["starting_ordinal"]
for label in labels:
new_label = Event()
new_label.course = pctx.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,
"Events renumbered.")
else:
messages.add_message(request, messages.ERROR,
"No events found.")
else:
form = RenumberEventsForm()
return render_course_page(pctx, "course/generic-course-form.html", {
"form": form,
"form_description": "Renumber events",
})
# }}}
# {{{ calendar
class EventInfo(object):
def __init__(self, id, human_title, start_time, end_time, description):
self.id = id
self.human_title = human_title
self.start_time = start_time
self.end_time = end_time
self.description = description
@course_view
def view_calendar(pctx):
from course.content import markup_to_html
events_json = []
from course.content import get_yaml_from_repo_as_dict
try:
event_descr = get_yaml_from_repo_as_dict(pctx.repo,
pctx.course.events_file, pctx.course_commit_sha)
except ObjectDoesNotExist:
event_descr = {}
print "ODN"
event_kinds_desc = event_descr.get("event_kinds", {})
event_info_desc = event_descr.get("events", {})
event_info_list = []
for event in Event.objects.order_by("time"):
kind_desc = event_kinds_desc.get(event.kind)
human_title = unicode(event)
event_json = {
"id": event.id,
"start": event.time.isoformat(),
}
if event.end_time is not None:
event_json["end"] = event.end_time.isoformat()
if kind_desc is not None:
if "color" in kind_desc:
event_json["color"] = kind_desc["color"]
if "title" in kind_desc:
if event.ordinal:
human_title = kind_desc["title"].format(nr=event.ordinal)
else:
human_title = kind_desc["title"]
description = None
event_desc = event_info_desc.get(unicode(event))
if event_desc is not None:
if "description" in event_desc:
description = markup_to_html(
pctx.course, pctx.repo, pctx.course_commit_sha,
event_desc["description"])
if "title" in event_desc:
human_title = event_desc["title"]
if "color" in event_desc:
human_title = event_desc["color"]
event_json["title"] = human_title
if description:
event_json["url"] = "#event-%d" % event.id
start_time = event.time
end_time = event.end_time
if event.all_day:
start_time = start_time.date()
end_time = end_time.date()
event_info_list.append(
EventInfo(
id=event.id,
human_title=human_title,
start_time=start_time,
end_time=end_time,
description=description
))
events_json.append(event_json)
from json import dumps
return render_course_page(pctx, "course/calendar.html", {
"events_json": dumps(events_json),
"event_info_list": event_info_list,
})
# }}}
# vim: foldmethod=marker