From 96d690f8297c7a08d76a274e6a78d46f826b1c5d Mon Sep 17 00:00:00 2001 From: Alexander Pace <alexander.pace@ligo.org> Date: Tue, 14 Feb 2023 19:22:50 +0000 Subject: [PATCH] fix for user logins with shibboleth --- gracedb/ligoauth/middleware.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gracedb/ligoauth/middleware.py b/gracedb/ligoauth/middleware.py index 934bfd16f..7fe6b84b8 100644 --- a/gracedb/ligoauth/middleware.py +++ b/gracedb/ligoauth/middleware.py @@ -56,6 +56,8 @@ class ShibbolethWebAuthMiddleware(PersistentRemoteUserMiddleware): # in the header (for some reason) if (username is None or username == '(null)'): return + else: + username = username.lower() # If shib headers are available and the user is already authenticated, # double-check that the request user and the shib user are the same. -- GitLab