-
Notifications
You must be signed in to change notification settings - Fork 1
/
sol-app.py
124 lines (96 loc) · 3.18 KB
/
sol-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
from flask import Flask, render_template, request, jsonify
from flask_sqlalchemy import SQLAlchemy
from datetime import datetime
# Initialize the Flask application
app = Flask(__name__)
app.config["SQLALCHEMY_DATABASE_URI"] = "sqlite:///villain.db"
db = SQLAlchemy(app)
class Villain(db.Model):
id = db.Column(db.Integer, primary_key=True)
name = db.Column(db.String(80), unique=True, nullable=False)
description = db.Column(db.String(120), nullable=False)
interests = db.Column(db.String(250), nullable=False)
url = db.Column(db.String(250), nullable=False)
date_added = db.Column(db.DateTime,
nullable=False,
default=datetime.utcnow)
def __repr__(self):
return "<Villain " + self.name + ">"
with app.app_context():
db.create_all()
db.session.commit()
#### Serving Static Files
@app.route("/")
def villain_cards():
return app.send_static_file("villain.html")
@app.route("/add")
def add():
return app.send_static_file("addvillain.html")
@app.route("/delete")
def delete():
return app.send_static_file("deletevillain.html")
####
@app.route("/api/villains/", methods=["GET"])
def get_villains():
villains = Villain.query.all()
data = []
for villain in villains:
data.append({
"name": villain.name,
"description": villain.description,
"interests": villain.interests,
"url": villain.url,
"date_added": villain.date_added
})
return jsonify(data)
@app.route("/api/villains/add", methods=["POST"])
def add_villain():
errors = []
name = request.form.get("name", "")
if not name:
errors.append("Oops! Looks like you forgot a name!")
description = request.form.get("description", "")
if not description:
errors.append("Oops! Looks like you forgot a description!")
interests = request.form.get("interests", "")
if not interests:
errors.append("Oops! Looks like you forgot some interests!")
url = request.form.get("url", "")
if not url:
errors.append("Oops! Looks like you forgot an image!")
villain = Villain.query.filter_by(name=name).first()
if villain:
errors.append("Oops! A villain with that name already exists!")
if errors:
return jsonify({"errors": errors})
else:
new_villain = Villain(name=name,
description=description,
interests=interests,
url=url)
db.session.add(new_villain)
db.session.commit()
return jsonify({"status": "success"})
@app.route("/api/villains/delete", methods=["POST"])
def delete_villain():
name = request.form.get("name", "")
villain = Villain.query.filter_by(name=name).first()
if villain:
db.session.delete(villain)
db.session.commit()
return jsonify({"status": "success"})
else:
return jsonify(
{"errors": ["Oops! A villain with that name doesn't exist!"]})
@app.route("/api/", methods=["GET"])
def get_endpoints():
endpoints = {
"/api/villains/": "GET - Retrieves all villain data from the database",
"/api/villains/delete":
"POST - Deletes a single villain if the villain exists in the database",
"/api/villains/add": "POST - Adds a single villain to the database"
}
return jsonify(endpoints)
# Run the flask server
if __name__ == "__main__":
app.run()