api: fix API header auth not passing to next auth method

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer 2022-03-31 00:06:01 +02:00
parent ac03f5a97d
commit 996bd05ba6
1 changed files with 2 additions and 0 deletions

View File

@ -32,6 +32,8 @@ def validate_auth(header: bytes) -> str:
def bearer_auth(raw_header: bytes) -> Optional[User]:
"""raw_header in the Format of `Bearer ....`"""
auth_credentials = validate_auth(raw_header)
if not auth_credentials:
return None
# first, check traditional tokens
token = Token.filter_not_expired(key=auth_credentials, intent=TokenIntents.INTENT_API).first()
if hasattr(LOCAL, "authentik"):