From 8e758d67de9f5047a33c7c9266ac058856edcfc7 Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Thu, 26 Sep 2024 11:28:03 -0500 Subject: Lint: Add documentation strings. Fix import order. --- gn_auth/hooks.py | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'gn_auth') diff --git a/gn_auth/hooks.py b/gn_auth/hooks.py index a4240f4..bd7380b 100644 --- a/gn_auth/hooks.py +++ b/gn_auth/hooks.py @@ -1,14 +1,19 @@ +"""Authorisation hooks implementation""" +import functools from typing import List + from flask import request_finished from flask import request, current_app + from gn_auth.auth.db import sqlite3 as db -import functools def register_hooks(app): + """Initialise hooks system on the application.""" request_finished.connect(edu_domain_hook, app) def handle_register_request(func): + """Decorator for handling user registration hooks.""" @functools.wraps(func) def wrapper(*args, **kwargs): if request.method == "POST" and request.endpoint == "oauth2.users.register_user": @@ -19,7 +24,8 @@ def handle_register_request(func): @handle_register_request -def edu_domain_hook(sender, response, **extra): +def edu_domain_hook(_sender, response, **_extra): + """Hook to run whenever a user with a `.edu` domain registers.""" if response.status_code >= 400: return data = request.get_json() @@ -30,6 +36,7 @@ def edu_domain_hook(sender, response, **extra): def apply_edu_role(email): + """Assign 'hook-role-from-edu-domain' to user.""" with db.connection(current_app.config["AUTH_DB"]) as conn: with db.cursor(conn) as cursor: cursor.execute("SELECT user_id FROM users WHERE email= ?", (email,) ) -- cgit v1.2.3