Oidc
Module contains the OIDC Authentication class.
OIDCAuthentication
Bases: OIDCAuth
OIDCUser class extends the HTTPBearer
class to do extra verification.
The class will act as follows: Validate the Credentials at the AAI proxy by calling the UserInfo endpoint.
Source code in gso/auth/oidc.py
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 |
|
is_bypassable_request(request)
async
staticmethod
userinfo(async_request, token)
async
Get the userinfo from the openid server.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
async_request
|
AsyncClient
|
The async request. |
required |
token
|
str
|
The access token. |
required |
Returns:
Name | Type | Description |
---|---|---|
OIDCUserModel |
OIDCUserModel
|
OIDC user model from openid server. |
Source code in gso/auth/oidc.py
introspect_token(async_request, token)
async
Introspect the access token to see if it is a valid token.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
async_request
|
AsyncClient
|
The async request |
required |
token
|
str
|
the access_token |
required |
Returns:
Type | Description |
---|---|
dict
|
dict from openid server |
Source code in gso/auth/oidc.py
_is_callback_step_endpoint(request)
ensure_openid_config_loaded(func)
Ensure that the openid_config is loaded before calling the function.