blob: 48db671affd0c7165f3bc81579f4f674052402ca [file] [log] [blame]
Steve Baker450aa7f2014-08-25 10:37:27 +12001# Licensed under the Apache License, Version 2.0 (the "License"); you may
2# not use this file except in compliance with the License. You may obtain
3# a copy of the License at
4#
5# http://www.apache.org/licenses/LICENSE-2.0
6#
7# Unless required by applicable law or agreed to in writing, software
8# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
9# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
10# License for the specific language governing permissions and limitations
11# under the License.
12
Angus Salkeld70c2f282014-11-21 08:51:41 +100013import os
14
Rabi Mishrae9dffe52016-02-05 14:36:58 +053015from ceilometerclient import client as ceilometer_client
16from cinderclient import client as cinder_client
Peter Razumovsky2810bb52016-03-03 15:36:12 +030017from heat.common.i18n import _
Rabi Mishrae9dffe52016-02-05 14:36:58 +053018from heatclient import client as heat_client
Ethan Lynn07fac1f2016-05-10 23:09:51 +080019from keystoneauth1 import exceptions as kc_exceptions
20from keystoneauth1.identity.generic import password
21from keystoneauth1 import session
Rabi Mishrae9dffe52016-02-05 14:36:58 +053022from neutronclient.v2_0 import client as neutron_client
23from novaclient import client as nova_client
24from swiftclient import client as swift_client
Steve Baker450aa7f2014-08-25 10:37:27 +120025
Steve Baker450aa7f2014-08-25 10:37:27 +120026
Rabi Mishra65493fb2016-01-29 22:23:21 +053027class KeystoneWrapperClient(object):
28 """Wrapper object for keystone client
29
Rabi Mishrae9dffe52016-02-05 14:36:58 +053030 This wraps keystone client, so we can encpasulate certain
Rabi Mishra65493fb2016-01-29 22:23:21 +053031 added properties like auth_token, project_id etc.
32 """
33 def __init__(self, auth_plugin, verify=True):
34 self.auth_plugin = auth_plugin
35 self.session = session.Session(
36 auth=auth_plugin,
37 verify=verify)
38
39 @property
40 def auth_token(self):
41 return self.auth_plugin.get_token(self.session)
42
43 @property
44 def auth_ref(self):
45 return self.auth_plugin.get_access(self.session)
46
47 @property
48 def project_id(self):
49 return self.auth_plugin.get_project_id(self.session)
50
51 def get_endpoint_url(self, service_type, region=None):
52 kwargs = {
53 'service_type': service_type,
Ethan Lynn07fac1f2016-05-10 23:09:51 +080054 'region_name': region}
Rabi Mishra65493fb2016-01-29 22:23:21 +053055 return self.auth_ref.service_catalog.url_for(**kwargs)
56
57
Steve Baker450aa7f2014-08-25 10:37:27 +120058class ClientManager(object):
Peter Razumovskyf0ac9582015-09-24 16:49:03 +030059 """Provides access to the official python clients for calling various APIs.
60
Steve Baker450aa7f2014-08-25 10:37:27 +120061 Manager that provides access to the official python clients for
62 calling various OpenStack APIs.
63 """
64
Rabi Mishraa30ac122015-09-29 11:47:52 +053065 CINDERCLIENT_VERSION = '2'
Steve Baker450aa7f2014-08-25 10:37:27 +120066 HEATCLIENT_VERSION = '1'
huangtianhua15ad5322016-06-02 14:39:13 +080067 NOVA_API_VERSION = '2.1'
Angus Salkeld406bbd52015-05-13 14:24:04 +100068 CEILOMETER_VERSION = '2'
Steve Baker450aa7f2014-08-25 10:37:27 +120069
Steve Bakerb752e912016-08-01 22:05:37 +000070 def __init__(self, conf, admin_credentials=False):
Steve Baker450aa7f2014-08-25 10:37:27 +120071 self.conf = conf
Steve Bakerb752e912016-08-01 22:05:37 +000072 self.admin_credentials = admin_credentials
73
rabi8fcf1922017-04-19 09:21:54 +053074 self.auth_version = self.conf.auth_version
75 if not self.auth_version:
76 try:
77 self.auth_version = self.conf.auth_url.split('/v')[1]
78 except IndexError:
79 raise ValueError(_('Please specify version in auth_url or '
80 'auth_version in config.'))
tyagi39aa11a2016-03-07 04:47:00 -080081 self.insecure = self.conf.disable_ssl_certificate_validation
82 self.ca_file = self.conf.ca_file
Rabi Mishra17f41de2016-05-03 11:19:41 +053083
Steve Baker450aa7f2014-08-25 10:37:27 +120084 self.identity_client = self._get_identity_client()
85 self.orchestration_client = self._get_orchestration_client()
86 self.compute_client = self._get_compute_client()
87 self.network_client = self._get_network_client()
88 self.volume_client = self._get_volume_client()
Angus Salkeld4408da32015-02-03 18:53:30 +100089 self.object_client = self._get_object_client()
Angus Salkeld406bbd52015-05-13 14:24:04 +100090 self.metering_client = self._get_metering_client()
Steve Baker450aa7f2014-08-25 10:37:27 +120091
Steve Bakerb752e912016-08-01 22:05:37 +000092 def _username(self):
93 if self.admin_credentials:
94 return self.conf.admin_username
95 return self.conf.username
96
97 def _password(self):
98 if self.admin_credentials:
99 return self.conf.admin_password
100 return self.conf.password
101
rabibe38c302017-04-11 09:54:07 +0530102 def _project_name(self):
Steve Bakerb752e912016-08-01 22:05:37 +0000103 if self.admin_credentials:
rabibe38c302017-04-11 09:54:07 +0530104 return self.conf.admin_project_name
105 return self.conf.project_name
Steve Bakerb752e912016-08-01 22:05:37 +0000106
Steve Baker450aa7f2014-08-25 10:37:27 +1200107 def _get_orchestration_client(self):
Angus Salkeld70c2f282014-11-21 08:51:41 +1000108 endpoint = os.environ.get('HEAT_URL')
109 if os.environ.get('OS_NO_CLIENT_AUTH') == 'True':
110 token = None
111 else:
Rabi Mishra65493fb2016-01-29 22:23:21 +0530112 token = self.identity_client.auth_token
Steve Baker450aa7f2014-08-25 10:37:27 +1200113 try:
Angus Salkeld70c2f282014-11-21 08:51:41 +1000114 if endpoint is None:
Rabi Mishra65493fb2016-01-29 22:23:21 +0530115 endpoint = self.identity_client.get_endpoint_url(
116 'orchestration', self.conf.region)
Rabi Mishrae9dffe52016-02-05 14:36:58 +0530117 except kc_exceptions.EndpointNotFound:
Steve Baker450aa7f2014-08-25 10:37:27 +1200118 return None
119 else:
Rabi Mishrae9dffe52016-02-05 14:36:58 +0530120 return heat_client.Client(
Steve Baker450aa7f2014-08-25 10:37:27 +1200121 self.HEATCLIENT_VERSION,
122 endpoint,
123 token=token,
Steve Bakerb752e912016-08-01 22:05:37 +0000124 username=self._username(),
125 password=self._password())
Steve Baker450aa7f2014-08-25 10:37:27 +1200126
127 def _get_identity_client(self):
rabi133ee5f2016-12-01 09:54:37 +0530128 user_domain_id = self.conf.user_domain_id
129 project_domain_id = self.conf.project_domain_id
Rabi Mishra1d538742016-03-21 21:09:20 +0530130 user_domain_name = self.conf.user_domain_name
131 project_domain_name = self.conf.project_domain_name
Rabi Mishra65493fb2016-01-29 22:23:21 +0530132 kwargs = {
Steve Bakerb752e912016-08-01 22:05:37 +0000133 'username': self._username(),
134 'password': self._password(),
rabibe38c302017-04-11 09:54:07 +0530135 'project_name': self._project_name(),
Rabi Mishra65493fb2016-01-29 22:23:21 +0530136 'auth_url': self.conf.auth_url
137 }
138 # keystone v2 can't ignore domain details
139 if self.auth_version == '3':
140 kwargs.update({
rabi133ee5f2016-12-01 09:54:37 +0530141 'user_domain_id': user_domain_id,
142 'project_domain_id': project_domain_id,
Rabi Mishra1d538742016-03-21 21:09:20 +0530143 'user_domain_name': user_domain_name,
144 'project_domain_name': project_domain_name})
Rabi Mishra65493fb2016-01-29 22:23:21 +0530145 auth = password.Password(**kwargs)
tyagi39aa11a2016-03-07 04:47:00 -0800146 if self.insecure:
147 verify_cert = False
148 else:
149 verify_cert = self.ca_file or True
150
151 return KeystoneWrapperClient(auth, verify_cert)
Steve Baker450aa7f2014-08-25 10:37:27 +1200152
153 def _get_compute_client(self):
Steve Baker450aa7f2014-08-25 10:37:27 +1200154 # Create our default Nova client to use in testing
Rabi Mishrae9dffe52016-02-05 14:36:58 +0530155 return nova_client.Client(
huangtianhua15ad5322016-06-02 14:39:13 +0800156 self.NOVA_API_VERSION,
Rabi Mishra17f41de2016-05-03 11:19:41 +0530157 session=self.identity_client.session,
Steve Baker450aa7f2014-08-25 10:37:27 +1200158 service_type='compute',
159 endpoint_type='publicURL',
rabi613f8152017-02-14 18:59:15 +0530160 region_name=self.conf.region,
rabi530626f2017-01-20 07:53:38 +0530161 os_cache=False,
Steve Baker450aa7f2014-08-25 10:37:27 +1200162 http_log_debug=True)
163
164 def _get_network_client(self):
Steve Baker450aa7f2014-08-25 10:37:27 +1200165
Rabi Mishrae9dffe52016-02-05 14:36:58 +0530166 return neutron_client.Client(
Rabi Mishra17f41de2016-05-03 11:19:41 +0530167 session=self.identity_client.session,
rabi613f8152017-02-14 18:59:15 +0530168 service_type='network',
169 region_name=self.conf.region,
170 endpoint_type='publicURL')
Steve Baker450aa7f2014-08-25 10:37:27 +1200171
172 def _get_volume_client(self):
Rabi Mishrae9dffe52016-02-05 14:36:58 +0530173 return cinder_client.Client(
Steve Baker450aa7f2014-08-25 10:37:27 +1200174 self.CINDERCLIENT_VERSION,
Rabi Mishra17f41de2016-05-03 11:19:41 +0530175 session=self.identity_client.session,
rabi613f8152017-02-14 18:59:15 +0530176 endpoint_type='publicURL',
177 region_name=self.conf.region,
Steve Baker450aa7f2014-08-25 10:37:27 +1200178 http_log_debug=True)
Angus Salkeld4408da32015-02-03 18:53:30 +1000179
180 def _get_object_client(self):
Angus Salkeld4408da32015-02-03 18:53:30 +1000181 args = {
Rabi Mishra65493fb2016-01-29 22:23:21 +0530182 'auth_version': self.auth_version,
rabi613f8152017-02-14 18:59:15 +0530183 'session': self.identity_client.session,
184 'os_options': {'endpoint_type': 'publicURL',
185 'region_name': self.conf.region,
186 'service_type': 'object-store'},
Angus Salkeld4408da32015-02-03 18:53:30 +1000187 }
Rabi Mishrae9dffe52016-02-05 14:36:58 +0530188 return swift_client.Connection(**args)
Angus Salkeld406bbd52015-05-13 14:24:04 +1000189
190 def _get_metering_client(self):
Steve Baker5e4d5f42015-05-26 13:28:28 +1200191 try:
Rabi Mishra65493fb2016-01-29 22:23:21 +0530192 endpoint = self.identity_client.get_endpoint_url('metering',
193 self.conf.region)
Rabi Mishrae9dffe52016-02-05 14:36:58 +0530194 except kc_exceptions.EndpointNotFound:
Steve Baker5e4d5f42015-05-26 13:28:28 +1200195 return None
196 else:
197 args = {
Rabi Mishra17f41de2016-05-03 11:19:41 +0530198 'session': self.identity_client.session,
Steve Baker5e4d5f42015-05-26 13:28:28 +1200199 'region_name': self.conf.region,
200 'endpoint_type': 'publicURL',
201 'service_type': 'metering',
202 }
Rabi Mishrae9dffe52016-02-05 14:36:58 +0530203 return ceilometer_client.Client(self.CEILOMETER_VERSION,
204 endpoint, **args)