Files
python-fuelclient/fuelclient/client.py
Roman Prykhodchenko 1566c52f3d Use OS command line parameters for credentials
In order to comply with OpenStack de-facto standards
user's credentials must be supplied via appropriate
--os parameters.

Closes-bug: #1535417
Change-Id: Ifd186f0d703a840635f6f111c379338e93fde0a3
2016-02-12 16:01:47 +01:00

234 lines
7.2 KiB
Python

# Copyright 2014 Mirantis, 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.
import json
import logging
import requests
from keystoneclient.v2_0 import client as auth_client
from six.moves.urllib import parse as urlparse
from fuelclient.cli import error
from fuelclient import fuelclient_settings
from fuelclient.logs import NullHandler
# configure logging to silent all logs
# and prevent issues in keystoneclient logging
logger = logging.getLogger()
logger.addHandler(NullHandler())
class Client(object):
"""This class handles API requests
"""
def __init__(self):
conf = fuelclient_settings.get_settings()
self.debug = False
self.root = "http://{server}:{port}".format(server=conf.SERVER_ADDRESS,
port=conf.SERVER_PORT)
self.keystone_base = urlparse.urljoin(self.root, "/keystone/v2.0")
self.api_root = urlparse.urljoin(self.root, "/api/v1/")
self.ostf_root = urlparse.urljoin(self.root, "/ostf/")
self._keystone_client = None
self._auth_required = None
self._session = None
def _make_common_headers(self):
"""Returns a dict of HTTP headers common for all requests."""
return {'Content-Type': 'application/json',
'Accept': 'application/json',
'X-Auth-Token': self.auth_token}
def _make_proxies(self):
"""Provides HTTP proxy configuration for requests module."""
conf = fuelclient_settings.get_settings()
if conf.HTTP_PROXY is None:
return None
return {'http': conf.HTTP_PROXY,
'https': conf.HTTP_PROXY}
def _make_session(self):
"""Initializes a HTTP session."""
conf = fuelclient_settings.get_settings()
session = requests.Session()
session.headers.update(self._make_common_headers())
session.timeout = conf.HTTP_TIMEOUT
session.proxies = self._make_proxies()
return session
@property
def session(self):
"""Lazy initialization of a session
Since HTTP client is a singleton test runners cannot
collect tests due to keystone authentication issues.
TODO(romcheg): remove lazy initialization for session
when HTTP client is not a singleton.
"""
if self._session is None:
self._session = self._make_session()
return self._session
@property
def auth_token(self):
if self.auth_required:
if not self.keystone_client.auth_token:
self.keystone_client.authenticate()
return self.keystone_client.auth_token
return ''
@property
def auth_required(self):
if self._auth_required is None:
url = self.api_root + 'version'
resp = requests.get(url)
self._raise_for_status_with_info(resp)
self._auth_required = resp.json().get('auth_required', False)
return self._auth_required
@property
def keystone_client(self):
if not self._keystone_client:
self.initialize_keystone_client()
return self._keystone_client
def update_own_password(self, new_pass):
conf = fuelclient_settings.get_settings()
if self.auth_token:
self.keystone_client.users.update_own_password(conf.OS_PASSWORD,
new_pass)
def initialize_keystone_client(self):
conf = fuelclient_settings.get_settings()
if self.auth_required:
self._keystone_client = auth_client.Client(
auth_url=self.keystone_base,
username=conf.OS_USERNAME,
password=conf.OS_PASSWORD,
tenant_name=conf.OS_TENANT_NAME)
self._keystone_client.session.auth = self._keystone_client
self._keystone_client.authenticate()
def debug_mode(self, debug=False):
self.debug = debug
return self
def print_debug(self, message):
if self.debug:
print(message)
def delete_request(self, api):
"""Make DELETE request to specific API with some data."""
url = self.api_root + api
self.print_debug('DELETE {0}'.format(url))
resp = self.session.delete(url)
self._raise_for_status_with_info(resp)
if resp.status_code == 204:
return {}
return resp.json()
def put_request(self, api, data):
"""Make PUT request to specific API with some data."""
url = self.api_root + api
data_json = json.dumps(data)
self.print_debug('PUT {0} data={1}'.format(url, data_json))
resp = self.session.put(url, data=data_json)
self._raise_for_status_with_info(resp)
return resp.json()
def get_request_raw(self, api, ostf=False, params=None):
"""Make a GET request to specific API and return raw response
:param api: API endpoint (path)
:param ostf: is this a call to OSTF API
:param params: params passed to GET request
"""
url = (self.ostf_root if ostf else self.api_root) + api
self.print_debug('GET {0}'.format(url))
return self.session.get(url, params=params)
def get_request(self, api, ostf=False, params=None):
"""Make GET request to specific API."""
params = params or {}
resp = self.get_request_raw(api, ostf, params)
self._raise_for_status_with_info(resp)
return resp.json()
def post_request_raw(self, api, data=None, ostf=False):
"""Make a POST request to specific API and return raw response.
:param api: API endpoint (path)
:param data: data send in request, will be serialzied to JSON
:param ostf: is this a call to OSTF API
"""
url = (self.ostf_root if ostf else self.api_root) + api
data_json = None if data is None else json.dumps(data)
self.print_debug('POST {0} data={1}'.format(url, data_json))
return self.session.post(url, data=data_json)
def post_request(self, api, data=None, ostf=False):
"""Make POST request to specific API with some data
"""
resp = self.post_request_raw(api, data, ostf=ostf)
self._raise_for_status_with_info(resp)
return resp.json()
def get_fuel_version(self):
return self.get_request("version")
def _raise_for_status_with_info(self, response):
try:
response.raise_for_status()
except requests.exceptions.HTTPError as e:
raise error.HTTPError(error.get_full_error_message(e))
# This line is single point of instantiation for 'Client' class,
# which intended to implement Singleton design pattern.
APIClient = Client()