nopaque/app/auth/views.py

173 lines
6.3 KiB
Python
Raw Normal View History

from flask import flash, redirect, render_template, request, url_for
2019-07-08 11:56:09 +00:00
from flask_login import current_user, login_required, login_user, logout_user
from . import auth
2019-07-08 09:27:54 +00:00
from .. import db
2019-09-09 14:17:59 +00:00
from .forms import ChangePasswordForm, LoginForm, PasswordResetForm, PasswordResetRequestForm, RegistrationForm, EditProfileForm
2019-07-08 09:04:52 +00:00
from ..email import send_email
from ..models import User, Job
@auth.route('/login', methods=['GET', 'POST'])
def login():
if current_user.is_authenticated:
return redirect(url_for('main.index'))
form = LoginForm()
if form.validate_on_submit():
2019-07-09 09:00:41 +00:00
user = User.query.filter_by(email=form.login.data).first()
if user is None:
user = User.query.filter_by(username=form.login.data).first()
if user is not None and user.verify_password(form.password.data):
login_user(user, form.remember_me.data)
next = request.args.get('next')
if next is None or not next.startswith('/'):
2019-08-02 11:24:52 +00:00
next = url_for('main.dashboard')
return redirect(next)
flash('Invalid username or password.')
return render_template('auth/login.html.j2', form=form, title='Log in')
@auth.route('/logout')
@login_required
def logout():
logout_user()
flash('You have been logged out.')
return redirect(url_for('main.index'))
@auth.route('/register', methods=['GET', 'POST'])
def register():
2019-07-08 12:04:02 +00:00
if not current_user.is_anonymous:
2019-08-02 11:24:52 +00:00
return redirect(url_for('main.dashboard'))
2019-07-08 09:27:54 +00:00
form = RegistrationForm()
if form.validate_on_submit():
2019-07-08 13:58:46 +00:00
user = User(email=form.email.data.lower(),
username=form.username.data,
2019-07-08 09:27:54 +00:00
password=form.password.data)
db.session.add(user)
db.session.commit()
2019-07-08 13:58:46 +00:00
token = user.generate_confirmation_token()
send_email(user.email, 'Confirm Your Account',
'auth/email/confirm', user=user, token=token)
flash('A confirmation email has been sent to you by email.')
2019-07-08 09:27:54 +00:00
return redirect(url_for('auth.login'))
2019-07-09 13:38:21 +00:00
return render_template('auth/register.html.j2', form=form, title='Register')
2019-07-08 09:04:52 +00:00
2019-07-08 13:58:46 +00:00
@auth.route('/confirm/<token>')
@login_required
def confirm(token):
if current_user.confirmed:
return redirect(url_for('main.index'))
if current_user.confirm(token):
db.session.commit()
flash('You have confirmed your account. Thanks!')
else:
flash('The confirmation link is invalid or has expired.')
2019-08-02 11:24:52 +00:00
return redirect(url_for('main.dashboard'))
2019-07-08 13:58:46 +00:00
@auth.before_app_request
def before_request():
2019-07-11 13:43:48 +00:00
"""
Checks if a user is unconfirmed when visiting specific sites. Redirects to
unconfirmed view if user is unconfirmed.
"""
if current_user.is_authenticated \
and not current_user.confirmed \
and request.blueprint != 'auth' \
and request.endpoint != 'static':
return redirect(url_for('auth.unconfirmed'))
@auth.route('/unconfirmed')
def unconfirmed():
if current_user.is_anonymous or current_user.confirmed:
return redirect(url_for('main.index'))
2019-07-09 13:38:21 +00:00
return render_template('auth/unconfirmed.html.j2', title='Unconfirmed')
@auth.route('/confirm')
@login_required
def resend_confirmation():
token = current_user.generate_confirmation_token()
send_email(current_user.email, 'Confirm Your Account', 'auth/email/confirm',
user=current_user, token=token)
flash('A new confirmation email has benn sent to you by email.')
2019-08-02 11:24:52 +00:00
return redirect(url_for('main.dashboard'))
2019-07-08 09:04:52 +00:00
@auth.route('/reset', methods=['GET', 'POST'])
def password_reset_request():
2019-07-08 11:56:09 +00:00
if not current_user.is_anonymous:
2019-08-02 11:24:52 +00:00
return redirect(url_for('main.dashboard'))
2019-07-08 09:04:52 +00:00
form = PasswordResetRequestForm()
if form.validate_on_submit():
user = User.query.filter_by(email=form.email.data.lower()).first()
if user:
token = user.generate_reset_token()
send_email(user.email, 'Reset Your Password',
'auth/email/reset_password',
user=user, token=token)
flash('An email with instructions to reset your password has been '
'sent to you.')
return redirect(url_for('auth.login'))
2019-07-09 14:59:04 +00:00
return render_template('auth/reset_password_request.html.j2', form=form,
2019-07-08 11:56:09 +00:00
title='Password Reset')
2019-07-08 13:13:32 +00:00
@auth.route('/reset/<token>', methods=['GET', 'POST'])
2019-07-08 11:56:09 +00:00
def password_reset(token):
2019-07-08 13:13:32 +00:00
if not current_user.is_anonymous:
2019-08-02 11:24:52 +00:00
return redirect(url_for('main.dashboard'))
2019-07-08 13:13:32 +00:00
form = PasswordResetForm()
if form.validate_on_submit():
if User.reset_password(token, form.password.data):
db.session.commit()
flash('Your password has been updated.')
return redirect(url_for('auth.login'))
else:
return redirect(url_for('main.index'))
return render_template('auth/reset_password.html.j2', form=form,
title='Password Reset')
2019-07-09 09:00:41 +00:00
2019-09-11 07:47:26 +00:00
@auth.route('/settings', methods=['GET', 'POST'])
2019-07-09 09:00:41 +00:00
@login_required
2019-09-11 07:47:26 +00:00
def settings():
2019-07-11 13:43:48 +00:00
"""
View where loged in User can change own User information like Password etc.
"""
change_password_form = ChangePasswordForm()
if change_password_form.validate_on_submit():
if current_user.verify_password(change_password_form.old_password.data):
current_user.password = change_password_form.new_password.data
2019-07-09 09:53:40 +00:00
db.session.add(current_user)
db.session.commit()
flash('Your password has been updated.')
2019-09-11 07:47:26 +00:00
return redirect(url_for('auth.settings'))
else:
flash('Invalid password.')
2019-09-09 14:17:59 +00:00
change_profile_form = EditProfileForm(user=current_user)
if change_profile_form.validate_on_submit():
current_user.email = change_profile_form.email.data
db.session.add(current_user._get_current_object())
db.session.commit()
flash('Your email has been updated.')
change_profile_form.email.data = current_user.email
return render_template(
2019-09-11 07:47:26 +00:00
'auth/settings.html.j2',
2019-09-09 14:17:59 +00:00
change_password_form=change_password_form,
change_profile_form=change_profile_form,
2019-09-11 07:47:26 +00:00
title='Settings'
)
2019-09-10 12:18:20 +00:00
2019-09-11 12:55:26 +00:00
@auth.route('/settings/delete_self', methods=['GET', 'POST'])
2019-09-10 12:18:20 +00:00
@login_required
def delete_self():
user = current_user
db.session.delete(user)
2019-09-10 12:18:20 +00:00
db.session.commit()
flash('Your account has been deleted!')
return redirect(url_for('main.index'))