X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=o2common%2Fauthmw%2Fauthprov.py;h=11243df76e36eb8cc0035b38eb8d092ebfcbfd2f;hb=dddebe87e62dfefa79e03240ad48c8e0b351a6ed;hp=c6f5646af668a285cb6ef3ea3241bbf0cd57e87f;hpb=33c7e7d9ee099b7d718bd74209e983f04cdc0298;p=pti%2Fo2.git diff --git a/o2common/authmw/authprov.py b/o2common/authmw/authprov.py index c6f5646..11243df 100644 --- a/o2common/authmw/authprov.py +++ b/o2common/authmw/authprov.py @@ -24,14 +24,6 @@ from o2common.config.config import get_reviewer_token ssl._create_default_https_context = ssl._create_unverified_context logger = o2logging.get_logger(__name__) -# read the conf from config file -auth_prv_conf = get_auth_provider() - -try: - token_review_url = get_review_url() -except Exception: - raise Exception('Get k8s token review url failed') - class K8SAuthenticaException(Exception): def __init__(self, value): @@ -48,6 +40,8 @@ class auth_definer(): def __init__(self, name): super().__init__() self.name = name + # read the conf from config file + auth_prv_conf = get_auth_provider() if auth_prv_conf == 'k8s': self.obj = k8s_auth_provider('k8s') else: @@ -71,6 +65,10 @@ class k8s_auth_provider(auth_definer): def __init__(self, name): self.name = name + try: + self.token_review_url = get_review_url() + except Exception: + raise Exception('Failed to get k8s token review url.') def tokenissue(self, **args2): pass @@ -105,7 +103,7 @@ class k8s_auth_provider(auth_definer): 'Content-Type': 'application/json'} try: req = urllib.request.Request( - token_review_url, data=binary_data, headers=header) + self.token_review_url, data=binary_data, headers=header) response = urllib.request.urlopen(req) data = json.load(response) if data['status']['authenticated'] is True: