-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
57 lines (42 loc) · 1.56 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
import os
from cs50 import SQL
from flask import Flask, flash, jsonify, redirect, render_template, request, session
# Configure application
app = Flask(__name__)
# Ensure templates are auto-reloaded
app.config["TEMPLATES_AUTO_RELOAD"] = True
# Configure CS50 Library to use SQLite database
db = SQL("sqlite:///birthdays.db")
MONTHS = [month for month in range(1,13)]
DAYS = [day for day in range(1,32)]
@app.after_request
def after_request(response):
"""Ensure responses aren't cached"""
response.headers["Cache-Control"] = "no-cache, no-store, must-revalidate"
response.headers["Expires"] = 0
response.headers["Pragma"] = "no-cache"
return response
@app.route("/", methods=["GET", "POST"])
def index():
# POST
if request.method == "POST":
# validate submission of name, month, day
name = request.form.get("name")
month = request.form.get("month")
day = request.form.get("day")
if name and (int(month) in MONTHS) and (int(day) in DAYS):
# Add the user's entry into the database
db.execute("INSERT INTO birthdays (name, month, day) VALUES (?, ?, ?)", name, month, day)
return redirect("/")
# GET
else:
# Display the entries in the database on index.html
birthdays = db.execute("SELECT * FROM birthdays")
return render_template("index.html", birthdays=birthdays)
# REMOVE
@app.route("/remove", methods=["POST"])
def remove():
id = request.form.get("id")
if id:
db.execute("DELETE FROM birthdays WHERE id=?", id)
return redirect("/")