2023-04-04 18:17:44 +08:00
|
|
|
# The Mia! Accounting Demonstration Website.
|
2023-01-29 22:28:27 +08:00
|
|
|
# Author: imacat@mail.imacat.idv.tw (imacat), 2023/1/27
|
|
|
|
|
|
|
|
# Copyright (c) 2023 imacat.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
2023-04-04 18:17:44 +08:00
|
|
|
"""The authentication for the Mia! Accounting demonstration website.
|
2023-01-29 22:28:27 +08:00
|
|
|
|
|
|
|
"""
|
|
|
|
from flask import Blueprint, render_template, Flask, redirect, url_for, \
|
|
|
|
session, request, g
|
|
|
|
|
|
|
|
from . import db
|
|
|
|
|
|
|
|
bp: Blueprint = Blueprint("auth", __name__, url_prefix="/")
|
|
|
|
|
|
|
|
|
|
|
|
class User(db.Model):
|
|
|
|
"""A user."""
|
|
|
|
__tablename__ = "users"
|
|
|
|
"""The table name."""
|
|
|
|
id = db.Column(db.Integer, nullable=False, primary_key=True,
|
|
|
|
autoincrement=True)
|
|
|
|
"""The ID"""
|
|
|
|
username = db.Column(db.String, nullable=False, unique=True)
|
|
|
|
"""The username."""
|
|
|
|
|
2023-02-01 15:37:56 +08:00
|
|
|
def __str__(self) -> str:
|
|
|
|
"""Returns the string representation of the user.
|
|
|
|
|
|
|
|
:return: The string representation of the user.
|
|
|
|
"""
|
|
|
|
return self.username
|
|
|
|
|
2023-01-29 22:28:27 +08:00
|
|
|
|
|
|
|
@bp.get("login", endpoint="login-form")
|
|
|
|
def show_login_form() -> str:
|
|
|
|
"""Shows the login form.
|
|
|
|
|
|
|
|
:return: The login form.
|
|
|
|
"""
|
|
|
|
return render_template("login.html")
|
|
|
|
|
|
|
|
|
|
|
|
@bp.post("login", endpoint="login")
|
|
|
|
def login() -> redirect:
|
|
|
|
"""Logs in the user.
|
|
|
|
|
|
|
|
:return: The redirection to the home page.
|
|
|
|
"""
|
2023-03-24 08:32:28 +08:00
|
|
|
if request.form.get("username") not in {"viewer", "editor", "admin",
|
|
|
|
"nobody"}:
|
2023-01-29 22:28:27 +08:00
|
|
|
return redirect(url_for("auth.login"))
|
|
|
|
session["user"] = request.form.get("username")
|
|
|
|
return redirect(url_for("home.home"))
|
|
|
|
|
|
|
|
|
|
|
|
@bp.post("logout", endpoint="logout")
|
|
|
|
def logout() -> redirect:
|
|
|
|
"""Logs out the user.
|
|
|
|
|
|
|
|
:return: The redirection to the home page.
|
|
|
|
"""
|
|
|
|
if "user" in session:
|
|
|
|
del session["user"]
|
|
|
|
return redirect(url_for("home.home"))
|
|
|
|
|
|
|
|
|
|
|
|
def current_user() -> User | None:
|
|
|
|
"""Returns the current user.
|
|
|
|
|
|
|
|
:return: The current user, or None if the user did not log in.
|
|
|
|
"""
|
|
|
|
if not hasattr(g, "user"):
|
|
|
|
if "user" not in session:
|
|
|
|
g.user = None
|
|
|
|
else:
|
|
|
|
g.user = User.query.filter(
|
|
|
|
User.username == session["user"]).first()
|
|
|
|
return g.user
|
|
|
|
|
|
|
|
|
|
|
|
def init_app(app: Flask) -> None:
|
|
|
|
"""Initialize the localization.
|
|
|
|
|
|
|
|
:param app: The Flask application.
|
|
|
|
:return: None.
|
|
|
|
"""
|
|
|
|
app.register_blueprint(bp)
|
|
|
|
app.jinja_env.globals["current_user"] = current_user
|