mirror of
https://github.com/vmware/vsphere-automation-sdk-python.git
synced 2024-11-23 09:59:59 -05:00
62 lines
2.7 KiB
Python
62 lines
2.7 KiB
Python
|
"""
|
||
|
* *******************************************************
|
||
|
* Copyright (c) VMware, Inc. 2013, 2016. All Rights Reserved.
|
||
|
* *******************************************************
|
||
|
*
|
||
|
* DISCLAIMER. THIS PROGRAM IS PROVIDED TO YOU "AS IS" WITHOUT
|
||
|
* WARRANTIES OR CONDITIONS OF ANY KIND, WHETHER ORAL OR WRITTEN,
|
||
|
* EXPRESS OR IMPLIED. THE AUTHOR SPECIFICALLY DISCLAIMS ANY IMPLIED
|
||
|
* WARRANTIES OR CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY,
|
||
|
* NON-INFRINGEMENT AND FITNESS FOR A PARTICULAR PURPOSE.
|
||
|
"""
|
||
|
|
||
|
|
||
|
__author__ = 'VMware, Inc.'
|
||
|
__copyright__ = 'Copyright 2013, 2016 VMware, Inc. All rights reserved.'
|
||
|
|
||
|
|
||
|
from vsphere.samples.common import sso
|
||
|
from vmware.vapi.security.sso import create_saml_bearer_security_context
|
||
|
from vsphere.samples.common.lookup_service_helper import LookupServiceHelper
|
||
|
from vsphere.samples.common.logging_context import LoggingContext
|
||
|
from vsphere.samples.common.ssl_helper import get_unverified_context
|
||
|
|
||
|
logger = LoggingContext.get_logger('vsphere.samples.common.platform_service_controller')
|
||
|
|
||
|
|
||
|
class PlatformServiceController(object):
|
||
|
"""
|
||
|
Manages services on the infrastructure node (e.g. lookup service, SSO etc.)
|
||
|
"""
|
||
|
def __init__(self, lswsdlurl, lssoapurl, ssousername, ssopassword, skip_verification):
|
||
|
self.lswsdlurl = lswsdlurl
|
||
|
self.lssoapurl = lssoapurl
|
||
|
self.ssousername = ssousername
|
||
|
self.ssopassword = ssopassword
|
||
|
self.lookupservicehelper = None
|
||
|
self.stsurl = None
|
||
|
self.bearer_token = None # SAML bearer token
|
||
|
self.sec_ctx = None # Security context
|
||
|
self.skip_verification = skip_verification
|
||
|
|
||
|
def login(self):
|
||
|
"""
|
||
|
Finds the SSO URL from the lookup service and retrieves the SAML token from STS URL
|
||
|
"""
|
||
|
logger.info('Connecting to lookup service url: {0}'.format(self.lssoapurl))
|
||
|
self.lookupservicehelper = LookupServiceHelper(wsdl_url=self.lswsdlurl,
|
||
|
soap_url=self.lssoapurl,
|
||
|
skip_verification=self.skip_verification)
|
||
|
self.lookupservicehelper.connect()
|
||
|
|
||
|
self.stsurl = self.lookupservicehelper.find_sso_url()
|
||
|
assert self.stsurl is not None
|
||
|
|
||
|
logger.info('Retrieving a SAML bearer token from STS url : {0}'.format(self.stsurl))
|
||
|
au = sso.SsoAuthenticator(self.stsurl)
|
||
|
context = None
|
||
|
if self.skip_verification:
|
||
|
context = get_unverified_context()
|
||
|
self.bearer_token = au.get_bearer_saml_assertion(
|
||
|
self.ssousername, self.ssopassword, delegatable=True, ssl_context=context)
|
||
|
self.sec_ctx = create_saml_bearer_security_context(self.bearer_token)
|