forked from Github-Mirrors/canaille
375 lines
12 KiB
Python
375 lines
12 KiB
Python
import pkg_resources
|
|
|
|
from flask import (
|
|
Blueprint,
|
|
request,
|
|
flash,
|
|
url_for,
|
|
current_app,
|
|
abort,
|
|
render_template,
|
|
redirect,
|
|
session,
|
|
)
|
|
from flask_babel import gettext as _
|
|
from werkzeug.datastructures import CombinedMultiDict, FileStorage
|
|
from .forms import (
|
|
LoginForm,
|
|
PasswordForm,
|
|
PasswordResetForm,
|
|
ForgottenPasswordForm,
|
|
profile_form,
|
|
)
|
|
from .flaskutils import current_user, user_needed, moderator_needed, admin_needed
|
|
from .mails import (
|
|
send_password_initialization_mail,
|
|
send_password_reset_mail,
|
|
profile_hash,
|
|
)
|
|
from .models import User
|
|
|
|
|
|
bp = Blueprint("account", __name__)
|
|
|
|
|
|
@bp.route("/")
|
|
def index():
|
|
if not current_user():
|
|
return redirect(url_for("account.login"))
|
|
return redirect(url_for("account.profile_edition", username=current_user().uid[0]))
|
|
|
|
|
|
@bp.route("/about")
|
|
def about():
|
|
try:
|
|
version = pkg_resources.get_distribution("canaille").version
|
|
except pkg_resources.DistributionNotFound:
|
|
version = "git"
|
|
return render_template("about.html", version=version)
|
|
|
|
|
|
@bp.route("/login", methods=("GET", "POST"))
|
|
def login():
|
|
form = LoginForm(request.form or None)
|
|
|
|
if request.form:
|
|
user = User.get(form.login.data)
|
|
if user and not user.has_password():
|
|
return redirect(url_for("account.firstlogin", uid=user.uid[0]))
|
|
|
|
if not form.validate():
|
|
User.logout()
|
|
flash(_("Login failed, please check your information"), "error")
|
|
return render_template("login.html", form=form)
|
|
|
|
session["attempt_login"] = form.login.data
|
|
return redirect(url_for("account.password"))
|
|
|
|
return render_template("login.html", form=form)
|
|
|
|
|
|
@bp.route("/password", methods=("GET", "POST"))
|
|
def password():
|
|
if "attempt_login" not in session:
|
|
return redirect(url_for("account.login"))
|
|
|
|
form = PasswordForm(request.form or None)
|
|
|
|
if request.form:
|
|
user = User.get(session["attempt_login"])
|
|
if user and not user.has_password():
|
|
return redirect(url_for("account.firstlogin", uid=user.uid[0]))
|
|
|
|
if not form.validate() or not User.authenticate(
|
|
session["attempt_login"], form.password.data, True
|
|
):
|
|
User.logout()
|
|
flash(_("Login failed, please check your information"), "error")
|
|
return render_template(
|
|
"password.html", form=form, username=session["attempt_login"]
|
|
)
|
|
|
|
del session["attempt_login"]
|
|
flash(_("Connection successful. Welcome %(user)s", user=user.name), "success")
|
|
return redirect(url_for("account.index"))
|
|
|
|
return render_template(
|
|
"password.html", form=form, username=session["attempt_login"]
|
|
)
|
|
|
|
|
|
@bp.route("/logout")
|
|
def logout():
|
|
user = current_user()
|
|
if user:
|
|
flash(
|
|
_("You have been disconnected. See you next time %(user)s", user=user.name),
|
|
"success",
|
|
)
|
|
user.logout()
|
|
return redirect("/")
|
|
|
|
|
|
@bp.route("/firstlogin/<uid>", methods=("GET", "POST"))
|
|
def firstlogin(uid):
|
|
user = User.get(uid)
|
|
user and not user.has_password() or abort(404)
|
|
|
|
form = ForgottenPasswordForm(request.form or None, data={"login": uid})
|
|
if not request.form:
|
|
return render_template("firstlogin.html", form=form, uid=uid)
|
|
|
|
if not form.validate():
|
|
flash(_("Could not send the password initialization link."), "error")
|
|
return render_template("firstlogin.html", form=form, uid=uid)
|
|
|
|
if send_password_initialization_mail(user):
|
|
flash(
|
|
_(
|
|
"A password initialization link has been sent at your email address. You should receive it within 10 minutes."
|
|
),
|
|
"success",
|
|
)
|
|
else:
|
|
flash(_("Could not send the password initialization email"), "error")
|
|
|
|
return render_template("firstlogin.html", form=form, uid=uid)
|
|
|
|
|
|
@bp.route("/users")
|
|
@moderator_needed()
|
|
def users(user):
|
|
users = User.filter(objectClass=current_app.config["LDAP"]["USER_CLASS"])
|
|
return render_template("users.html", users=users, menuitem="users")
|
|
|
|
|
|
@bp.route("/profile", methods=("GET", "POST"))
|
|
@moderator_needed()
|
|
def profile_creation(user):
|
|
form = profile_form(current_app.config["LDAP"]["FIELDS"])
|
|
form.process(CombinedMultiDict((request.files, request.form)) or None)
|
|
try:
|
|
if "uid" in form:
|
|
del form["uid"].render_kw["readonly"]
|
|
except KeyError:
|
|
pass
|
|
|
|
if request.form:
|
|
if not form.validate():
|
|
flash(_("User creation failed."), "error")
|
|
|
|
else:
|
|
user = User(objectClass=current_app.config["LDAP"]["USER_CLASS"])
|
|
for attribute in form:
|
|
if attribute.name in user.may + user.must:
|
|
if isinstance(attribute.data, FileStorage):
|
|
data = attribute.data.stream.read()
|
|
else:
|
|
data = attribute.data
|
|
|
|
if user.attr_type_by_name()[attribute.name].single_value:
|
|
user[attribute.name] = data
|
|
else:
|
|
user[attribute.name] = [data]
|
|
|
|
if not form["password1"].data or user.set_password(form["password1"].data):
|
|
flash(_("User creation succeed."), "success")
|
|
|
|
user.cn = [f"{user.givenName[0]} {user.sn[0]}"]
|
|
user.save()
|
|
|
|
return redirect(url_for("account.profile_edition", username=user.uid[0]))
|
|
|
|
return render_template(
|
|
"profile.html",
|
|
form=form,
|
|
menuitem="users",
|
|
edited_user=None,
|
|
self_deletion=False,
|
|
)
|
|
|
|
|
|
@bp.route("/impersonate/<username>")
|
|
@admin_needed()
|
|
def impersonate(user, username):
|
|
u = User.get(username) or abort(404)
|
|
u.login()
|
|
return redirect(url_for("account.index"))
|
|
|
|
|
|
@bp.route("/profile/<username>", methods=("GET", "POST"))
|
|
@user_needed()
|
|
def profile_edition(user, username):
|
|
user.moderator or username == user.uid[0] or abort(403)
|
|
|
|
if request.method == "GET" or request.form.get("action") == "edit":
|
|
return profile_edit(user, username)
|
|
|
|
if request.form.get("action") == "delete":
|
|
return profile_delete(user, username)
|
|
|
|
if request.form.get("action") == "password-initialization-mail":
|
|
user = User.get(username) or abort(404)
|
|
if send_password_initialization_mail(user):
|
|
flash(
|
|
_(
|
|
"A password initialization link has been sent at the user email address. It should be received within 10 minutes."
|
|
),
|
|
"success",
|
|
)
|
|
else:
|
|
flash(_("Could not send the password initialization email"), "error")
|
|
|
|
return profile_edit(user, username)
|
|
|
|
if request.form.get("action") == "password-reset-mail":
|
|
user = User.get(username) or abort(404)
|
|
if send_password_reset_mail(user):
|
|
flash(
|
|
_(
|
|
"A password reset link has been sent at the user email address. It should be received within 10 minutes."
|
|
),
|
|
"success",
|
|
)
|
|
else:
|
|
flash(_("Could not send the password reset email"), "error")
|
|
|
|
return profile_edit(user, username)
|
|
|
|
abort(400)
|
|
|
|
|
|
def profile_edit(editor, username):
|
|
menuitem = "profile" if username == editor.uid[0] else "users"
|
|
fields = current_app.config["LDAP"]["FIELDS"]
|
|
if username != editor.uid[0]:
|
|
user = User.get(username) or abort(404)
|
|
else:
|
|
user = editor
|
|
|
|
data = {
|
|
k: getattr(user, k)[0]
|
|
if getattr(user, k) and isinstance(getattr(user, k), list)
|
|
else getattr(user, k) or ""
|
|
for k in fields
|
|
if hasattr(user, k)
|
|
}
|
|
|
|
if "groups" in fields:
|
|
data["groups"] = [g.dn for g in user.groups]
|
|
|
|
form = profile_form(fields)
|
|
form.process(CombinedMultiDict((request.files, request.form)) or None, data=data)
|
|
form["uid"].render_kw["readonly"] = "true"
|
|
if "groups" in form and not editor.admin and not editor.moderator:
|
|
form["groups"].render_kw["disabled"] = "true"
|
|
|
|
if request.form:
|
|
if not form.validate():
|
|
flash(_("Profile edition failed."), "error")
|
|
|
|
else:
|
|
for attribute in form:
|
|
if (
|
|
attribute.name in user.may + user.must
|
|
and not attribute.name == "uid"
|
|
):
|
|
if isinstance(attribute.data, FileStorage):
|
|
data = attribute.data.stream.read()
|
|
else:
|
|
data = attribute.data
|
|
|
|
if user.attr_type_by_name()[attribute.name].single_value:
|
|
user[attribute.name] = data
|
|
else:
|
|
user[attribute.name] = [data]
|
|
elif attribute.name == "groups" and (editor.admin or editor.moderator):
|
|
user.set_groups(attribute.data)
|
|
|
|
if (
|
|
not form["password1"].data or user.set_password(form["password1"].data)
|
|
) and request.form["action"] == "edit":
|
|
flash(_("Profile updated successfuly."), "success")
|
|
user.save()
|
|
|
|
return render_template(
|
|
"profile.html",
|
|
form=form,
|
|
menuitem=menuitem,
|
|
edited_user=user,
|
|
self_deletion=current_app.config.get("SELF_DELETION", True),
|
|
)
|
|
|
|
|
|
def profile_delete(user, username):
|
|
self_deletion = username == user.uid[0]
|
|
if self_deletion:
|
|
user.logout()
|
|
else:
|
|
user = User.get(username) or abort(404)
|
|
|
|
flash(_("The user %(user)s has been sucessfuly deleted", user=user.name), "success")
|
|
user.delete()
|
|
|
|
if self_deletion:
|
|
return redirect(url_for("account.index"))
|
|
return redirect(url_for("account.users"))
|
|
|
|
|
|
@bp.route("/reset", methods=["GET", "POST"])
|
|
def forgotten():
|
|
form = ForgottenPasswordForm(request.form)
|
|
if not request.form:
|
|
return render_template("forgotten-password.html", form=form)
|
|
|
|
if not form.validate():
|
|
flash(_("Could not send the password reset link."), "error")
|
|
return render_template("forgotten-password.html", form=form)
|
|
|
|
user = User.get(form.login.data)
|
|
|
|
if not user:
|
|
flash(
|
|
_(
|
|
"A password reset link has been sent at your email address. You should receive it within 10 minutes."
|
|
),
|
|
"success",
|
|
)
|
|
return render_template("forgotten-password.html", form=form)
|
|
|
|
success = send_password_reset_mail(user)
|
|
|
|
if success:
|
|
flash(
|
|
_(
|
|
"A password reset link has been sent at your email address. You should receive it within 10 minutes."
|
|
),
|
|
"success",
|
|
)
|
|
else:
|
|
flash(_("Could not reset your password"), "error")
|
|
|
|
return render_template("forgotten-password.html", form=form)
|
|
|
|
|
|
@bp.route("/reset/<uid>/<hash>", methods=["GET", "POST"])
|
|
def reset(uid, hash):
|
|
form = PasswordResetForm(request.form)
|
|
user = User.get(uid)
|
|
|
|
if not user or hash != profile_hash(
|
|
user.uid[0], user.userPassword[0] if user.has_password() else ""
|
|
):
|
|
flash(
|
|
_("The password reset link that brought you here was invalid."), "error",
|
|
)
|
|
return redirect(url_for("account.index"))
|
|
|
|
if request.form and form.validate():
|
|
user.set_password(form.password.data)
|
|
user.login()
|
|
|
|
flash(_("Your password has been updated successfuly"), "success")
|
|
return redirect(url_for("account.profile_edition", username=uid))
|
|
|
|
return render_template("reset-password.html", form=form, uid=uid, hash=hash)
|