5cbc5e722e
All client interactions should actually flow through a keystoneauth Session. Add the parameter for a user to pass one in, but support the old style of direct parameters too. A followup patch will add os-client-config support to the shell, so add that to requirements.txt instead of keystoneauth directly to look forward. Also, trim unneeded things from requirements.txt because we're adding os-client-config which pulls in various things. Closes-Bug: #1514733 Change-Id: I88b1d0e4e119429599dec75c5db24237a92edcec
111 lines
4.3 KiB
Python
111 lines
4.3 KiB
Python
# Copyright 2014
|
|
# The Cloudscaling Group, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
|
|
# use this file except in compliance with the License. You may obtain a copy
|
|
# of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
from keystoneauth1 import loading
|
|
from keystoneauth1 import session as ksa_session
|
|
|
|
from magnumclient.common import httpclient
|
|
from magnumclient.v1 import baymodels
|
|
from magnumclient.v1 import bays
|
|
from magnumclient.v1 import certificates
|
|
from magnumclient.v1 import containers
|
|
from magnumclient.v1 import mservices
|
|
from magnumclient.v1 import nodes
|
|
from magnumclient.v1 import pods
|
|
from magnumclient.v1 import replicationcontrollers as rcs
|
|
from magnumclient.v1 import services
|
|
|
|
|
|
class Client(object):
|
|
def __init__(self, username=None, api_key=None, project_id=None,
|
|
project_name=None, auth_url=None, magnum_url=None,
|
|
endpoint_type=None, service_type='container',
|
|
region_name=None, input_auth_token=None,
|
|
session=None, password=None, auth_type='password',
|
|
interface='public', service_name=None):
|
|
|
|
# We have to keep the api_key are for backwards compat, but let's
|
|
# remove it from the rest of our code since it's not a keystone
|
|
# concept
|
|
if not password:
|
|
password = api_key
|
|
# Backwards compat for people assing in endpoint_type
|
|
if endpoint_type:
|
|
interface = endpoint_type
|
|
|
|
if magnum_url and input_auth_token:
|
|
auth_type = 'admin_token'
|
|
session = None
|
|
loader_kwargs = dict(
|
|
token=input_auth_token,
|
|
endpoint=magnum_url)
|
|
elif input_auth_token and not session:
|
|
auth_type = 'token'
|
|
loader_kwargs = dict(
|
|
token=input_auth_token,
|
|
auth_url=auth_url,
|
|
project_id=project_id,
|
|
project_name=project_name)
|
|
else:
|
|
loader_kwargs = dict(
|
|
username=username,
|
|
password=password,
|
|
auth_url=auth_url,
|
|
project_id=project_id,
|
|
project_name=project_name)
|
|
|
|
# Backwards compatability for people not passing in Session
|
|
if session is None:
|
|
loader = loading.get_plugin_loader(auth_type)
|
|
|
|
# This only supports keystone v2 password auth - but we can
|
|
# support other auth by passing in a Session, which is the
|
|
# right thing to do anyway
|
|
auth_plugin = loader.load_from_options(**loader_kwargs)
|
|
session = ksa_session.Session(auth=auth_plugin)
|
|
|
|
client_kwargs = {}
|
|
if magnum_url:
|
|
client_kwargs['endpoint_override'] = magnum_url
|
|
|
|
if not magnum_url:
|
|
try:
|
|
# Trigger an auth error so that we can throw the exception
|
|
# we always have
|
|
session.get_endpoint(
|
|
service_type=service_type,
|
|
service_name=service_name,
|
|
interface=interface,
|
|
region_name=region_name)
|
|
except Exception:
|
|
raise RuntimeError("Not Authorized")
|
|
|
|
self.http_client = httpclient.SessionClient(
|
|
service_type=service_type,
|
|
service_name=service_name,
|
|
interface=interface,
|
|
region_name=region_name,
|
|
session=session,
|
|
**client_kwargs)
|
|
self.bays = bays.BayManager(self.http_client)
|
|
self.certificates = certificates.CertificateManager(self.http_client)
|
|
self.baymodels = baymodels.BayModelManager(self.http_client)
|
|
self.containers = containers.ContainerManager(self.http_client)
|
|
self.nodes = nodes.NodeManager(self.http_client)
|
|
self.pods = pods.PodManager(self.http_client)
|
|
self.rcs = rcs.ReplicationControllerManager(self.http_client)
|
|
self.services = services.ServiceManager(self.http_client)
|
|
self.mservices = mservices.MServiceManager(self.http_client)
|