-
Notifications
You must be signed in to change notification settings - Fork 2
/
screen.py
executable file
·172 lines (148 loc) · 5.37 KB
/
screen.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
#!/usr/bin/env python2
# -*- coding: utf8 -*-
# from __future__ import unicode_literals
'''
This file is part of FIXME Screen Calendar.
FIXME Events is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
FIXME Events is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with FIXME Events. If not, see <http://www.gnu.org/licenses/>.
'''
from flask import Flask, render_template, request, Response, redirect, session
import requests
#import requests_cache
import icalendar
import arrow
import random
import sys
import types
import config as cfg
app = Flask(__name__)
if cfg.secret_key == '':
print('configure secret_key!')
sys.exit(0)
app.debug = True # FIXME: remove on production
app.secret_key = cfg.secret_key
#requests_cache.install_cache('cache')
#
# Functions
#
def get_recurrences(cal_name, dt_start, dt_end, evt):
rrule = evt.get('rrule')
byday = rrule.get('byday')
freq = rrule.get('freq')[0]
until = rrule.get('until')
if until is not None:
rec_end = arrow.get(until[0])
else:
rec_end = arrow.get().replace(months=+1)
events = []
while dt_start < rec_end:
events.append(get_event(cal_name, dt_start, dt_end, evt))
# Increment date
if freq == 'WEEKLY':
dt_start = dt_start.replace(days=+7)
dt_end = dt_end.replace(days=+7)
elif freq == 'MONTHLY':
dt_start = dt_start.replace(months=+1)
dt_end = dt_end.replace(months=+1)
elif freq == 'YEARLY':
dt_start = dt_start.replace(years=+1)
dt_end = dt_end.replace(years=+1)
else:
dt_start = dt_start.replace(days=+1)
dt_end = dt_end.replace(days=+1)
return events
def get_event(cal_name, dt_start, dt_end, evt):
summary = evt.get('summary')
location = evt.get('location')
description = evt.get('description')
dt_start = dt_start.to('Europe/Zurich')
dt_end = dt_end.to('Europe/Zurich')
return {
'cal': cal_name,
'name': summary,
'dow': dt_start.datetime.strftime('%A'),
's_day': dt_start.format('DD'),
's_month': dt_start.format('MMM'),
's_month_num': dt_start.format('MM'),
's_year': dt_start.format('YYYY'),
's_time': dt_start.format('HH:mm'),
'e_day': dt_end.format('DD'),
'e_month': dt_end.format('MMM'),
'e_year': dt_end.format('YYYY'),
'e_time': dt_end.format('HH:mm'),
'timestamp': dt_start.timestamp,
'location': location,
'description': description,
}
def get_calendar(url):
name = ''
events = []
cal_data = requests.get(url, headers={'User-Agent': cfg.user_agent}).content
try:
cal_obj = icalendar.Calendar.from_ical(cal_data)
cal_name = cal_obj.get('x-wr-calname')
recent = arrow.now().floor('day').replace(days=-30) # FIXME: must be yesterday ?
for e in cal_obj.walk():
if e.name != 'VEVENT':
continue
# Get dates
try:
dt_start = arrow.get(e.get('dtstart').dt)
dt_end = arrow.get(e.get('dtend').dt)
except TypeError as f:
dt_start = arrow.Arrow.fromdate(e.get('dtstart').dt)
dt_end = arrow.Arrow.fromdate(e.get('dtend').dt)
# Only future or recent events
if dt_start < recent:
continue
# Create and add event
if isinstance(e.get('rrule'), types.NoneType):
evt = get_event(cal_name, dt_start, dt_end, e)
if evt not in events:
events.append(evt)
else:
for f in get_recurrences(cal_name, dt_start, dt_end, e):
if f not in events:
events.append(f)
except IOError as e:
events.append({'name': e, 'cal': cal_name})
return events
#
# PAGES
#
@app.route('/')
def home():
# session['username'] = random.getrandbits(32)
# Get all events
events = []
for cal in cfg.calendars:
events += get_calendar(cal)
events = sorted(events, key=lambda i: i['timestamp'])
# Split according to date range
today_start = arrow.get().replace(hour=0, minute=0, second=0)
today_end = today_start.replace(days=+1)
week_end = today_start.replace(days=+7)
past_events = [x for x in events if x['timestamp'] <= today_start.timestamp]
today_events = [x for x in events if x['timestamp'] > today_start.timestamp and x['timestamp'] <= today_end.timestamp]
week_events = [x for x in events if x['timestamp'] > today_end.timestamp and x['timestamp'] <= week_end.timestamp]
future_events = [x for x in events if x['timestamp'] > week_end.timestamp]
return render_template('list.html', data={
'all_events': events,
'past_events': past_events[:3],
'today_events': today_events,
'week_events': week_events,
'future_events': future_events[:3],
})
#
# MAIN
#
if __name__ == '__main__':
app.run()