-
Notifications
You must be signed in to change notification settings - Fork 0
/
vmc_auth.py
46 lines (40 loc) · 1.98 KB
/
vmc_auth.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
## API authentication module for Import/Export for NSX
################################################################################
### Copyright 2020-2023 VMware, Inc.
### Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved
### SPDX-License-Identifier: BSD-2-Clause
################################################################################
import json
import requests
import datetime
class VMCAuth:
def __init__(self, strCSPProdURL: str):
self.access_token = None
self.access_token_expiration = None
self.activeRefreshToken = None
self.strCSPProdURL = strCSPProdURL
def getAccessToken(self,myRefreshToken):
""" Gets the Access Token using the Refresh Token """
self.activeRefreshToken = myRefreshToken
params = {'api_token': myRefreshToken}
headers = {'Content-Type': 'application/x-www-form-urlencoded'}
try:
response = requests.post(f'{self.strCSPProdURL}/csp/gateway/am/api/auth/api-tokens/authorize', params=params, headers=headers)
jsonResponse = response.json()
self.access_token = jsonResponse['access_token']
expires_in = jsonResponse['expires_in']
expirestime = datetime.datetime.now() + datetime.timedelta(seconds=expires_in)
self.access_token_expiration = expirestime
print(f'Token expires at {expirestime}')
except:
self.access_token = None
self.access_token_expiration = None
print(jsonResponse)
return self.access_token
def check_access_token_expiration(self) -> None:
"""Retrieve a new access token if it is near expiration"""
if self.access_token_expiration is not None:
time_to_expire = self.access_token_expiration - datetime.datetime.now()
if time_to_expire.total_seconds() <= 100:
print('Access token expired, attempting to refresh...')
self.getAccessToken(self.activeRefreshToken)