You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.9 KiB
55 lines
1.9 KiB
from datetime import datetime
|
|
from uuid import uuid1
|
|
|
|
from flask import render_template
|
|
from flask_mail import Message
|
|
from sqlalchemy.exc import (DatabaseError, DataError, InterfaceError,
|
|
InvalidRequestError)
|
|
|
|
from app import db
|
|
from forms.forgotpasswordform import ForgotPasswordForm
|
|
from models.usermodel import User
|
|
|
|
|
|
def ForgotPassword(mail):
|
|
forgotpasswordform = ForgotPasswordForm()
|
|
if forgotpasswordform.validate_on_submit():
|
|
user = User.query.filter_by(
|
|
email=forgotpasswordform.email.data
|
|
).first()
|
|
if user is not None:
|
|
resethash = AddResetPasswordHash(user, forgotpasswordform)
|
|
ResetPassWordMessage(user, resethash, mail)
|
|
forgotpasswordform.email.errors.append(
|
|
f"""If {forgotpasswordform.email.data} exists, an email is send with
|
|
a password reset link. (If your inbox doesn't
|
|
contain any new mail, please check your spam folder.)"""
|
|
)
|
|
return render_template(
|
|
"forgotpassword.html", forgotpasswordform=forgotpasswordform
|
|
)
|
|
|
|
|
|
def AddResetPasswordHash(user, forgotpasswordform):
|
|
resethash = uuid1().hex
|
|
try:
|
|
user.resettime = datetime.now()
|
|
user.resethash = resethash
|
|
db.session.commit()
|
|
except (InvalidRequestError, DataError, InterfaceError, DatabaseError):
|
|
forgotpasswordform.email.errors.append("Something went wrong!")
|
|
db.session.rollback()
|
|
return resethash
|
|
|
|
|
|
def ResetPassWordMessage(user, resethash, mail):
|
|
msg = Message(
|
|
"Distribusiverse Forgotten Password ",
|
|
sender=("Distribusiverse mailer", "test@this.com"),
|
|
recipients=[user.email],
|
|
)
|
|
msg.html = f"""{user.username} has requested a password reset for
|
|
Distribusiverse.<br><hr>
|
|
<a href='http://localhost:5000/resetpassword/{resethash}'>Click here to
|
|
reset your password.</a>"""
|
|
mail.send(msg)
|
|
|