site/backend/app/routes.py

192 lines
7.9 KiB
Python
Raw Normal View History

2024-08-01 18:10:49 +00:00
from flask import render_template, flash, redirect, url_for, request
2024-08-03 12:34:12 +00:00
from flask_login import current_user, login_user, logout_user, login_required
2024-08-01 18:10:49 +00:00
from urllib.parse import urlsplit
2024-08-03 11:59:05 +00:00
from datetime import datetime, timezone
2024-08-03 12:34:12 +00:00
import sqlalchemy as sa
2024-08-03 11:59:05 +00:00
2024-08-01 18:10:49 +00:00
from app import app, db
2024-08-05 07:59:01 +00:00
from app.forms import LoginForm, RegistrationForm, EditProfileForm, EmptyForm, PostForm, ResetPasswordRequestForm, ResetPasswordForm
2024-08-04 20:14:58 +00:00
from app.models import User, Post
2024-08-05 07:59:01 +00:00
from app.email import send_password_reset_email
#debug:
#import sys
2024-08-01 06:56:27 +00:00
2024-08-03 12:34:12 +00:00
@app.before_request
def before_request():
if current_user.is_authenticated:
current_user.last_seen = datetime.now(timezone.utc)
db.session.commit()
2024-08-04 20:14:58 +00:00
@app.route('/', methods=['GET', 'POST'])
@app.route('/index', methods=['GET', 'POST'])
2024-08-01 18:10:49 +00:00
@login_required
2024-08-01 06:56:27 +00:00
def index():
2024-08-04 16:40:09 +00:00
app.logger.info('@@@@@@@@@@@@@@@@@ INFO LOG TEST INDEX')
2024-08-04 20:14:58 +00:00
form = PostForm()
#user = {'username': 'aaa', 'email': 'a@a.a'}
if form.validate_on_submit():
post = Post(body=form.post.data, author=current_user)
db.session.add(post)
db.session.commit()
flash('Your post has been added.')
return redirect(url_for('index'))
#posts = db.session.scalars(current_user.following_posts()).all()
page = request.args.get('page', 1, type=int)
posts = db.paginate(current_user.following_posts(), page=page, per_page=app.config['POSTS_PER_PAGE'], error_out=False)
next_url = url_for('index', page=posts.next_num) if posts.has_next else None
prev_url = url_for('index', page=posts.prev_num) if posts.has_prev else None
2024-08-01 09:07:49 +00:00
2024-08-08 18:28:57 +00:00
return render_template('index.html', title='oily home', form=form, posts=posts.items, next_url=next_url, prev_url=prev_url)
2024-08-04 20:14:58 +00:00
@app.route('/explore')
@login_required
def explore():
query = sa.select(Post).order_by(Post.timestamp.desc())
page = request.args.get('page', 1, type=int)
2024-08-08 15:14:44 +00:00
ppp = app.config['POSTS_PER_PAGE'] * 2
posts = db.paginate(query, page=page, per_page=ppp, error_out=False)
2024-08-04 20:14:58 +00:00
next_url = url_for('explore', page=posts.next_num) if posts.has_next else None
prev_url = url_for('explore', page=posts.prev_num) if posts.has_prev else None
2024-08-08 18:28:57 +00:00
return render_template('explore.html', title='oily explore', posts=posts.items, next_url=next_url, prev_url=prev_url)
2024-08-01 09:07:49 +00:00
2024-08-01 10:33:45 +00:00
@app.route('/login', methods=['GET', 'POST'])
def login():
2024-08-01 18:10:49 +00:00
if current_user.is_authenticated:
return redirect(url_for('index'))
2024-08-01 10:33:45 +00:00
form = LoginForm()
if form.validate_on_submit():
2024-08-01 18:10:49 +00:00
user = db.session.scalar(sa.select(User).where(User.username == form.username.data))
if user is None or not user.check_password(form.password.data):
flash('Invalid u or p')
return redirect(url_for('login'))
login_user(user, remember=form.remember_me.data)
next_page = request.args.get('next')
if not next_page or urlsplit(next_page).netloc != '':
next_page = url_for('index')
return redirect(next_page)
2024-08-08 18:28:57 +00:00
return render_template('login.html', title='oily sign in', form=form)
2024-08-01 10:33:45 +00:00
2024-08-01 18:10:49 +00:00
@app.route('/logout')
def logout():
logout_user()
return redirect(url_for('index'))
@app.route('/register', methods=['GET', 'POST'])
def register():
if current_user.is_authenticated:
return redirect(url_for('index'))
2024-08-08 16:10:43 +00:00
if not app.config['ALLOW_REGISTRATION'] == "true":
flash('Registration temporarily disabled.')
return redirect(url_for('login'))
2024-08-01 18:10:49 +00:00
form = RegistrationForm()
if form.validate_on_submit():
user = User(username=form.username.data, email=form.email.data)
user.set_password(form.password.data)
db.session.add(user)
db.session.commit()
2024-08-03 11:59:05 +00:00
#user.gen_avatar()
2024-08-01 18:10:49 +00:00
flash('User has been created.')
return redirect(url_for('login'))
2024-08-08 18:28:57 +00:00
return render_template('register.html', title='oily register', form=form)
2024-08-01 18:10:49 +00:00
2024-08-05 07:59:01 +00:00
@app.route('/reset_password/<token>', methods=['GET', 'POST'])
def reset_password(token):
if current_user.is_authenticated:
return redirect(url_for('index'))
user = User.verify_reset_password_token(token)
if not user:
return redirect(url_for('index'))
form = ResetPasswordForm()
if form.validate_on_submit():
user.set_password(form.password.data)
db.session.commit()
flash('Your password has been reset.')
return redirect(url_for('login'))
return render_template('reset_password.html', form=form)
2024-08-03 09:14:20 +00:00
@app.route('/user/<username>')
@login_required
def user(username):
user = db.first_or_404(sa.select(User).where(User.username == username))
2024-08-08 18:44:49 +00:00
shortname = (current_user.username[:10] + '...') if len(current_user.username) > 14 else current_user.username
2024-08-04 20:14:58 +00:00
page = request.args.get('page', 1, type=int)
query = user.posts.select().order_by(Post.timestamp.desc())
posts = db.paginate(query, page=page, per_page=app.config['POSTS_PER_PAGE'], error_out=False)
next_url = url_for('user', username=user.username, page=posts.next_num) if posts.has_next else None
prev_url = url_for('user', username=user.username, page=posts.prev_num) if posts.has_prev else None
2024-08-04 16:40:09 +00:00
form = EmptyForm()
2024-08-08 18:44:49 +00:00
return render_template('user.html', title='oily profile - '+shortname, user=user, posts=posts.items, next_url=next_url, prev_url=prev_url, form=form)
2024-08-03 11:59:05 +00:00
@app.route('/edit_profile', methods=['GET', 'POST'])
@login_required
def edit_profile():
2024-08-03 18:45:37 +00:00
form = EditProfileForm(current_user.username)
2024-08-08 18:44:49 +00:00
shortname = (current_user.username[:10] + '...') if len(current_user.username) > 14 else current_user.username
2024-08-03 11:59:05 +00:00
if form.validate_on_submit():
current_user.username = form.username.data
current_user.about_me = form.about_me.data
db.session.commit()
flash('Profile changes have been saved.')
return redirect(url_for('edit_profile'))
elif request.method == 'GET':
form.username.data = current_user.username
2024-08-03 12:34:12 +00:00
form.about_me.data = current_user.about_me
2024-08-08 18:44:49 +00:00
return render_template('edit_profile.html', title='oily edit profile - '+shortname, form=form)
2024-08-03 11:59:05 +00:00
2024-08-04 16:40:09 +00:00
@app.route('/follow/<username>', methods=['POST'])
@login_required
def follow(username):
form = EmptyForm()
if form.validate_on_submit():
user = db.session.scalar(sa.select(User).where(User.username == username))
if user is None:
flash(f'User {username} not found.')
return redirect(url_for('index'))
if user == current_user:
flash('You cannot follow yourself.')
return redirect(url_for('user', username=username))
current_user.follow(user)
db.session.commit()
flash(f'You are now following {username}.')
return redirect(url_for('user', username=username))
else:
return redirect(url_for('index'))
@app.route('/unfollow/<username>', methods=['POST'])
@login_required
def unfollow(username):
form = EmptyForm()
if form.validate_on_submit():
user = db.session.scalar(sa.select(User).where(User.username == username))
if user is None:
flash(f'User {username} not found.')
return redirect(url_for('index'))
if user == current_user:
flash('You cannot unfollow yourself.')
return redirect(url_for('user', username=username))
current_user.unfollow(user)
db.session.commit()
flash(f'You have unfollowed {username}.')
return redirect(url_for('user', username=username))
else:
return redirect(url_for('index'))
2024-08-05 05:00:07 +00:00
@app.route('/reset_password_request', methods=['GET', 'POST'])
def reset_password_request():
if current_user.is_authenticated:
return redirect(url_for('index'))
form = ResetPasswordRequestForm()
if form.validate_on_submit():
user = db.session.scalar(sa.select(User).where(User.email == form.email.data))
if user:
send_password_reset_email(user)
flash('Password reset sent.')
return redirect(url_for('login'))
2024-08-08 18:28:57 +00:00
return render_template('reset_password_request.html', title='oily password reset', form=form)
2024-08-05 05:00:07 +00:00
2024-08-04 16:40:09 +00:00