-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
103 lines (83 loc) · 3.2 KB
/
app.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
from chalice import Chalice
from bs4 import BeautifulSoup
import requests
from datetime import datetime, timedelta, date
from dateutil.relativedelta import relativedelta
from icalendar import Calendar, Event
def _clean_string(string):
return (
string
.replace('Presenter: ', '')
.replace('Location: ', '')
.replace('Additional Info: ', '')
.replace('Title: ', '')
)
def _list_events(year, month, html):
soup = BeautifulSoup(html, 'html.parser')
for day in soup.find_all(class_='event_day'):
day_number = int(day.find('div').string)
loc = day.find(class_='location').string
start = None
# gonna try to see if the last thing in the location is a time
maybe_start = loc.split(',')[-1].strip()
try:
# TODO consider removing time from location string
if len(maybe_start) == 5:
# WOW total HACK
maybe_start += 'pm'
start = datetime.strptime(maybe_start, '%I:%M%p')
except:
pass
if start:
# add in the year, month, day from above
start = start.replace(year=year, month=month, day=day_number)
end = start + timedelta(minutes=60)
else:
# make it an all day event b/c we couldn't parse a time
start = date(year=year, month=month, day=day_number)
end = start
info = day.find(class_='additional_info')
# This isn't there for all things
info = info.string if info else ''
title = day.find(class_='event_title').string
presenter = day.find(class_='presenter').string
desc = ''
abstract = day.find(class_='abstract')
if abstract:
a = abstract.find('a')
desc = a['href'].split("javascript:showAbstractWindow('")[-1].split("')")[0]
yield (
# in practice, we have one event per day, so this is plenty unique
'mbc-webcal-{}-{}-{}'.format(year, month, day_number),
_clean_string(' - '.join([title, presenter, info])),
_clean_string(loc),
start,
end,
desc,
)
def mbc_to_webcal():
events_url = 'https://web.stanford.edu/group/mbc/cgi-bin/events.php'
now = datetime.now()
next_month = now + relativedelta(months=1)
cal = Calendar()
cal.add('X-WR-CALNAME', 'Stanford Center for Mind, Brain and Computation Events')
for dt in [now, next_month]:
response = requests.get(events_url, params=dict(year=dt.year, month=dt.month))
response.raise_for_status()
for (uid, summary, location, start, end, desc) in _list_events(dt.year, dt.month, response.text):
event = Event()
event.add('uid', uid),
event.add('summary', summary)
event.add('location', location)
event.add('dtstamp', start)
event.add('dtstart', start)
event.add('dtend', end)
event.add('description', desc)
cal.add_component(event)
return cal.to_ical()
app = Chalice(app_name='mbc-webcal')
@app.route('/')
def index():
return mbc_to_webcal()
if __name__ == '__main__':
print mbc_to_webcal()