2023-01-10 12:39:29 +00:00
|
|
|
import functools
|
2023-01-10 18:12:55 +00:00
|
|
|
from flask import Blueprint, flash, g, redirect, render_template, request, session, url_for
|
2023-01-10 12:39:29 +00:00
|
|
|
from werkzeug.security import check_password_hash, generate_password_hash
|
|
|
|
from gallery.db import get_db
|
|
|
|
|
2023-01-10 14:40:43 +00:00
|
|
|
blueprint = Blueprint('auth', __name__, url_prefix='/auth')
|
2023-01-10 12:39:29 +00:00
|
|
|
|
|
|
|
|
2023-01-10 14:40:43 +00:00
|
|
|
@blueprint.before_app_request
|
2023-01-10 12:39:29 +00:00
|
|
|
def load_logged_in_user():
|
|
|
|
user_id = session.get('user_id')
|
|
|
|
|
|
|
|
if user_id is None:
|
|
|
|
g.user = None
|
|
|
|
else:
|
|
|
|
g.user = get_db().execute(
|
|
|
|
'SELECT * FROM users WHERE id = ?', (user_id,)
|
|
|
|
).fetchone()
|
|
|
|
|
|
|
|
|
2023-01-10 14:40:43 +00:00
|
|
|
@blueprint.route('/register', methods=('GET', 'POST'))
|
2023-01-10 12:39:29 +00:00
|
|
|
def register():
|
|
|
|
if request.method == 'POST':
|
|
|
|
username = request.form['username']
|
|
|
|
password = request.form['password']
|
|
|
|
db = get_db()
|
|
|
|
error = None
|
|
|
|
|
|
|
|
if not username:
|
|
|
|
error = 'Username is required.'
|
|
|
|
elif not password:
|
|
|
|
error = 'Password is required.'
|
|
|
|
|
|
|
|
if error is None:
|
|
|
|
try:
|
|
|
|
db.execute(
|
|
|
|
"INSERT INTO users (username, email, password) VALUES (?, ?, ?)",
|
|
|
|
(username,'dummy@email.com' , generate_password_hash(password)),
|
|
|
|
)
|
|
|
|
db.commit()
|
|
|
|
except db.IntegrityError:
|
|
|
|
error = f"User {username} is already registered."
|
|
|
|
else:
|
|
|
|
return redirect(url_for("auth.login"))
|
|
|
|
|
|
|
|
flash(error)
|
|
|
|
|
|
|
|
return render_template('auth/register.html')
|
|
|
|
|
|
|
|
|
2023-01-10 14:40:43 +00:00
|
|
|
@blueprint.route('/login', methods=('GET', 'POST'))
|
2023-01-10 12:39:29 +00:00
|
|
|
def login():
|
|
|
|
if request.method == 'POST':
|
|
|
|
username = request.form['username']
|
|
|
|
password = request.form['password']
|
|
|
|
db = get_db()
|
|
|
|
error = None
|
|
|
|
user = db.execute(
|
|
|
|
'SELECT * FROM users WHERE username = ?', (username,)
|
|
|
|
).fetchone()
|
|
|
|
|
|
|
|
if user is None:
|
|
|
|
error = 'Incorrect username.'
|
|
|
|
elif not check_password_hash(user['password'], password):
|
|
|
|
error = 'Incorrect password.'
|
|
|
|
|
|
|
|
if error is None:
|
|
|
|
session.clear()
|
|
|
|
session['user_id'] = user['id']
|
|
|
|
return redirect(url_for('index'))
|
|
|
|
|
|
|
|
flash(error)
|
|
|
|
|
|
|
|
return render_template('auth/login.html')
|
|
|
|
|
|
|
|
|
2023-01-10 14:40:43 +00:00
|
|
|
@blueprint.route('/logout')
|
2023-01-10 12:39:29 +00:00
|
|
|
def logout():
|
|
|
|
session.clear()
|
|
|
|
return redirect(url_for('index'))
|
|
|
|
|
|
|
|
|
|
|
|
def login_required(view):
|
|
|
|
@functools.wraps(view)
|
|
|
|
def wrapped_view(**kwargs):
|
|
|
|
if g.user is None:
|
|
|
|
return redirect(url_for('auth.login'))
|
|
|
|
|
|
|
|
return view(**kwargs)
|
|
|
|
|
|
|
|
return wrapped_view
|