-
Notifications
You must be signed in to change notification settings - Fork 0
💥 Feat/retrieve users info from azure#155 #164
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
fbb5761
feat: add msal to requirements
Angeluz-07 8a1e36d
feat: add baseline class to get users' information from azure
Angeluz-07 dbea8ea
feat: add owner email to time-entries payload
Angeluz-07 74e9eea
feat: make a function to get user's info
Angeluz-07 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
feat: add baseline class to get users' information from azure
- Loading branch information
commit 8a1e36df3dc9e572cbb0c0e0a74201c8163d2032
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,53 @@ | ||
| import msal | ||
| import os | ||
| import requests | ||
|
|
||
|
|
||
| class MSALConfig: | ||
| MSAL_CLIENT_ID = os.environ.get('MSAL_CLIENT_ID') | ||
| MSAL_AUTHORITY = os.environ.get('MSAL_AUTHORITY') | ||
| MSAL_SECRET = os.environ.get('MSAL_SECRET') | ||
| MSAL_SCOPE = os.environ.get('MSAL_SCOPE') | ||
| MSAL_ENDPOINT = os.environ.get('MSAL_ENDPOINT') | ||
| """ | ||
| TODO : Add validation to ensure variables are set | ||
| """ | ||
|
|
||
|
|
||
| class AzureUsers: | ||
| def __init__(self, config=MSALConfig): | ||
| self.client = msal.ConfidentialClientApplication( | ||
| config.MSAL_CLIENT_ID, | ||
| authority=config.MSAL_AUTHORITY, | ||
| client_credential=config.MSAL_SECRET, | ||
| ) | ||
| self.config = config | ||
| self.set_token() | ||
|
|
||
| def set_token(self): | ||
| response = self.client.acquire_token_for_client( | ||
| scopes=self.config.MSAL_SCOPE | ||
| ) | ||
| if "access_token" in response: | ||
| # Call a protected API with the access token. | ||
| # print(response["access_token"]) | ||
| self.access_token = response['access_token'] | ||
| else: | ||
| print(response.get("error")) | ||
| print(response.get("error_description")) | ||
| print( | ||
| response.get("correlation_id") | ||
| ) # You might need this when reporting a bug | ||
|
|
||
| def get_user_info_by_id(self, id): | ||
| endpoint = f"{self.config.MSAL_ENDPOINT}/users/{id}?api-version=1.6&$select=displayName,otherMails" | ||
| print(endpoint) | ||
| http_headers = { | ||
| 'Authorization': f'Bearer {self.access_token}', | ||
| 'Accept': 'application/json', | ||
| 'Content-Type': 'application/json', | ||
| } | ||
| data = requests.get( | ||
| endpoint, headers=http_headers, stream=False | ||
| ).json() | ||
| return data | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.