done: Blog Blueprint
This commit is contained in:
parent
0703cf5543
commit
6d4419df0d
5 changed files with 168 additions and 0 deletions
|
|
@ -37,4 +37,8 @@ def create_app(test_config=None):
|
||||||
from . import auth
|
from . import auth
|
||||||
app.register_blueprint(auth.bp)
|
app.register_blueprint(auth.bp)
|
||||||
|
|
||||||
|
from . import blog
|
||||||
|
app.register_blueprint(blog.bp)
|
||||||
|
app.add_url_rule('/', endpoint='index')
|
||||||
|
|
||||||
return app
|
return app
|
||||||
|
|
|
||||||
101
flaskr/blog.py
Normal file
101
flaskr/blog.py
Normal file
|
|
@ -0,0 +1,101 @@
|
||||||
|
from flask import (
|
||||||
|
Blueprint, flash, g, redirect, render_template, request, url_for
|
||||||
|
)
|
||||||
|
from werkzeug.exceptions import abort
|
||||||
|
|
||||||
|
from flaskr.auth import login_required
|
||||||
|
from flaskr.db import get_db
|
||||||
|
|
||||||
|
bp = Blueprint('blog', __name__)
|
||||||
|
|
||||||
|
|
||||||
|
@bp.route('/')
|
||||||
|
def index():
|
||||||
|
db = get_db()
|
||||||
|
posts = db.execute(
|
||||||
|
'SELECT p.id, title, body, created, author_id, username'
|
||||||
|
' FROM post p JOIN user u ON p.author_id = u.id'
|
||||||
|
' ORDER BY created DESC'
|
||||||
|
).fetchall()
|
||||||
|
return render_template('blog/index.html', posts=posts)
|
||||||
|
|
||||||
|
|
||||||
|
@bp.route('/create', methods=('GET', 'POST'))
|
||||||
|
@login_required
|
||||||
|
def create():
|
||||||
|
if request.method == 'POST':
|
||||||
|
title = request.form['title']
|
||||||
|
body = request.form['body']
|
||||||
|
error = None
|
||||||
|
|
||||||
|
if not title:
|
||||||
|
error = 'Title is required.'
|
||||||
|
|
||||||
|
if error is not None:
|
||||||
|
flash(error)
|
||||||
|
else:
|
||||||
|
db = get_db()
|
||||||
|
db.execute(
|
||||||
|
'INSERT INTO post (title, body, author_id)'
|
||||||
|
' VALUES (?, ?, ?)',
|
||||||
|
(title, body, g.user['id'])
|
||||||
|
)
|
||||||
|
db.commit()
|
||||||
|
return redirect(url_for('blog.index'))
|
||||||
|
|
||||||
|
return render_template('blog/create.html')
|
||||||
|
|
||||||
|
|
||||||
|
def get_post(id, check_author=True):
|
||||||
|
post = get_db().execute(
|
||||||
|
'SELECT p.id, title, body, created, author_id, username'
|
||||||
|
' FROM post p JOIN user u ON p.author_id = u.id'
|
||||||
|
' WHERE p.id = ?',
|
||||||
|
(id,)
|
||||||
|
).fetchone()
|
||||||
|
|
||||||
|
if post is None:
|
||||||
|
abort(404, f"Post id {id} doesn't exist.")
|
||||||
|
|
||||||
|
if check_author and post['author_id'] != g.user['id']:
|
||||||
|
abort(403)
|
||||||
|
|
||||||
|
return post
|
||||||
|
|
||||||
|
|
||||||
|
@bp.route('/<int:id>/update', methods=('GET', 'POST'))
|
||||||
|
@login_required
|
||||||
|
def update(id):
|
||||||
|
post = get_post(id)
|
||||||
|
|
||||||
|
if request.method == 'POST':
|
||||||
|
title = request.form['title']
|
||||||
|
body = request.form['body']
|
||||||
|
error = None
|
||||||
|
|
||||||
|
if not title:
|
||||||
|
error = 'Title is required.'
|
||||||
|
|
||||||
|
if error is not None:
|
||||||
|
flash(error)
|
||||||
|
else:
|
||||||
|
db = get_db()
|
||||||
|
db.execute(
|
||||||
|
'UPDATE post SET title = ?, body = ?'
|
||||||
|
' WHERE id = ?',
|
||||||
|
(title, body, id)
|
||||||
|
)
|
||||||
|
db.commit()
|
||||||
|
return redirect(url_for('blog.index'))
|
||||||
|
|
||||||
|
return render_template('blog/update.html', post=post)
|
||||||
|
|
||||||
|
|
||||||
|
@bp.route('/<int:id>/delete', methods=('POST',))
|
||||||
|
@login_required
|
||||||
|
def delete(id):
|
||||||
|
get_post(id)
|
||||||
|
db = get_db()
|
||||||
|
db.execute('DELETE FROM post WHERE id = ?', (id,))
|
||||||
|
db.commit()
|
||||||
|
return redirect(url_for('blog.index'))
|
||||||
15
flaskr/templates/blog/create.html
Normal file
15
flaskr/templates/blog/create.html
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
{% extends 'base.html' %}
|
||||||
|
|
||||||
|
{% block header %}
|
||||||
|
<h1>{% block title %}New Post{% endblock %}</h1>
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
<form method="post">
|
||||||
|
<label for="title">Title</label>
|
||||||
|
<input name="title" id="title" value="{{ request.form['title'] }}" required>
|
||||||
|
<label for="body">Body</label>
|
||||||
|
<textarea name="body" id="body">{{ request.form['body'] }}</textarea>
|
||||||
|
<input type="submit" value="Save">
|
||||||
|
</form>
|
||||||
|
{% endblock %}
|
||||||
28
flaskr/templates/blog/index.html
Normal file
28
flaskr/templates/blog/index.html
Normal file
|
|
@ -0,0 +1,28 @@
|
||||||
|
{% extends 'base.html' %}
|
||||||
|
|
||||||
|
{% block header %}
|
||||||
|
<h1>{% block title %}Posts{% endblock %}</h1>
|
||||||
|
{% if g.user %}
|
||||||
|
<a class="action" href="{{ url_for('blog.create') }}">New</a>
|
||||||
|
{% endif %}
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
{% for post in posts %}
|
||||||
|
<article class="post">
|
||||||
|
<header>
|
||||||
|
<div>
|
||||||
|
<h1>{{ post['title'] }}</h1>
|
||||||
|
<div class="about">by {{ post['username'] }} on {{ post['created'].strftime('%Y-%m-%d') }}</div>
|
||||||
|
</div>
|
||||||
|
{% if g.user['id'] == post['author_id'] %}
|
||||||
|
<a class="action" href="{{ url_for('blog.update', id=post['id']) }}">Edit</a>
|
||||||
|
{% endif %}
|
||||||
|
</header>
|
||||||
|
<p class="body">{{ post['body'] }}</p>
|
||||||
|
</article>
|
||||||
|
{% if not loop.last %}
|
||||||
|
<hr>
|
||||||
|
{% endif %}
|
||||||
|
{% endfor %}
|
||||||
|
{% endblock %}
|
||||||
20
flaskr/templates/blog/update.html
Normal file
20
flaskr/templates/blog/update.html
Normal file
|
|
@ -0,0 +1,20 @@
|
||||||
|
{% extends 'base.html' %}
|
||||||
|
|
||||||
|
{% block header %}
|
||||||
|
<h1>{% block title %}Edit "{{ post['title'] }}"{% endblock %}</h1>
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
<form method="post">
|
||||||
|
<label for="title">Title</label>
|
||||||
|
<input name="title" id="title"
|
||||||
|
value="{{ request.form['title'] or post['title'] }}" required>
|
||||||
|
<label for="body">Body</label>
|
||||||
|
<textarea name="body" id="body">{{ request.form['body'] or post['body'] }}</textarea>
|
||||||
|
<input type="submit" value="Save">
|
||||||
|
</form>
|
||||||
|
<hr>
|
||||||
|
<form action="{{ url_for('blog.delete', id=post['id']) }}" method="post">
|
||||||
|
<input class="danger" type="submit" value="Delete" onclick="return confirm('Are you sure?');">
|
||||||
|
</form>
|
||||||
|
{% endblock %}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue