2020-11-13 09:01:51 +00:00
|
|
|
from datetime import datetime
|
2021-09-16 09:15:31 +00:00
|
|
|
from flask import (abort, current_app, flash, redirect, render_template,
|
|
|
|
request, url_for)
|
2020-02-19 15:24:58 +00:00
|
|
|
from flask_login import current_user, login_user, login_required, logout_user
|
2021-09-13 15:36:19 +00:00
|
|
|
from sqlalchemy import or_
|
2021-09-13 09:45:43 +00:00
|
|
|
from . import bp
|
2020-02-19 15:24:58 +00:00
|
|
|
from .forms import (LoginForm, ResetPasswordForm, ResetPasswordRequestForm,
|
2019-09-23 14:11:01 +00:00
|
|
|
RegistrationForm)
|
2020-03-27 11:06:11 +00:00
|
|
|
from .. import db
|
2020-04-21 16:34:21 +00:00
|
|
|
from ..email import create_message, send
|
2020-03-27 11:06:11 +00:00
|
|
|
from ..models import User
|
2019-11-14 09:01:45 +00:00
|
|
|
import os
|
2020-02-19 15:24:58 +00:00
|
|
|
|
|
|
|
|
2021-09-13 09:45:43 +00:00
|
|
|
@bp.before_app_request
|
2020-02-19 15:24:58 +00:00
|
|
|
def before_request():
|
|
|
|
"""
|
|
|
|
Checks if a user is unconfirmed when visiting specific sites. Redirects to
|
|
|
|
unconfirmed view if user is unconfirmed.
|
|
|
|
"""
|
2020-04-27 11:50:54 +00:00
|
|
|
if current_user.is_authenticated:
|
2020-11-13 09:01:51 +00:00
|
|
|
current_user.last_seen = datetime.utcnow()
|
|
|
|
db.session.commit()
|
|
|
|
if (not current_user.confirmed
|
|
|
|
and request.endpoint
|
|
|
|
and request.blueprint != 'auth'
|
|
|
|
and request.endpoint != 'static'):
|
2020-04-27 11:50:54 +00:00
|
|
|
return redirect(url_for('auth.unconfirmed'))
|
2020-02-19 15:24:58 +00:00
|
|
|
|
|
|
|
|
2021-09-13 09:45:43 +00:00
|
|
|
@bp.route('/login', methods=['GET', 'POST'])
|
2020-02-19 15:24:58 +00:00
|
|
|
def login():
|
2020-02-19 15:58:56 +00:00
|
|
|
if current_user.is_authenticated:
|
|
|
|
return redirect(url_for('main.dashboard'))
|
2020-11-13 09:01:51 +00:00
|
|
|
form = LoginForm(prefix='login-form')
|
|
|
|
if form.validate_on_submit():
|
2021-09-13 15:36:19 +00:00
|
|
|
user = User.query.filter(or_(User.username == form.user.data,
|
|
|
|
User.email == form.user.data.lower())).first()
|
|
|
|
if user and user.verify_password(form.password.data):
|
2020-11-13 09:01:51 +00:00
|
|
|
login_user(user, form.remember_me.data)
|
2020-02-19 15:24:58 +00:00
|
|
|
next = request.args.get('next')
|
|
|
|
if next is None or not next.startswith('/'):
|
|
|
|
next = url_for('main.dashboard')
|
|
|
|
return redirect(next)
|
2020-02-20 08:45:38 +00:00
|
|
|
flash('Invalid email/username or password.')
|
2020-11-13 09:01:51 +00:00
|
|
|
return render_template('auth/login.html.j2', form=form, title='Log in')
|
2019-07-04 13:17:51 +00:00
|
|
|
|
|
|
|
|
2021-09-13 09:45:43 +00:00
|
|
|
@bp.route('/logout')
|
2019-07-05 12:47:35 +00:00
|
|
|
@login_required
|
|
|
|
def logout():
|
|
|
|
logout_user()
|
|
|
|
flash('You have been logged out.')
|
|
|
|
return redirect(url_for('main.index'))
|
2019-07-04 13:17:51 +00:00
|
|
|
|
|
|
|
|
2021-09-13 09:45:43 +00:00
|
|
|
@bp.route('/register', methods=['GET', 'POST'])
|
2019-07-04 13:17:51 +00:00
|
|
|
def register():
|
2020-02-19 15:24:58 +00:00
|
|
|
if current_user.is_authenticated:
|
2019-08-02 11:24:52 +00:00
|
|
|
return redirect(url_for('main.dashboard'))
|
2020-11-13 09:01:51 +00:00
|
|
|
form = RegistrationForm(prefix='registration-form')
|
|
|
|
if form.validate_on_submit():
|
|
|
|
user = User(email=form.email.data.lower(),
|
|
|
|
password=form.password.data,
|
|
|
|
username=form.username.data)
|
2019-07-08 09:27:54 +00:00
|
|
|
db.session.add(user)
|
|
|
|
db.session.commit()
|
2020-11-13 09:01:51 +00:00
|
|
|
try:
|
|
|
|
os.makedirs(user.path)
|
|
|
|
except OSError:
|
2021-09-16 09:15:31 +00:00
|
|
|
current_app.logger.error(
|
2021-12-08 13:45:05 +00:00
|
|
|
f'Make dir {user.path} led to an OSError!')
|
2020-11-13 09:01:51 +00:00
|
|
|
db.session.delete(user)
|
|
|
|
db.session.commit()
|
|
|
|
abort(500)
|
|
|
|
else:
|
|
|
|
token = user.generate_confirmation_token()
|
|
|
|
msg = create_message(user.email, 'Confirm Your Account',
|
|
|
|
'auth/email/confirm', token=token, user=user)
|
|
|
|
send(msg)
|
|
|
|
flash('A confirmation email has been sent to you by email.')
|
|
|
|
return redirect(url_for('.login'))
|
|
|
|
return render_template('auth/register.html.j2', form=form,
|
2019-09-23 14:39:36 +00:00
|
|
|
title='Register')
|
2019-07-08 09:04:52 +00:00
|
|
|
|
|
|
|
|
2021-09-13 09:45:43 +00:00
|
|
|
@bp.route('/confirm/<token>')
|
2019-07-08 13:58:46 +00:00
|
|
|
@login_required
|
|
|
|
def confirm(token):
|
|
|
|
if current_user.confirmed:
|
2020-02-19 15:24:58 +00:00
|
|
|
return redirect(url_for('main.dashboard'))
|
2019-07-08 13:58:46 +00:00
|
|
|
if current_user.confirm(token):
|
|
|
|
db.session.commit()
|
|
|
|
flash('You have confirmed your account. Thanks!')
|
2020-02-19 15:24:58 +00:00
|
|
|
return redirect(url_for('main.dashboard'))
|
2019-07-08 13:58:46 +00:00
|
|
|
else:
|
|
|
|
flash('The confirmation link is invalid or has expired.')
|
2020-11-13 09:01:51 +00:00
|
|
|
return redirect(url_for('.unconfirmed'))
|
2019-07-09 08:09:35 +00:00
|
|
|
|
|
|
|
|
2021-09-13 09:45:43 +00:00
|
|
|
@bp.route('/unconfirmed')
|
2019-07-09 08:09:35 +00:00
|
|
|
def unconfirmed():
|
2020-02-19 15:24:58 +00:00
|
|
|
if current_user.is_anonymous:
|
2019-07-09 08:09:35 +00:00
|
|
|
return redirect(url_for('main.index'))
|
2020-02-19 15:24:58 +00:00
|
|
|
elif current_user.confirmed:
|
|
|
|
return redirect(url_for('main.dashboard'))
|
2019-07-09 13:38:21 +00:00
|
|
|
return render_template('auth/unconfirmed.html.j2', title='Unconfirmed')
|
2019-07-09 08:09:35 +00:00
|
|
|
|
|
|
|
|
2021-09-13 09:45:43 +00:00
|
|
|
@bp.route('/confirm')
|
2019-07-09 08:09:35 +00:00
|
|
|
@login_required
|
|
|
|
def resend_confirmation():
|
|
|
|
token = current_user.generate_confirmation_token()
|
2020-04-21 08:26:44 +00:00
|
|
|
msg = create_message(current_user.email, 'Confirm Your Account',
|
|
|
|
'auth/email/confirm', token=token, user=current_user)
|
2020-04-21 16:34:21 +00:00
|
|
|
send(msg)
|
2020-03-16 10:21:58 +00:00
|
|
|
flash('A new confirmation email has been sent to you by email.')
|
2020-02-19 15:24:58 +00:00
|
|
|
return redirect(url_for('auth.unconfirmed'))
|
2019-07-09 08:09:35 +00:00
|
|
|
|
|
|
|
|
2021-09-13 09:45:43 +00:00
|
|
|
@bp.route('/reset', methods=['GET', 'POST'])
|
2020-02-19 15:24:58 +00:00
|
|
|
def reset_password_request():
|
|
|
|
if current_user.is_authenticated:
|
2019-08-02 11:24:52 +00:00
|
|
|
return redirect(url_for('main.dashboard'))
|
2020-11-13 09:01:51 +00:00
|
|
|
form = ResetPasswordRequestForm(prefix='reset-password-request-form')
|
|
|
|
if form.validate_on_submit():
|
|
|
|
user = User.query.filter_by(email=form.email.data.lower()).first()
|
|
|
|
if user is not None:
|
2019-07-08 09:04:52 +00:00
|
|
|
token = user.generate_reset_token()
|
2020-04-21 08:26:44 +00:00
|
|
|
msg = create_message(user.email, 'Reset Your Password',
|
|
|
|
'auth/email/reset_password', token=token,
|
|
|
|
user=user)
|
2020-04-21 16:34:21 +00:00
|
|
|
send(msg)
|
2020-11-13 09:01:51 +00:00
|
|
|
flash('An email with instructions to reset your password has been sent to you.') # noqa
|
|
|
|
return redirect(url_for('.login'))
|
|
|
|
return render_template('auth/reset_password_request.html.j2', form=form,
|
|
|
|
title='Password Reset')
|
2019-07-08 11:56:09 +00:00
|
|
|
|
|
|
|
|
2021-09-13 09:45:43 +00:00
|
|
|
@bp.route('/reset/<token>', methods=['GET', 'POST'])
|
2020-02-19 15:24:58 +00:00
|
|
|
def reset_password(token):
|
|
|
|
if current_user.is_authenticated:
|
2019-08-02 11:24:52 +00:00
|
|
|
return redirect(url_for('main.dashboard'))
|
2020-11-13 09:01:51 +00:00
|
|
|
form = ResetPasswordForm(prefix='reset-password-form')
|
|
|
|
if form.validate_on_submit():
|
|
|
|
if User.reset_password(token, form.password.data):
|
2019-07-08 13:13:32 +00:00
|
|
|
db.session.commit()
|
|
|
|
flash('Your password has been updated.')
|
2020-11-13 09:01:51 +00:00
|
|
|
return redirect(url_for('.login'))
|
2019-07-08 13:13:32 +00:00
|
|
|
else:
|
|
|
|
return redirect(url_for('main.index'))
|
2020-11-13 09:01:51 +00:00
|
|
|
return render_template('auth/reset_password.html.j2', form=form,
|
|
|
|
title='Password Reset', token=token)
|