website/integrations: add missing read:org scope for github org check and improve error handling

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer 2022-10-25 21:17:08 +02:00
parent 24e02c82dc
commit 2206b71f6f
1 changed files with 10 additions and 4 deletions

View File

@ -58,15 +58,19 @@ Requires authentik 2021.12.5.
To check if the user is member of an organisation, you can use the following policy on your flows: To check if the user is member of an organisation, you can use the following policy on your flows:
:::info
Make sure to include `read:org` in the sources' _Scopes_ setting.
:::
```python ```python
# Ensure flow is only run during oauth logins via Github # Ensure flow is only run during oauth logins via Github
if context['source'].provider_type != "github": if context["source"].provider_type != "github":
return True return True
accepted_org = "foo" accepted_org = "foo"
# Get the user-source connection object from the context, and get the access token # Get the user-source connection object from the context, and get the access token
connection = context['goauthentik.io/sources/connection'] connection = context["goauthentik.io/sources/connection"]
access_token = connection.access_token access_token = connection.access_token
# We also access the user info authentik already retrieved, to get the correct username # We also access the user info authentik already retrieved, to get the correct username
@ -74,13 +78,15 @@ github_username = context["oauth_userinfo"]
# Github does not include Organisations in the userinfo endpoint, so we have to call another URL # Github does not include Organisations in the userinfo endpoint, so we have to call another URL
orgs = requests.get( orgs_response = requests.get(
"https://api.github.com/user/orgs", "https://api.github.com/user/orgs",
auth=(github_username["login"], access_token), auth=(github_username["login"], access_token),
headers={ headers={
"accept": "application/vnd.github.v3+json" "accept": "application/vnd.github.v3+json"
} }
).json() )
orgs_response.raise_for_status()
orgs = orgs_response.json()
# `orgs` will be formatted like this # `orgs` will be formatted like this
# [ # [