28d62a38d4
Change-Id: I6a488185ea43b9aaa512c1eca0e5b0a89943d5f2
61 lines
2.0 KiB
Python
61 lines
2.0 KiB
Python
# 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 gyanclient.common.apiclient import exceptions
|
|
from gyanclient.common.apiclient.exceptions import * # noqa
|
|
|
|
|
|
InvalidEndpoint = EndpointException
|
|
CommunicationError = ConnectionRefused
|
|
HTTPBadRequest = BadRequest
|
|
HTTPInternalServerError = InternalServerError
|
|
HTTPNotFound = NotFound
|
|
HTTPServiceUnavailable = ServiceUnavailable
|
|
CommandErrorException = CommandError
|
|
|
|
|
|
class AmbiguousAuthSystem(ClientException):
|
|
"""Could not obtain token and endpoint using provided credentials."""
|
|
pass
|
|
|
|
# Alias for backwards compatibility
|
|
AmbigiousAuthSystem = AmbiguousAuthSystem
|
|
|
|
|
|
class InvalidAttribute(ClientException):
|
|
pass
|
|
|
|
|
|
def from_response(response, message=None, traceback=None, method=None,
|
|
url=None):
|
|
"""Return an HttpError instance based on response from httplib/requests."""
|
|
|
|
error_body = {}
|
|
if message:
|
|
error_body['message'] = message
|
|
if traceback:
|
|
error_body['details'] = traceback
|
|
|
|
if hasattr(response, 'status') and not hasattr(response, 'status_code'):
|
|
response.status_code = response.status
|
|
response.headers = {
|
|
'Content-Type': response.getheader('content-type', "")}
|
|
|
|
if hasattr(response, 'status_code'):
|
|
response.json = lambda: {'error': error_body}
|
|
|
|
if (response.headers.get('Content-Type', '').startswith('text/') and
|
|
not hasattr(response, 'text')):
|
|
response.text = ''
|
|
|
|
return exceptions.from_response(response, method, url)
|