-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
495 lines (436 loc) · 15.3 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
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
import datetime
import json
import os
from datetime import date
from secrets import token_urlsafe
from typing import Optional
from urllib.parse import urlencode
import requests
from flask import Flask, render_template, request, url_for, flash, redirect, session
from flask_login import (
LoginManager,
current_user,
login_user,
logout_user,
login_required,
)
from sqlalchemy import select
from werkzeug.exceptions import abort
from config import get_secret, get_oauth2_providers
from models import db, init_db, User, Entry, Tag
app = Flask(__name__)
app.config["SECRET_KEY"] = get_secret("FLASK_SECRET_KEY")
app.config["OAUTH2_PROVIDERS"] = get_oauth2_providers()
app.config["SQLALCHEMY_DATABASE_URI"] = get_secret("DATABASE_URL")
if app.config["SQLALCHEMY_DATABASE_URI"][:11] == "postgres://":
app.config["SQLALCHEMY_DATABASE_URI"] = (
"postgresql://" + app.config["SQLALCHEMY_DATABASE_URI"][11:]
)
app.config["SQLALCHEMY_TRACK_MODIFICATIONS"] = False
login_manager = LoginManager()
login_manager.init_app(app)
db.init_app(app)
if os.getenv("INIT_DB") is not None:
init_db(app)
def get_by_id_helper(model: db.Model, id: str, check_user=True) -> db.Model:
result = db.session.execute(select(model).where(model.id == id)).fetchone()
if (
result is None
or len(result) == 0
or result[0] is None
or (check_user and result[0].user_id != current_user.id)
):
abort(404)
return result[0]
def get_entry_by_id(id: str) -> Entry:
return get_by_id_helper(Entry, id)
def get_tag_by_id(id: str) -> Tag:
return get_by_id_helper(Tag, id)
@login_manager.user_loader
def get_user_by_id(id: str) -> User:
return get_by_id_helper(User, id, check_user=False)
def get_create_user_by_oauth_id(oauth_id: str) -> tuple[User, bool]:
result = db.session.execute(
select(User).where(User.oauth_id == oauth_id)
).fetchone()
if result is None or len(result) == 0 or result[0] is None:
db.session.add(
User(
oauth_id=oauth_id, birth=date.fromisoformat("2000-01-01"), exp_years=80
)
)
db.session.commit()
result = db.session.execute(
select(User).where(User.oauth_id == oauth_id)
).fetchone()
return result[0], True
else:
return result[0], False
def generate_all_entries(
db_entries: list[Entry], birth: date, exp_years: int
) -> list[tuple[date, bool, Optional[Entry]]]:
db_entries_dict = {x.start: x for x in db_entries}
start = birth - datetime.timedelta(days=birth.weekday())
if (
start.month == 2 and start.day == 29
): # If leap day but end year is not leap year
try:
end = start.replace(year=start.year + exp_years)
except ValueError:
end = start.replace(year=start.year + exp_years, month=3, day=1)
else:
end = start.replace(year=start.year + exp_years)
all_entries = []
curr = start
while curr <= end:
is_past = curr < datetime.datetime.now().date()
entry = db_entries_dict[curr] if curr in db_entries_dict else None
all_entries.append(
(curr, is_past, entry)
) # adds sqlite3.Row objects if entry exists
curr += datetime.timedelta(weeks=1)
return all_entries
@app.route("/")
def index() -> str:
if current_user.is_anonymous:
return render_template("index_logged_out.html")
else:
all_entries = generate_all_entries(
db_entries=current_user.entries,
birth=current_user.birth,
exp_years=current_user.exp_years,
)
return render_template(
"index.html",
entries=all_entries,
birth_readable=current_user.birth.strftime("%d %B, %Y"),
exp_years=current_user.exp_years,
)
@app.route("/entry/<int:entry_id>")
@login_required
def entry(entry_id: str) -> str:
return render_template("entry.html", entry=get_entry_by_id(entry_id))
def entry_helper(edit: bool, entry: Optional[Entry] = None):
if request.method == "POST":
start = request.form["start"]
tag_names = request.form.getlist("tags[]")
note = request.form["note"]
if len(tag_names) == 0:
flash("At least one tag must be selected!", category="danger")
tags = None
else:
tags = get_add_tags(
tag_names
) # Gets tags by name or adds new tags if not existing
start_valid = valid_date(start, only_monday=True, name="Start date")
if start_valid and tags:
if not edit: # Check if adding an entry with a date that already exists
result = db.session.execute(
select(Entry).where(
(Entry.user_id == current_user.id) & (Entry.start == start)
)
).fetchone()
if result is not None and len(result) > 0: # Entry with date exists
entry = result[0]
edit = True
flash(
f"Entry with specified date already exists. Edited existing entry for {start}!",
category="warning",
)
if edit:
entry.start = date.fromisoformat(start)
entry.tags = tags
entry.note = note
flash(f"Successfully edited entry for {start}", category="success")
else: # Add new entry
db.session.add(
Entry(
user_id=current_user.id,
start=date.fromisoformat(start),
tags=tags,
note=note,
)
)
flash(f"Successfully added entry for {start}", category="success")
db.session.commit()
return redirect(url_for("index"))
if edit:
existing_entry_dates = json.dumps(
[
x.start.isoformat()
for x in current_user.entries
if x.start != entry.start
]
)
return render_template(
"edit.html",
tags=current_user.tags,
disabled_dates=existing_entry_dates,
entry=entry,
)
else: # Add new entry
existing_entry_dates = json.dumps(
[x.start.isoformat() for x in current_user.entries]
)
date_today = datetime.datetime.now().date()
return render_template(
"add.html",
tags=current_user.tags,
disabled_dates=existing_entry_dates,
default_date=date_today - datetime.timedelta(days=date_today.weekday()),
)
@app.route("/entry/add", methods=("GET", "POST"))
@login_required
def add_entry():
return entry_helper(edit=False)
@app.route("/entry/<int:entry_id>/edit", methods=("GET", "POST"))
@login_required
def edit_entry(entry_id: str):
return entry_helper(edit=True, entry=get_entry_by_id(entry_id))
@app.route("/entry/<int:entry_id>/delete", methods=("POST",))
@login_required
def delete_entry(entry_id: str):
entry = get_entry_by_id(entry_id)
entry_start = entry.start
db.session.delete(entry)
db.session.commit()
flash(
f"Entry starting on {entry_start} was successfully deleted!", category="success"
)
return redirect(url_for("index"))
@app.route("/user/<int:user_id>/delete", methods=("POST",))
@login_required
def delete_user(user_id: str):
if user_id != current_user.id:
abort(404)
User.query.filter(User.id == user_id).delete()
db.session.commit()
logout_user()
flash(
f"Account and all associated entries were successfully deleted!",
category="success",
)
return redirect(url_for("index"))
def valid_tag_name_color(name: str, color: str) -> bool:
valid = True
if name is None:
flash("Tag name is required!", category="danger")
valid = False
if color is None:
flash("Color choice is required!", category="danger")
valid = False
return valid
@app.route("/tags")
@login_required
def tags() -> str:
return render_template(
"tags.html", tags=sorted(current_user.tags, key=lambda t: t.created)
)
def add_tag_helper(name: str, color: str = "0000FFFF", return_tag=False):
valid = valid_tag_name_color(name, color)
if (
db.session.execute(
select(Tag.id).where((Tag.name == name) & (Tag.user_id == current_user.id))
).fetchone()
is not None
):
flash(
f"Existing tag with name {name} already exists; cannot add duplicate tag!",
category="danger",
)
valid = False
if valid:
new_tag = Tag(
user_id=current_user.id,
name=name,
color=color,
)
db.session.add(new_tag)
db.session.commit()
flash(f"Added tag f{name}!", category="success")
if return_tag:
db.session.refresh(new_tag)
return new_tag
@app.route("/tag/add", methods=("POST",))
@login_required
def add_tag():
add_tag_helper(request.form["name"], request.form["color"], return_tag=False)
return redirect(url_for("tags"))
@app.route("/tag/<int:tag_id>/edit", methods=("POST",))
@login_required
def edit_tag(tag_id: str):
tag = get_tag_by_id(tag_id)
valid = valid_tag_name_color(request.form["name"], request.form["color"])
if (
db.session.execute(
select(Tag.id).where(
(Tag.name == request.form["name"])
& (Tag.user_id == current_user.id)
& (Tag.id != tag.id)
)
).fetchone()
is not None
):
flash(
f"Existing tag with name {request.form['name']} already exists; cannot edit tag!",
category="danger",
)
valid = False
if valid:
tag.name = request.form["name"]
tag.color = request.form["color"]
db.session.commit()
return redirect(url_for("tags"))
@app.route("/tag/<int:tag_id>/delete", methods=("POST",))
@login_required
def delete_tag(tag_id: str):
tag = get_tag_by_id(tag_id)
tag_name = tag.name
db.session.delete(tag)
db.session.commit()
flash(f"Tag {tag_name} was successfully deleted!", category="success")
return redirect(url_for("tags"))
def valid_date(date: str, only_monday=False, name="Date") -> bool:
if not date:
flash(f"{name} is required!", category="danger")
return False
try:
date = datetime.datetime.fromisoformat(date)
if only_monday and date.weekday() != 0:
flash(f"{name} must be a Monday (start of week)", category="danger")
return False
else:
return True
except:
flash(f"{name} is required to be in YYYY-MM-DD format", category="danger")
return False
def get_add_tags(tag_names: list[str]) -> list[Tag]:
tags_db = []
for t in tag_names:
result = db.session.execute(
select(Tag).where((Tag.name == t) & (Tag.user_id == current_user.id))
).fetchone()
if result is not None:
tags_db.append(result[0])
else:
tags_db.append(add_tag_helper(t, return_tag=True))
return tags_db
def valid_exp_years(exp_years: str) -> bool:
if not exp_years:
flash("Life expectancy is required!", category="danger")
return False
if not exp_years.isdigit():
flash(
"Life expectancy is required to be a non-negative integer value",
category="danger",
)
return False
return True
@app.route("/settings", methods=("GET", "POST"))
@login_required
def settings():
if request.method == "POST":
birth = request.form["birth"]
exp_years = request.form["exp_years"]
valid_birth, valid_years = valid_date(
birth, name="Date of birth"
), valid_exp_years(exp_years)
if valid_birth and valid_years:
user = db.session.execute(
select(User).where(User.id == current_user.id)
).fetchone()[0]
user.birth = date.fromisoformat(birth)
user.exp_years = exp_years
db.session.commit()
flash("Settings were successfully updated!", category="success")
return redirect(url_for("settings"))
return render_template(
"settings.html", birth=current_user.birth, exp_years=current_user.exp_years
)
@app.route("/login")
def login() -> str:
return render_template("login.html")
@app.route("/logout")
@login_required
def logout():
logout_user()
flash("Successfully signed out!", category="success")
return redirect(url_for("index"))
@app.route("/authorize/<provider>")
def oauth2_authorize(provider):
if current_user.is_authenticated:
return redirect(url_for("index"))
if provider not in app.config["OAUTH2_PROVIDERS"]:
abort(404)
else:
provider_info = app.config["OAUTH2_PROVIDERS"][provider]
session["oauth2_state"] = token_urlsafe(16)
query = urlencode(
{
"client_id": provider_info["client_id"],
"redirect_uri": url_for(
"oauth2_callback", provider=provider, _external=True
),
"response_type": "code",
"scope": " ".join(provider_info["scopes"]),
"state": session["oauth2_state"],
}
)
return redirect(provider_info["authorize_url"] + "?" + query)
@app.route("/callback/<provider>")
def oauth2_callback(provider):
if current_user.is_authenticated:
return redirect(url_for("index"))
if provider not in app.config["OAUTH2_PROVIDERS"]:
abort(404)
else:
provider_info = app.config["OAUTH2_PROVIDERS"][provider]
if "error" in request.args:
flash(request.args.items(), category="danger")
return redirect(url_for("index"))
if request.args["state"] != session.get("oauth2_state"):
abort(401)
if "code" not in request.args:
abort(401)
response = requests.post(
provider_info["token_url"],
data={
"client_id": provider_info["client_id"],
"client_secret": provider_info["client_secret"],
"code": request.args["code"],
"grant_type": "authorization_code",
"redirect_uri": url_for(
"oauth2_callback", provider=provider, _external=True
),
},
headers={"Accept": "application/json"},
)
if response.status_code != 200:
abort(401)
oauth2_token = response.json()["access_token"]
if not oauth2_token:
abort(401)
response = requests.get(
provider_info["userinfo"]["url"],
headers={
"Authorization": "Bearer " + oauth2_token,
"Accept": "application/json",
},
)
if response.status_code != 200:
abort(401)
# Get or add user
oauth_id = provider_info["userinfo"]["oauth_id"](response)
user, is_new_user = get_create_user_by_oauth_id(oauth_id)
login_user(user)
if is_new_user:
flash(
"Welcome to your new account. Please set your date of birth and life expectancy here.",
category="primary",
)
return redirect(url_for("settings"))
else:
flash("You have been signed in. Welcome back!", category="success")
return redirect(url_for("index"))
if __name__ == "__main__":
app.run()