-
Notifications
You must be signed in to change notification settings - Fork 47
/
app.py
181 lines (134 loc) · 5.22 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
from flask import (
Flask, redirect, render_template, request, flash, jsonify, send_file
)
from contacts_model import Contact, Archiver
import time
Contact.load_db()
# ========================================================
# Flask App
# ========================================================
app = Flask(__name__)
app.secret_key = b'hypermedia rocks'
@app.route("/")
def index():
return redirect("/contacts")
@app.route("/contacts")
def contacts():
search = request.args.get("q")
page = int(request.args.get("page", 1))
if search is not None:
contacts_set = Contact.search(search)
if request.headers.get('HX-Trigger') == 'search':
return render_template("rows.html", contacts=contacts_set)
else:
contacts_set = Contact.all()
return render_template("index.html", contacts=contacts_set, archiver=Archiver.get())
@app.route("/contacts/archive", methods=["POST"])
def start_archive():
archiver = Archiver.get()
archiver.run()
return render_template("archive_ui.html", archiver=archiver)
@app.route("/contacts/archive", methods=["GET"])
def archive_status():
archiver = Archiver.get()
return render_template("archive_ui.html", archiver=archiver)
@app.route("/contacts/archive/file", methods=["GET"])
def archive_content():
archiver = Archiver.get()
return send_file(archiver.archive_file(), "archive.json", as_attachment=True)
@app.route("/contacts/archive", methods=["DELETE"])
def reset_archive():
archiver = Archiver.get()
archiver.reset()
return render_template("archive_ui.html", archiver=archiver)
@app.route("/contacts/count")
def contacts_count():
count = Contact.count()
return "(" + str(count) + " total Contacts)"
@app.route("/contacts/new", methods=['GET'])
def contacts_new_get():
return render_template("new.html", contact=Contact())
@app.route("/contacts/new", methods=['POST'])
def contacts_new():
c = Contact(None, request.form['first_name'], request.form['last_name'], request.form['phone'],
request.form['email'])
if c.save():
flash("Created New Contact!")
return redirect("/contacts")
else:
return render_template("new.html", contact=c)
@app.route("/contacts/<contact_id>")
def contacts_view(contact_id=0):
contact = Contact.find(contact_id)
return render_template("show.html", contact=contact)
@app.route("/contacts/<contact_id>/edit", methods=["GET"])
def contacts_edit_get(contact_id=0):
contact = Contact.find(contact_id)
return render_template("edit.html", contact=contact)
@app.route("/contacts/<contact_id>/edit", methods=["POST"])
def contacts_edit_post(contact_id=0):
c = Contact.find(contact_id)
c.update(request.form['first_name'], request.form['last_name'], request.form['phone'], request.form['email'])
if c.save():
flash("Updated Contact!")
return redirect("/contacts/" + str(contact_id))
else:
return render_template("edit.html", contact=c)
@app.route("/contacts/<contact_id>/email", methods=["GET"])
def contacts_email_get(contact_id=0):
c = Contact.find(contact_id)
c.email = request.args.get('email')
c.validate()
return c.errors.get('email') or ""
@app.route("/contacts/<contact_id>", methods=["DELETE"])
def contacts_delete(contact_id=0):
contact = Contact.find(contact_id)
contact.delete()
if request.headers.get('HX-Trigger') == 'delete-btn':
flash("Deleted Contact!")
return redirect("/contacts", 303)
else:
return ""
@app.route("/contacts/", methods=["DELETE"])
def contacts_delete_all():
contact_ids = list(map(int, request.form.getlist("selected_contact_ids")))
for contact_id in contact_ids:
contact = Contact.find(contact_id)
contact.delete()
flash("Deleted Contacts!")
contacts_set = Contact.all(1)
return render_template("index.html", contacts=contacts_set)
# ===========================================================
# JSON Data API
# ===========================================================
@app.route("/api/v1/contacts", methods=["GET"])
def json_contacts():
contacts_set = Contact.all()
return {"contacts": [c.__dict__ for c in contacts_set]}
@app.route("/api/v1/contacts", methods=["POST"])
def json_contacts_new():
c = Contact(None, request.form.get('first_name'), request.form.get('last_name'), request.form.get('phone'),
request.form.get('email'))
if c.save():
return c.__dict__
else:
return {"errors": c.errors}, 400
@app.route("/api/v1/contacts/<contact_id>", methods=["GET"])
def json_contacts_view(contact_id=0):
contact = Contact.find(contact_id)
return contact.__dict__
@app.route("/api/v1/contacts/<contact_id>", methods=["PUT"])
def json_contacts_edit(contact_id):
c = Contact.find(contact_id)
c.update(request.form['first_name'], request.form['last_name'], request.form['phone'], request.form['email'])
if c.save():
return c.__dict__
else:
return {"errors": c.errors}, 400
@app.route("/api/v1/contacts/<contact_id>", methods=["DELETE"])
def json_contacts_delete(contact_id=0):
contact = Contact.find(contact_id)
contact.delete()
return jsonify({"success": True})
if __name__ == "__main__":
app.run()