add Azure AD Source
This commit is contained in:
parent
5c75339946
commit
29d5962c4c
|
@ -123,6 +123,7 @@ data:
|
|||
- passbook.oauth_client.source_types.reddit
|
||||
- passbook.oauth_client.source_types.supervisr
|
||||
- passbook.oauth_client.source_types.twitter
|
||||
- passbook.oauth_client.source_types.azure_ad
|
||||
saml_idp:
|
||||
signing: true
|
||||
autosubmit: false
|
||||
|
|
|
@ -85,6 +85,7 @@ oauth_client:
|
|||
- passbook.oauth_client.source_types.reddit
|
||||
- passbook.oauth_client.source_types.supervisr
|
||||
- passbook.oauth_client.source_types.twitter
|
||||
- passbook.oauth_client.source_types.azure_ad
|
||||
saml_idp:
|
||||
# List of python packages with provider types to load.
|
||||
types:
|
||||
|
|
|
@ -108,3 +108,17 @@ class GoogleOAuthSourceForm(OAuthSourceForm):
|
|||
'access_token_url': 'https://accounts.google.com/o/oauth2/token',
|
||||
'profile_url': ' https://www.googleapis.com/oauth2/v1/userinfo',
|
||||
}
|
||||
|
||||
|
||||
class AzureADOAuthSourceForm(OAuthSourceForm):
|
||||
"""OAuth Source form with pre-determined URL for AzureAD"""
|
||||
|
||||
class Meta(OAuthSourceForm.Meta):
|
||||
|
||||
overrides = {
|
||||
'provider_type': 'azure_ad',
|
||||
'request_token_url': '',
|
||||
'authorization_url': 'https://login.microsoftonline.com/common/oauth2/authorize',
|
||||
'access_token_url': 'https://login.microsoftonline.com/common/oauth2/token',
|
||||
'profile_url': ' https://login.microsoftonline.com/common/openid/userinfo',
|
||||
}
|
||||
|
|
|
@ -0,0 +1,52 @@
|
|||
"""AzureAD OAuth2 Views"""
|
||||
import json
|
||||
import uuid
|
||||
from logging import getLogger
|
||||
|
||||
from requests.exceptions import RequestException
|
||||
|
||||
from passbook.oauth_client.clients import OAuth2Client
|
||||
from passbook.oauth_client.source_types.manager import MANAGER, RequestKind
|
||||
from passbook.oauth_client.utils import user_get_or_create
|
||||
from passbook.oauth_client.views.core import OAuthCallback
|
||||
|
||||
LOGGER = getLogger(__name__)
|
||||
|
||||
|
||||
class AzureADOAuth2Client(OAuth2Client):
|
||||
"""AzureAD OAuth2 Client"""
|
||||
|
||||
def get_profile_info(self, raw_token):
|
||||
"Fetch user profile information."
|
||||
try:
|
||||
token = json.loads(raw_token)['access_token']
|
||||
headers = {
|
||||
'Authorization': 'Bearer %s' % token
|
||||
}
|
||||
response = self.request('get', self.source.profile_url,
|
||||
headers=headers)
|
||||
response.raise_for_status()
|
||||
except RequestException as exc:
|
||||
LOGGER.warning('Unable to fetch user profile: %s', exc)
|
||||
return None
|
||||
else:
|
||||
return response.json() or response.text
|
||||
|
||||
|
||||
@MANAGER.source(kind=RequestKind.callback, name='Azure AD')
|
||||
class AzureADOAuthCallback(OAuthCallback):
|
||||
"""AzureAD OAuth2 Callback"""
|
||||
|
||||
client_class = AzureADOAuth2Client
|
||||
|
||||
def get_user_id(self, source, info):
|
||||
return uuid.UUID(info.get('objectId')).int
|
||||
|
||||
def get_or_create_user(self, source, access, info):
|
||||
user_data = {
|
||||
'username': info.get('displayName'),
|
||||
'email': info.get('mail', None) or info.get('otherMails')[0],
|
||||
'name': info.get('displayName'),
|
||||
'password': None,
|
||||
}
|
||||
return user_get_or_create(**user_data)
|
Reference in New Issue