2022-12-06 18:22:26 +08:00
|
|
|
Examples
|
|
|
|
========
|
|
|
|
|
|
|
|
|
2022-12-06 18:54:40 +08:00
|
|
|
.. _example-alone-simple:
|
|
|
|
|
2023-01-04 21:29:12 +08:00
|
|
|
Simple Applications with Flask-DigestAuth Alone
|
|
|
|
-----------------------------------------------
|
2022-12-06 18:22:26 +08:00
|
|
|
|
|
|
|
In your ``my_app.py``:
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
from flask import Flask, request, redirect
|
|
|
|
from flask_digest_auth import DigestAuth
|
|
|
|
|
|
|
|
app: flask = Flask(__name__)
|
|
|
|
... (Configure the Flask application) ...
|
|
|
|
|
2023-01-06 00:19:24 +08:00
|
|
|
auth: DigestAuth = DigestAuth()
|
2022-12-06 18:22:26 +08:00
|
|
|
auth.init_app(app)
|
|
|
|
|
|
|
|
@auth.register_get_password
|
|
|
|
def get_password_hash(username: str) -> t.Optional[str]:
|
|
|
|
... (Load the password hash) ...
|
|
|
|
|
|
|
|
@auth.register_get_user
|
|
|
|
def get_user(username: str) -> t.Optional[t.Any]:
|
|
|
|
... (Load the user) ...
|
|
|
|
|
|
|
|
@app.get("/admin")
|
|
|
|
@auth.login_required
|
|
|
|
def admin():
|
|
|
|
return f"Hello, {g.user.username}!"
|
|
|
|
|
|
|
|
@app.post("/logout")
|
|
|
|
@auth.login_required
|
|
|
|
def logout():
|
|
|
|
auth.logout()
|
|
|
|
return redirect(request.form.get("next"))
|
|
|
|
|
|
|
|
|
2022-12-06 18:54:40 +08:00
|
|
|
.. _example-alone-large:
|
|
|
|
|
2023-01-04 21:29:12 +08:00
|
|
|
Larger Applications with ``create_app()`` with Flask-DigestAuth Alone
|
|
|
|
---------------------------------------------------------------------
|
2022-12-06 18:22:26 +08:00
|
|
|
|
|
|
|
In your ``my_app/__init__.py``:
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
from flask import Flask
|
|
|
|
from flask_digest_auth import DigestAuth
|
|
|
|
|
|
|
|
auth: DigestAuth = DigestAuth()
|
|
|
|
|
|
|
|
def create_app(test_config = None) -> Flask:
|
|
|
|
app: flask = Flask(__name__)
|
|
|
|
... (Configure the Flask application) ...
|
|
|
|
|
|
|
|
auth.init_app(app)
|
|
|
|
|
|
|
|
@auth.register_get_password
|
|
|
|
def get_password_hash(username: str) -> t.Optional[str]:
|
|
|
|
... (Load the password hash) ...
|
|
|
|
|
|
|
|
@auth.register_get_user
|
|
|
|
def get_user(username: str) -> t.Optional[t.Any]:
|
|
|
|
... (Load the user) ...
|
|
|
|
|
|
|
|
return app
|
|
|
|
|
|
|
|
In your ``my_app/views.py``:
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
from my_app import auth
|
|
|
|
from flask import Flask, Blueprint, request, redirect
|
|
|
|
|
|
|
|
bp = Blueprint("admin", __name__, url_prefix="/admin")
|
|
|
|
|
|
|
|
@bp.get("/admin")
|
|
|
|
@auth.login_required
|
|
|
|
def admin():
|
|
|
|
return f"Hello, {g.user.username}!"
|
|
|
|
|
|
|
|
@app.post("/logout")
|
|
|
|
@auth.login_required
|
|
|
|
def logout():
|
|
|
|
auth.logout()
|
|
|
|
return redirect(request.form.get("next"))
|
|
|
|
|
|
|
|
def init_app(app: Flask) -> None:
|
|
|
|
app.register_blueprint(bp)
|
|
|
|
|
|
|
|
|
2022-12-06 18:54:40 +08:00
|
|
|
.. _example-flask-login-simple:
|
|
|
|
|
2022-12-06 18:22:26 +08:00
|
|
|
Simple Applications with Flask-Login Integration
|
|
|
|
------------------------------------------------
|
|
|
|
|
|
|
|
In your ``my_app.py``:
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
import flask_login
|
|
|
|
from flask import Flask, request, redirect
|
|
|
|
from flask_digest_auth import DigestAuth
|
|
|
|
|
|
|
|
app: flask = Flask(__name__)
|
|
|
|
... (Configure the Flask application) ...
|
|
|
|
|
|
|
|
login_manager: flask_login.LoginManager = flask_login.LoginManager()
|
|
|
|
login_manager.init_app(app)
|
|
|
|
|
|
|
|
@login_manager.user_loader
|
|
|
|
def load_user(user_id: str) -> t.Optional[User]:
|
|
|
|
... (Load the user with the username) ...
|
|
|
|
|
2023-01-06 00:19:24 +08:00
|
|
|
auth: DigestAuth = DigestAuth()
|
2022-12-06 18:22:26 +08:00
|
|
|
auth.init_app(app)
|
|
|
|
|
|
|
|
@auth.register_get_password
|
|
|
|
def get_password_hash(username: str) -> t.Optional[str]:
|
|
|
|
... (Load the password hash) ...
|
|
|
|
|
|
|
|
@app.get("/admin")
|
|
|
|
@flask_login.login_required
|
|
|
|
def admin():
|
|
|
|
return f"Hello, {flask_login.current_user.get_id()}!"
|
|
|
|
|
|
|
|
@app.post("/logout")
|
|
|
|
@flask_login.login_required
|
|
|
|
def logout():
|
|
|
|
auth.logout()
|
|
|
|
# Do not call flask_login.logout_user()
|
|
|
|
return redirect(request.form.get("next"))
|
|
|
|
|
|
|
|
|
2022-12-06 18:54:40 +08:00
|
|
|
.. _example-flask-login-large:
|
|
|
|
|
2022-12-06 18:22:26 +08:00
|
|
|
Larger Applications with ``create_app()`` with Flask-Login Integration
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
|
|
|
|
In your ``my_app/__init__.py``:
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
from flask import Flask
|
|
|
|
from flask_digest_auth import DigestAuth
|
|
|
|
from flask_login import LoginManager
|
|
|
|
|
|
|
|
auth: DigestAuth = DigestAuth()
|
|
|
|
|
|
|
|
def create_app(test_config = None) -> Flask:
|
|
|
|
app: flask = Flask(__name__)
|
|
|
|
... (Configure the Flask application) ...
|
|
|
|
|
|
|
|
login_manager: LoginManager = LoginManager()
|
|
|
|
login_manager.init_app(app)
|
|
|
|
|
|
|
|
@login_manager.user_loader
|
|
|
|
def load_user(user_id: str) -> t.Optional[User]:
|
|
|
|
... (Load the user with the username) ...
|
|
|
|
|
|
|
|
auth.init_app(app)
|
|
|
|
|
|
|
|
@auth.register_get_password
|
|
|
|
def get_password_hash(username: str) -> t.Optional[str]:
|
|
|
|
... (Load the password hash) ...
|
|
|
|
|
|
|
|
return app
|
|
|
|
|
|
|
|
In your ``my_app/views.py``:
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
import flask_login
|
|
|
|
from flask import Flask, Blueprint, request, redirect
|
|
|
|
from my_app import auth
|
|
|
|
|
|
|
|
bp = Blueprint("admin", __name__, url_prefix="/admin")
|
|
|
|
|
|
|
|
@bp.get("/admin")
|
|
|
|
@flask_login.login_required
|
|
|
|
def admin():
|
|
|
|
return f"Hello, {flask_login.current_user.get_id()}!"
|
|
|
|
|
|
|
|
@app.post("/logout")
|
|
|
|
@flask_login.login_required
|
|
|
|
def logout():
|
|
|
|
auth.logout()
|
|
|
|
# Do not call flask_login.logout_user()
|
|
|
|
return redirect(request.form.get("next"))
|
|
|
|
|
|
|
|
def init_app(app: Flask) -> None:
|
|
|
|
app.register_blueprint(bp)
|
|
|
|
|
|
|
|
The views only depend on Flask-Login, but not the actual
|
|
|
|
authentication mechanism. You can change the actual authentication
|
|
|
|
mechanism without changing the views.
|