This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2020-03-01 21:55:56 +00:00
|
|
|
"""passbook oidc claim helpers"""
|
|
|
|
from typing import Any, Dict
|
|
|
|
|
|
|
|
from passbook.core.models import User
|
|
|
|
|
|
|
|
|
|
|
|
def userinfo(claims: Dict[str, Any], user: User) -> Dict[str, Any]:
|
|
|
|
"""Populate claims from userdata"""
|
|
|
|
claims["name"] = user.name
|
|
|
|
claims["given_name"] = user.name
|
|
|
|
claims["family_name"] = user.name
|
|
|
|
claims["email"] = user.email
|
2020-06-19 17:34:27 +00:00
|
|
|
claims["preferred_username"] = user.username
|
2020-03-01 21:55:56 +00:00
|
|
|
return claims
|