-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflask_site.py
More file actions
executable file
·110 lines (82 loc) · 2.8 KB
/
flask_site.py
File metadata and controls
executable file
·110 lines (82 loc) · 2.8 KB
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
from flask import Flask, render_template, request, url_for, flash, redirect
import sqlite3
from werkzeug.exceptions import abort
def get_db_connection():
conn = sqlite3.connect('database.db')
conn.row_factory = sqlite3.Row
return conn
def get_post(post_id):
db_connection = get_db_connection()
post = db_connection.execute('SELECT * FROM posts WHERE id = ?',
(post_id,)).fetchone()
db_connection.close()
#print(post)
if post is None:
abort(404)
return post
app = Flask(__name__)
web_host="localhost"
web_port="5001"
app.config['SECRET_KEY'] = 'harocolorado'
# Base Index
@app.route('/')
def index():
conn = get_db_connection()
posts = conn.execute('SELECT * FROM posts').fetchall()
conn.close()
return render_template('index.html', posts=posts)
# View Post by ID
@app.route('/<int:post_id>')
def post(post_id):
post = get_post(post_id)
return render_template('post.html', post=post)
# Create Post and insert into DB
@app.route('/create', methods=('GET', 'POST') )
def create():
if request.method == 'POST':
title = request.form['title']
content = request.form['content']
if not title:
flash('Title is required')
else:
conn = get_db_connection()
conn.execute('INSERT INTO posts (title, content) VALUES (?,?)',
(title, content))
conn.commit()
conn.close()
return redirect(url_for('index'))
return render_template('create.html')
# Edit Post by ID and insert to DB
@app.route('/<int:id>/edit', methods=('GET', 'POST'))
def edit(id):
post = get_post(id)
print( request.method )
if request.method == 'POST':
title = request.form['title']
content = request.form['content']
#print(title)
#print(content)
if not title:
flash('Title is required')
else:
conn = get_db_connection()
conn.execute('UPDATE posts SET title = ?, content = ? WHERE id = ?',
(title, content, id))
conn.commit()
conn.close()
#print(title)
#print(content)
return redirect( url_for('index'))
return render_template( 'edit.html', post=post)
# Delete a post
@app.route('/<int:id>/delete', methods=('POST',))
def delete(id):
post = get_post(id)
conn = get_db_connection()
conn.execute('DELETE FROM posts WHERE id = ?', (id,))
conn.commit()
conn.close()
flash('"{}" was successfully delete!',format( post['title'] ))
return redirect( url_for('index'))
if __name__ == '__main__':
app.run(host='localhost',port=web_port)