-
Notifications
You must be signed in to change notification settings - Fork 0
/
cal2html.py
524 lines (484 loc) · 21.8 KB
/
cal2html.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
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
112
113
114
115
116
117
118
119
120
121
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
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
274
275
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
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
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
import re, markdown, dateutil, json
from datetime import timedelta, datetime
def yamlfile(f):
from yaml import load
try:
from yaml import CLoader as Loader
except ImportError:
from yaml import Loader
if type(f) is str:
with open(f) as stream:
data = load(stream, Loader=Loader)
else:
data = load(f, Loader=Loader)
return data
def dow(n):
"""string to int, with datetime's default 0=monday weekday numbering"""
if type(n) is int: return n
n = n.lower()
if n.startswith('mo') or n == 'm': return 0
if n.startswith('tu') or n == 't': return 1
if n.startswith('we') or n == 'w': return 2
if n.startswith('th') or n == 'h': return 3
if n.startswith('fr') or n == 'f': return 4
if n.startswith('sa') or n == 's': return 5
if n.startswith('su') or n == 'u': return 6
raise Exception("Unknown weekday: "+str(n))
def raw2cal(data, links=None):
"""Given the data from a cal.yaml, return a list of weeks,
where each week is a list of seven data,
where each day is either None or {"date":datetime.date, "events":[...]}
"""
s = data['Special Dates']['Courses begin']
beg = s
e = data['Special Dates']['Courses end']
end = e
while s.weekday() != 6: s -= timedelta(1)
e = max(e, data['meta']['final']['start'].date())
for sec, ent in data['sections'].items():
ent['days'] = [dow(dows) for dows in ent['days']]
ent.setdefault('sidx', 0)
def onday(d):
dt = datetime.fromordinal(d.toordinal())
isexam = False
ans = []
# handle metadata
if d == data['meta']['final']['start'].date():
final = data['meta']['final']
ans.append({
"title":"Final Exam",
"kind":"exam",
"from":final['start'],
"to":final['start'] + timedelta(0,60*final['duration']),
"where":final['room']
})
for k,v in data['Special Dates'].items():
if (v['start'] > d or v['end'] < d) if type(v) is dict else d not in v if type(v) is list else v != d:
continue # does not apply
if 'recess' in k or 'Reading' in k or 'break' in k:
return ans # no classes
if 'exam' in k.lower() or 'test' in k.lower() or 'midterm' in k.lower():
isexam = True
else:
ans.append({
"title":k,
"kind":"special",
"day":d
})
if d >= beg and d <= end:
# handle sections
for sec, ent in data['sections'].items():
if d.weekday() not in ent['days']: continue
if isexam and any((
data['meta'].get('lecture exam') == (ent['type'] == 'lecture'),
ent.get('exams')
)):
ans.append({
'section':sec,
'title':'Exam',
"kind":'exam',
"from":dt + timedelta(0,ent['start']),
"to":dt + timedelta(0,ent['start'] + 60*ent['duration']),
"where":ent['room']
})
elif ent['type']+'s' not in data or len(data[ent['type']+'s']) <= ent['sidx']:
ans.append({
'section':sec,
'title':ent['type'],
"kind":ent['type'],
"from":dt + timedelta(0,ent['start']),
"to":dt + timedelta(0,ent['start'] + 60*ent['duration']),
"where":ent['room']
})
else:
ans.append({
'section':sec,
'title':data[ent['type']+'s'][ent['sidx']] or '',
"kind":ent['type'],
"from":dt + timedelta(0,ent['start']),
"to":dt + timedelta(0,ent['start'] + 60*ent['duration']),
"where":ent['room']
})
for subtitle in (ans[-1]['title'] if type(ans[-1]['title']) is list else [ans[-1]['title']]):
if subtitle in data['reading']:
tmp = data['reading'][subtitle]
if type(tmp) is not list: tmp = [tmp]
if 'reading' in ans[-1]:
ans[-1]['reading'].extend(tmp)
else:
ans[-1]['reading'] = tmp[:]
ent['sidx'] += 1
# handle separate links file
if links and d in links and ent['type'] == 'lecture':
for f in links[d].get('files',[]):
n = os.path.basename(f)
n = n[n.find('-')+1:]
ans[-1].setdefault('reading',[]).append({'txt':n,'lnk':f})
if 'video' in links[d]: ans[-1]['video'] = links[d]['video']
if 'audio' in links[d]: ans[-1]['audio'] = links[d]['audio']
# handle office hours
if data.get('office hours',{}).get('.begin', d) <= d:
## find
oh = {}
for kind,meta in data.get('office hours',{}).items():
if kind[0] == '.': continue
for staff,det in meta.items():
if staff == 'where': continue
for ent in det['when']:
if ((('dow' in ent and d.weekday() == dow(ent['dow']))
or ('date' in ent and d == ent['date']))
and d not in ent.get('except',[])
):
if 'where' in det:
oh.setdefault(staff+' OH ('+det['where']+')',{
'where':det['where'],
'when':[]
})['when'].append((ent['start'],ent['end']))
else:
oh.setdefault(kind+' OH ('+meta['where']+')',{
'where':meta['where'],
'when':[]
})['when'].append((ent['start'],ent['end']))
## combine
for k in oh:
oh[k]['when'].sort()
tmp = [oh[k]['when'][0]]
for s,e in oh[k]['when'][1:]:
if s <= tmp[-1][1]: tmp[-1] = (tmp[-1][0], e)
else: tmp.append((s,e))
oh[k]['when'] = tmp
## add to events
for k in oh:
for s,e in oh[k]['when']:
ans.append({
'title':k[:k.find(' (')] if ' (' in k else k,
'kind':'oh',
'from':dt + timedelta(0,s),
'to':dt + timedelta(0,e),
'where':oh[k]['where'],
})
# handle assignments
for task,ent in data['assignments'].items():
if task[0] == '.': continue
if 'due' not in ent: continue
if ent['due'].date() != d: continue
group = ent.get('group', re.match('^[A-Za-z]*',task).group(0))
tmp = dict(data['assignments'].get('.groups',{}).get(group,{}))
tmp.update(ent)
ent = tmp
ans.append({
'title':ent.get('title', task),
'kind':'assignment',
'group':group,
'from':ent['due']-timedelta(0,900),
'to':ent['due'],
'slug':task,
})
if 'hide' in ent: ans[-1]['hide'] = ent['hide']
if 'link' in ent: ans[-1]['link'] = ent['link']
return ans
ans = []
while s <= e:
if s.weekday() == 6: ans.append([])
events = onday(s)
if len(events):
ans[-1].append({'date':s,'events':events})
else:
ans[-1].append(None)
s += timedelta(1)
return ans
def cal2html(cal):
"""Uses tables with tr for week and td for day"""
ans = ['<table id="schedule" class="calendar">']
for week in cal:
ans.append('<tr class="week">')
for day in week:
if day is not None and not all(_.get('kind') == 'oh' for _ in day['events']):
ans.append('<td class="day" date="{}">'.format(day['date'].strftime('%Y-%m-%d')))
ans.append('<div class="wrapper">')
ans.append('<span class="date w{1}">{0}</span>'.format(day['date'].strftime('%d %b').strip('0'), day['date'].strftime('%w')))
ans.append('<div class="events">')
for e in day['events']:
if e.get('kind') == 'oh': continue
if e.get('hide'): continue
classes = [e[k] for k in ('section','kind','group') if k in e]
title = e.get('title','TBA')
if type(title) is list: title = ' <small>and</small> '.join(title)
more = []
if 'link' in e:
title = '<a target="_blank" href="{}">{}</a>'.format(e['link'], title)
for media in ('video', 'audio'):
if media in e:
more.append('<a target="_blank" href="{}">{}{}</a>'.format(
e[media],
media,
e[media][e[media].rfind('.'):]
))
for reading in e.get('reading',[]):
if type(reading) is str:
more.append(reading)
else:
more.append('<a target="_blank" href="{}">{}</a>'.format(reading['lnk'], reading['txt']))
if more:
ans.append('<details class="{}">'.format(' '.join(classes)))
ans.append('<summary>{}</summary>'.format(title))
ans.append(' <small>and</small> '.join(more))
ans.append('</details>')
else:
ans.append('<div class="{}">{}</div>'.format(' '.join(classes), title))
ans.append('</div>')
ans.append('</div>')
ans.append('</td>')
else:
ans.append('<td class="day" />')
ans.append('</tr>')
ans.append('</table>')
external = '<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em"><path fill="#fff" stroke="#36c" d="M1.5 4.518h5.982V10.5H1.5z"/><path fill="#36c" d="M5.765 1H11v5.39L9.427 7.937l-1.31-1.31L5.393 9.35l-2.69-2.688 2.81-2.808L4.2 2.544z"/><path fill="#fff" d="M9.995 2.004l.022 4.885L8.2 5.07 5.32 7.95 4.09 6.723l2.882-2.88-1.85-1.852z"/></svg>'
return re.sub(r'(<a[^>]*href="[^"]*//[^"]*"[^<]*)</a>', r'\1'+external+'</a>', ''.join(ans))
def cal2html2(cal):
"""Uses divs only, with no week-level divs"""
global vidlist
vidlist = {}
ans = ['<div id="schedule" class="calendar">']
ldat = None
for week in cal:
newweek = True
for day in week:
if day is not None and not all(_.get('kind') == 'oh' for _ in day['events']):
ldat = day['date']
ans.append('<div class="day {}" date="{}">'.format(day['date'].strftime('%a') + (' newweek' if newweek else ''), day['date'].strftime('%Y-%m-%d')))
newweek = False
ans.append('<span class="date w{1}">{0}</span>'.format(day['date'].strftime('%d %b').strip('0'), day['date'].strftime('%w')))
ans.append('<div class="events">')
for e in day['events']:
if e.get('kind') == 'oh': continue
if e.get('hide'): continue
classes = [e[k] for k in ('section','kind','group') if k in e]
title = e.get('title','TBA')
if type(title) is list: title = ' <small>and</small> '.join(title)
more = []
if 'link' in e:
title = '<a target="_blank" href="{}">{}</a>'.format(e['link'], title)
for media in ('video', 'audio'):
if media in e:
more.append('<a target="_blank" href="{}">{}{}</a>'.format(
e[media],
media,
e[media][e[media].rfind('.'):]
))
for reading in e.get('reading',[]):
if type(reading) is str:
more.append(reading)
else:
more.append('<a target="_blank" href="{}">{}</a>'.format(reading['lnk'], reading['txt']))
if more:
ans.append('<details class="{}">'.format(' '.join(classes)))
ans.append('<summary>{}</summary>'.format(title))
ans.append(' <small>and</small> '.join(more))
ans.append('</details>')
else:
ans.append('<div class="{}">{}</div>'.format(' '.join(classes), title))
if 'video' in e:
vidlist[day['date']] = (title, e['video'])
ans.append('</div>')
ans.append('</div>')
elif day is None and ldat is not None:
ldat += timedelta(1)
ans.append('<div class="empty day {}" date="{}"></div>'.format(ldat.strftime('%a') + (' newweek' if newweek else ''), ldat.strftime('%Y-%m-%d')))
ans.append('</div>')
external = '<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em"><path fill="#fff" stroke="#36c" d="M1.5 4.518h5.982V10.5H1.5z"/><path fill="#36c" d="M5.765 1H11v5.39L9.427 7.937l-1.31-1.31L5.393 9.35l-2.69-2.688 2.81-2.808L4.2 2.544z"/><path fill="#fff" d="M9.995 2.004l.022 4.885L8.2 5.07 5.32 7.95 4.09 6.723l2.882-2.88-1.85-1.852z"/></svg>'
return re.sub(r'(<a[^>]*href="[^"]*//[^"]*"[^<]*)</a>', r'\1'+external+'</a>', ''.join(ans))
def cal2fullcal(cal, keep=lambda x:True):
"""see https://fullcalendar.io/docs/event-object"""
ans = []
for week in cal:
for day in week:
if day is not None:
for event in day['events']:
if event.get('hide'): continue
if keep(event):
ans.append({
'id':'evt'+str(len(ans)),
'start':event['from'].strftime('%Y-%m-%dT%H:%M:%S'),
'end':event['to'].strftime('%Y-%m-%dT%H:%M:%S'),
'title':event['title'],
'classNames':['cal-'+event['kind']],
'editable':False,
'location':event['where'],
})
if 'link' in event: ans[-1]['url'] = event['link']
ans.sort(key=lambda x:x['start'])
return ans
def cal2ical(cal, course, home, tz=None, sections=None, stamp=None):
if tz is None: tz = 'America/New_York'
now = datetime.utcnow().strftime('%Y%m%dT%H%M%S')
ans = ['''BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//University of Virginia//{0}//EN
CALSCALE:GREGORIAN
NAME:{0}'''.format(course)]
def icescape(s):
s = s.replace('"', '').replace(':', '')
s = s.replace('\\', '\\\\')
s = s.replace('\n', '\\n')
s = s.replace(r',', r'\,')
s = s.replace(r',', r'\;')
return s
def fixlinks(l):
for i in range(len(l)):
l[i] = l[i].replace('<//','<https://')
l[i] = re.sub(r'<([^><:]*)>', r'<{}\1>'.format(home.replace('\\','\\\\')), l[i])
def encode(event):
details = []
if 'link' in event: details.append('see <' + event.get('link')+'>')
if 'details' in event: details.append(event.get('details'))
if 'reading' in event:
for r in event['reading']:
if type(r) is str: details.append(r)
else: details.append('{txt} <{lnk}>'.format(**r))
for media in ('video', 'audio'):
if media in event:
details.append('{}: <{}>'.format(media, event[media]))
if 'day' in event:
dts = ':{}'.format(event['day'].strftime('%Y%m%d'))
dte = ':{}'.format((event['day'] + timedelta(1)).strftime('%Y%m%d'))
elif 'from' in event and 'to' in event:
dts = ';TZID={}:{}'.format(tz, event['from'].strftime('%Y%m%dT%H%M%S'))
dte = ';TZID={}:{}'.format(tz, event['to'].strftime('%Y%m%dT%H%M%S'))
else:
raise Exception("Event without time: "+str(event))
title = event.get('title','TBA')
if type(title) is list: title = ' and '.join(title)
if 'section' in event: title = event['section']+' -- ' + title
elif 'group' in event and event['group'] not in title:
title = event['group']+' '+title
fixlinks(details)
return '''BEGIN:VEVENT
SUMMARY:{title}
DESCRIPTION:{notes}{location}
DTSTART{dts}
DTEND{dte}
DTSTAMP:{now}Z
UID:{uid}@{course}.cs.virginia.edu
END:VEVENT'''.format(
title=title, dts=dts, dte=dte, course=course, now=now,
notes=icescape('\n'.join(details)),
location='' if 'where' not in event else '\nLOCATION:{}'.format(event['where']),
uid='{}-{}'.format(dts,title),
)
for week in cal:
for day in week:
if day:
for event in day['events']:
if event.get('hide'): continue
if 'section' in event and sections and event['section'] not in sections: continue
ans.append(encode(event))
ans.append('END:VCALENDAR\r\n')
return '\r\n'.join(_.replace('\n','\r\n') for _ in ans)
def slug2asgn(slug, group, raw):
ans = {}
ans.update(raw['assignments'].get('.groups').get(group,{}))
ans.update(raw['assignments'][slug])
return ans
def cal2assigments(cal,raw):
ans = {}
for week in cal:
for day in week:
if day is not None:
for event in day['events']:
if event.get('kind') == 'assignment':
s = event['slug']
g = event['group']
dat = slug2asgn(s,g,raw)
dat['group'] = g
ans[s] = dict(**dat)
return ans
def coursegrade_json(data):
groups = data['assignments'].get('.groups', {})
weights, drops, inc, exc = {}, {}, {}, {}
for k,v in groups.items():
if 'portion' in v:
weights[k] = v['portion']
else:
weights[k] = 0
if type(weights[k]) is str:
try:
weights[k] = eval(weights[k].replace('%','/100'))
except: pass
if 'drop' in v:
drops[k] = v['drop']
if 'include' in v:
inc[k] = v['include']
if 'exclude' in v:
exc[k] = v['exclude']
for k,v in drops.items():
if type(v) is str:
v = eval(v.replace('%','/100'))
if v < 1:
cnt = 0
for k,v in assignments_json(data).items():
if v.get('group','') == k: cnt += 1
v *= cnt
drops[k] = int(round(v))
return {'letters':[
# {'A+':0.98},
{'A' :0.93},
{'A-':0.90},
{'B+':0.86},
{'B' :0.83},
{'B-':0.80},
{'C+':0.76},
{'C' :0.73},
{'C-':0.70},
{'D+':0.66},
{'D' :0.63},
{'D-':0.60},
{'F' :0.00},
],'weights':weights,'drops':drops,'includes':inc,'excludes':exc}
if __name__ == '__main__':
import os, os.path
here = os.path.realpath(os.path.dirname(__file__))
os.chdir(here)
course = os.path.basename(here)
import json, sys, yaml
raw = yamlfile('cal.yaml')
links = yamlfile('links.yaml') if os.path.exists('links.yaml') else {}
cal = raw2cal(raw, links)
with open('markdown/schedule-old.html', 'w') as fh:
fh.write(cal2html(cal))
with open('markdown/schedule.html', 'w') as fh:
fh.write(cal2html2(cal))
with open('markdown/cal.ics', 'w') as fh:
fh.write(cal2ical(cal, course, raw['meta']['home'], tz=raw['meta']['timezone']))
import pjson
with open('markdown/cal-oh.js', 'w') as fh:
fh.write('oh_feed = ')
fh.write(pjson.prettyjson(cal2fullcal(cal, keep=lambda x : x['kind'] == 'oh')))
with open('assignments.json', 'w') as fh:
print(pjson.prettyjson(cal2assigments(cal, raw)), file=fh)
with open('coursegrade.json', 'w') as f:
f.write(pjson.prettyjson(coursegrade_json(raw), maxinline=16))
with open('markdown/player.md', 'w') as f:
f.write('''---
title: Video Player
...
<div id="playhere">Missing video name</div>
Playback speed: <input type="text" id="speed" value="1.0" oninput="respeed()"/>
<script type="text/javascript">
function loadVid(vid) {
document.getElementById('playhere').innerHTML = `
<video controls preload="metadata" style="max-width:100%">
<source src="${vid}" type="video/webm">
</video>
`;
}
function respeed() {
let vid = document.querySelector('video')
if (vid) vid.playbackRate = document.querySelector('#speed').value
}
</script>
''')
for d,(t,v) in vidlist.items():
f.write('- {}: {} <a onclick="loadVid(\'{}\')">play recording</a> or [download webm]({})\n'.format(
d.strftime('%a %e %b'), t, v, v,
))