blob: e7a3f311bedadc0f780d8bdd99bfb3b024002211 [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
70 def __init__(self, conf):
71 self.conf = conf
Peter Razumovsky2810bb52016-03-03 15:36:12 +030072 if self.conf.auth_url.find('/v'):
73 self.v2_auth_url = self.conf.auth_url.replace('/v3', '/v2.0')
74 self.auth_version = self.conf.auth_url.split('/v')[1]
75 else:
76 raise ValueError(_('Incorrectly specified auth_url config: no '
77 'version found.'))
78
tyagi39aa11a2016-03-07 04:47:00 -080079 self.insecure = self.conf.disable_ssl_certificate_validation
80 self.ca_file = self.conf.ca_file
Steve Baker450aa7f2014-08-25 10:37:27 +120081 self.identity_client = self._get_identity_client()
82 self.orchestration_client = self._get_orchestration_client()
83 self.compute_client = self._get_compute_client()
84 self.network_client = self._get_network_client()
85 self.volume_client = self._get_volume_client()
Angus Salkeld4408da32015-02-03 18:53:30 +100086 self.object_client = self._get_object_client()
Angus Salkeld406bbd52015-05-13 14:24:04 +100087 self.metering_client = self._get_metering_client()
Steve Baker450aa7f2014-08-25 10:37:27 +120088
89 def _get_orchestration_client(self):
Angus Salkeld70c2f282014-11-21 08:51:41 +100090 endpoint = os.environ.get('HEAT_URL')
91 if os.environ.get('OS_NO_CLIENT_AUTH') == 'True':
92 token = None
93 else:
Rabi Mishra65493fb2016-01-29 22:23:21 +053094 token = self.identity_client.auth_token
Steve Baker450aa7f2014-08-25 10:37:27 +120095 try:
Angus Salkeld70c2f282014-11-21 08:51:41 +100096 if endpoint is None:
Rabi Mishra65493fb2016-01-29 22:23:21 +053097 endpoint = self.identity_client.get_endpoint_url(
98 'orchestration', self.conf.region)
Rabi Mishrae9dffe52016-02-05 14:36:58 +053099 except kc_exceptions.EndpointNotFound:
Steve Baker450aa7f2014-08-25 10:37:27 +1200100 return None
101 else:
Rabi Mishrae9dffe52016-02-05 14:36:58 +0530102 return heat_client.Client(
Steve Baker450aa7f2014-08-25 10:37:27 +1200103 self.HEATCLIENT_VERSION,
104 endpoint,
105 token=token,
106 username=self.conf.username,
107 password=self.conf.password)
108
109 def _get_identity_client(self):
Rabi Mishra1d538742016-03-21 21:09:20 +0530110 user_domain_name = self.conf.user_domain_name
111 project_domain_name = self.conf.project_domain_name
Rabi Mishra65493fb2016-01-29 22:23:21 +0530112 kwargs = {
113 'username': self.conf.username,
114 'password': self.conf.password,
115 'tenant_name': self.conf.tenant_name,
116 'auth_url': self.conf.auth_url
117 }
118 # keystone v2 can't ignore domain details
119 if self.auth_version == '3':
120 kwargs.update({
Rabi Mishra1d538742016-03-21 21:09:20 +0530121 'user_domain_name': user_domain_name,
122 'project_domain_name': project_domain_name})
Rabi Mishra65493fb2016-01-29 22:23:21 +0530123 auth = password.Password(**kwargs)
tyagi39aa11a2016-03-07 04:47:00 -0800124 if self.insecure:
125 verify_cert = False
126 else:
127 verify_cert = self.ca_file or True
128
129 return KeystoneWrapperClient(auth, verify_cert)
Steve Baker450aa7f2014-08-25 10:37:27 +1200130
131 def _get_compute_client(self):
132
Steve Baker450aa7f2014-08-25 10:37:27 +1200133 region = self.conf.region
134
135 client_args = (
136 self.conf.username,
137 self.conf.password,
138 self.conf.tenant_name,
Rabi Mishra65493fb2016-01-29 22:23:21 +0530139 # novaclient can not use v3 url
140 self.v2_auth_url
Steve Baker450aa7f2014-08-25 10:37:27 +1200141 )
142
143 # Create our default Nova client to use in testing
Rabi Mishrae9dffe52016-02-05 14:36:58 +0530144 return nova_client.Client(
huangtianhua15ad5322016-06-02 14:39:13 +0800145 self.NOVA_API_VERSION,
Steve Baker450aa7f2014-08-25 10:37:27 +1200146 *client_args,
147 service_type='compute',
148 endpoint_type='publicURL',
149 region_name=region,
150 no_cache=True,
tyagi39aa11a2016-03-07 04:47:00 -0800151 insecure=self.insecure,
152 cacert=self.ca_file,
Steve Baker450aa7f2014-08-25 10:37:27 +1200153 http_log_debug=True)
154
155 def _get_network_client(self):
Steve Baker450aa7f2014-08-25 10:37:27 +1200156
Rabi Mishrae9dffe52016-02-05 14:36:58 +0530157 return neutron_client.Client(
Steve Baker450aa7f2014-08-25 10:37:27 +1200158 username=self.conf.username,
159 password=self.conf.password,
160 tenant_name=self.conf.tenant_name,
161 endpoint_type='publicURL',
Rabi Mishra65493fb2016-01-29 22:23:21 +0530162 # neutronclient can not use v3 url
163 auth_url=self.v2_auth_url,
tyagi39aa11a2016-03-07 04:47:00 -0800164 insecure=self.insecure,
165 ca_cert=self.ca_file)
Steve Baker450aa7f2014-08-25 10:37:27 +1200166
167 def _get_volume_client(self):
Steve Baker450aa7f2014-08-25 10:37:27 +1200168 region = self.conf.region
169 endpoint_type = 'publicURL'
Rabi Mishrae9dffe52016-02-05 14:36:58 +0530170 return cinder_client.Client(
Steve Baker450aa7f2014-08-25 10:37:27 +1200171 self.CINDERCLIENT_VERSION,
172 self.conf.username,
173 self.conf.password,
174 self.conf.tenant_name,
Rabi Mishra65493fb2016-01-29 22:23:21 +0530175 # cinderclient can not use v3 url
176 self.v2_auth_url,
Steve Baker450aa7f2014-08-25 10:37:27 +1200177 region_name=region,
178 endpoint_type=endpoint_type,
tyagi39aa11a2016-03-07 04:47:00 -0800179 insecure=self.insecure,
180 cacert=self.ca_file,
Steve Baker450aa7f2014-08-25 10:37:27 +1200181 http_log_debug=True)
Angus Salkeld4408da32015-02-03 18:53:30 +1000182
183 def _get_object_client(self):
Angus Salkeld4408da32015-02-03 18:53:30 +1000184 args = {
Rabi Mishra65493fb2016-01-29 22:23:21 +0530185 'auth_version': self.auth_version,
Angus Salkeld4408da32015-02-03 18:53:30 +1000186 'tenant_name': self.conf.tenant_name,
187 'user': self.conf.username,
188 'key': self.conf.password,
189 'authurl': self.conf.auth_url,
190 'os_options': {'endpoint_type': 'publicURL'},
tyagi39aa11a2016-03-07 04:47:00 -0800191 'insecure': self.insecure,
192 'cacert': self.ca_file,
Angus Salkeld4408da32015-02-03 18:53:30 +1000193 }
Rabi Mishrae9dffe52016-02-05 14:36:58 +0530194 return swift_client.Connection(**args)
Angus Salkeld406bbd52015-05-13 14:24:04 +1000195
196 def _get_metering_client(self):
Rabi Mishra1d538742016-03-21 21:09:20 +0530197 user_domain_name = self.conf.user_domain_name
198 project_domain_name = self.conf.project_domain_name
Steve Baker5e4d5f42015-05-26 13:28:28 +1200199 try:
Rabi Mishra65493fb2016-01-29 22:23:21 +0530200 endpoint = self.identity_client.get_endpoint_url('metering',
201 self.conf.region)
Rabi Mishrae9dffe52016-02-05 14:36:58 +0530202 except kc_exceptions.EndpointNotFound:
Steve Baker5e4d5f42015-05-26 13:28:28 +1200203 return None
204 else:
205 args = {
206 'username': self.conf.username,
207 'password': self.conf.password,
208 'tenant_name': self.conf.tenant_name,
209 'auth_url': self.conf.auth_url,
tyagi39aa11a2016-03-07 04:47:00 -0800210 'insecure': self.insecure,
211 'cacert': self.ca_file,
Steve Baker5e4d5f42015-05-26 13:28:28 +1200212 'region_name': self.conf.region,
213 'endpoint_type': 'publicURL',
214 'service_type': 'metering',
215 }
Rabi Mishra65493fb2016-01-29 22:23:21 +0530216 # ceilometerclient can't ignore domain details for
217 # v2 auth_url
218 if self.auth_version == '3':
219 args.update(
Rabi Mishra1d538742016-03-21 21:09:20 +0530220 {'user_domain_name': user_domain_name,
221 'project_domain_name': project_domain_name})
Angus Salkeld406bbd52015-05-13 14:24:04 +1000222
Rabi Mishrae9dffe52016-02-05 14:36:58 +0530223 return ceilometer_client.Client(self.CEILOMETER_VERSION,
224 endpoint, **args)