mirror of
https://github.com/rmontanana/microblog.git
synced 2025-08-18 08:45:51 +00:00
Chapter 6
This commit is contained in:
@@ -1,18 +1,29 @@
|
||||
from datetime import datetime
|
||||
from flask import render_template, flash, redirect, url_for, request
|
||||
from flask_login import current_user, login_user, logout_user, login_required
|
||||
from werkzeug.urls import url_parse
|
||||
from app import app, db
|
||||
from app.forms import LoginForm, RegistrationForm
|
||||
from app.forms import LoginForm, RegistrationForm, EditProfileForm
|
||||
from app.models import User
|
||||
|
||||
|
||||
@app.before_request
|
||||
def before_request():
|
||||
if current_user.is_authenticated:
|
||||
current_user.last_seen = datetime.utcnow()
|
||||
db.session.commit()
|
||||
|
||||
|
||||
@app.route("/")
|
||||
@app.route("/index")
|
||||
@login_required
|
||||
def index():
|
||||
posts = [
|
||||
{"author": {"username": "John"}, "body": "Beautiful day in Portland!"},
|
||||
{"author": {"username": "Susan"}, "body": "The Avengers movie was so cool!"},
|
||||
{
|
||||
"author": {"username": "Susan"},
|
||||
"body": "The Avengers movie was so cool!",
|
||||
},
|
||||
]
|
||||
return render_template("index.html", title="Home", posts=posts)
|
||||
|
||||
@@ -54,3 +65,32 @@ def register():
|
||||
flash("Congratulations, you are now a registered user!")
|
||||
return redirect(url_for("login"))
|
||||
return render_template("register.html", title="Register", form=form)
|
||||
|
||||
|
||||
@app.route("/user/<username>")
|
||||
@login_required
|
||||
def user(username):
|
||||
user = User.query.filter_by(username=username).first_or_404()
|
||||
posts = [
|
||||
{"author": user, "body": "Test post #1"},
|
||||
{"author": user, "body": "Test post #2"},
|
||||
]
|
||||
return render_template("user.html", user=user, posts=posts)
|
||||
|
||||
|
||||
@app.route("/edit_profile", methods=["GET", "POST"])
|
||||
@login_required
|
||||
def edit_profile():
|
||||
form = EditProfileForm()
|
||||
if form.validate_on_submit():
|
||||
current_user.username = form.username.data
|
||||
current_user.about_me = form.about_me.data
|
||||
db.session.commit()
|
||||
flash("Your changes have been saved.")
|
||||
return redirect(url_for("edit_profile"))
|
||||
elif request.method == "GET":
|
||||
form.username.data = current_user.username
|
||||
form.about_me.data = current_user.about_me
|
||||
return render_template(
|
||||
"edit_profile.html", title="Edit Profile", form=form
|
||||
)
|
||||
|
Reference in New Issue
Block a user