From 8b7c598407a5fea9a3d78473e72df87606998cd4 Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Fri, 4 Aug 2023 10:10:28 +0300 Subject: Copy over files from GN3 repository. --- gn_auth/auth/db_utils.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 gn_auth/auth/db_utils.py (limited to 'gn_auth/auth/db_utils.py') diff --git a/gn_auth/auth/db_utils.py b/gn_auth/auth/db_utils.py new file mode 100644 index 0000000..c06b026 --- /dev/null +++ b/gn_auth/auth/db_utils.py @@ -0,0 +1,14 @@ +"""Some common auth db utilities""" +from typing import Any, Callable +from flask import current_app + +from . import db + +def with_db_connection(func: Callable[[db.DbConnection], Any]) -> Any: + """ + Takes a function of one argument `func`, whose one argument is a database + connection. + """ + db_uri = current_app.config["AUTH_DB"] + with db.connection(db_uri) as conn: + return func(conn) -- cgit v1.2.3