Browse Source

refactor - make APIException less corner-casey, easier to interact with

feature/docs
Andrei 8 years ago
parent
commit
704f784bef
  1. 33
      disco/api/http.py

33
disco/api/http.py

@ -141,13 +141,27 @@ class APIException(Exception):
The status code returned by the API for the request that triggered this The status code returned by the API for the request that triggered this
error. error.
""" """
def __init__(self, msg, status_code=0, content=None): def __init__(self, response, retries=None):
self.status_code = status_code self.response = response
self.content = content self.code = 0
self.msg = msg self.msg = 'Request Failed ({})'.format(response.status_code)
if self.status_code: # Try to decode JSON, and extract params
self.msg += ' code: {}'.format(status_code) try:
data = self.response.json()
if 'code' in data:
self.code = data['code']
self.msg = data['message']
elif len(data) == 1:
key, value = list(data.items())[0]
self.msg = 'Request Failed: {}: {}'.format(key, ', '.join(value))
except ValueError:
pass
# DEPRECATED: left for backwards compat
self.status_code = response.status_code
self.content = response.content
super(APIException, self).__init__(self.msg) super(APIException, self).__init__(self.msg)
@ -239,7 +253,7 @@ class HTTPClient(LoggingClass):
if r.status_code < 400: if r.status_code < 400:
return r return r
elif r.status_code != 429 and 400 <= r.status_code < 500: elif r.status_code != 429 and 400 <= r.status_code < 500:
raise APIException('Request failed', r.status_code, r.content) raise APIException(r)
else: else:
if r.status_code == 429: if r.status_code == 429:
self.log.warning( self.log.warning(
@ -249,8 +263,7 @@ class HTTPClient(LoggingClass):
retry += 1 retry += 1
if retry > self.MAX_RETRIES: if retry > self.MAX_RETRIES:
self.log.error('Failing request, hit max retries') self.log.error('Failing request, hit max retries')
raise APIException( raise APIException(r, retries=self.MAX_RETRIES)
'Request failed after {} attempts'.format(self.MAX_RETRIES), r.status_code, r.content)
backoff = self.random_backoff() backoff = self.random_backoff()
self.log.warning('Request to `{}` failed with code {}, retrying after {}s ({})'.format( self.log.warning('Request to `{}` failed with code {}, retrying after {}s ({})'.format(

Loading…
Cancel
Save