mirror of
https://github.com/EDCD/EDMarketConnector.git
synced 2025-04-18 09:57:40 +03:00
Removed bare except clauses
Bare except clauses are a fantastic way to find your HTTP requests eating your ^C. I replaced all bare excepts with Exception if I could not find a list of exceptions that could be thrown.
This commit is contained in:
parent
9363b1457d
commit
34b963620a
22
companion.py
22
companion.py
@ -197,7 +197,7 @@ class Auth(object):
|
|||||||
print('Auth\tCan\'t refresh token for {}'.format(self.cmdr))
|
print('Auth\tCan\'t refresh token for {}'.format(self.cmdr))
|
||||||
self.dump(r)
|
self.dump(r)
|
||||||
|
|
||||||
except:
|
except Exception:
|
||||||
print('Auth\tCan\'t refresh token for {}'.format(self.cmdr))
|
print('Auth\tCan\'t refresh token for {}'.format(self.cmdr))
|
||||||
print_exc()
|
print_exc()
|
||||||
|
|
||||||
@ -265,13 +265,13 @@ class Auth(object):
|
|||||||
|
|
||||||
return data.get('access_token')
|
return data.get('access_token')
|
||||||
|
|
||||||
except:
|
except Exception as e:
|
||||||
print('Auth\tCan\'t get token for {}'.format(self.cmdr))
|
print('Auth\tCan\'t get token for {}'.format(self.cmdr))
|
||||||
print_exc()
|
print_exc()
|
||||||
if r:
|
if r:
|
||||||
self.dump(r)
|
self.dump(r)
|
||||||
|
|
||||||
raise CredentialsError() # TODO(A_D): Probably give more info about the error here
|
raise CredentialsError('unable to get token') from e
|
||||||
|
|
||||||
print('Auth\tCan\'t get token for {}'.format(self.cmdr))
|
print('Auth\tCan\'t get token for {}'.format(self.cmdr))
|
||||||
self.dump(r)
|
self.dump(r)
|
||||||
@ -358,7 +358,7 @@ class Session(object):
|
|||||||
self.start(self.auth.authorize(protocolhandler.lastpayload))
|
self.start(self.auth.authorize(protocolhandler.lastpayload))
|
||||||
self.auth = None
|
self.auth = None
|
||||||
|
|
||||||
except:
|
except Exception:
|
||||||
self.state = Session.STATE_INIT # Will try to authorize again on next login or query
|
self.state = Session.STATE_INIT # Will try to authorize again on next login or query
|
||||||
self.auth = None
|
self.auth = None
|
||||||
raise # Bad thing happened
|
raise # Bad thing happened
|
||||||
@ -380,11 +380,11 @@ class Session(object):
|
|||||||
try:
|
try:
|
||||||
r = self.session.get(self.server + endpoint, timeout=timeout)
|
r = self.session.get(self.server + endpoint, timeout=timeout)
|
||||||
|
|
||||||
except:
|
except Exception as e:
|
||||||
if __debug__:
|
if __debug__:
|
||||||
print_exc()
|
print_exc()
|
||||||
|
|
||||||
raise ServerError()
|
raise ServerError('unable to get endpoint {}'.format(endpoint)) from e
|
||||||
|
|
||||||
if r.url.startswith(SERVER_AUTH):
|
if r.url.startswith(SERVER_AUTH):
|
||||||
# Redirected back to Auth server - force full re-authentication
|
# Redirected back to Auth server - force full re-authentication
|
||||||
@ -403,7 +403,7 @@ class Session(object):
|
|||||||
r.raise_for_status() # Typically 403 "Forbidden" on token expiry
|
r.raise_for_status() # Typically 403 "Forbidden" on token expiry
|
||||||
data = r.json() # May also fail here if token expired since response is empty
|
data = r.json() # May also fail here if token expired since response is empty
|
||||||
|
|
||||||
except:
|
except (requests.HTTPError, ValueError) as e:
|
||||||
print_exc()
|
print_exc()
|
||||||
self.dump(r)
|
self.dump(r)
|
||||||
self.close()
|
self.close()
|
||||||
@ -412,7 +412,7 @@ class Session(object):
|
|||||||
self.invalidate()
|
self.invalidate()
|
||||||
self.retrying = False
|
self.retrying = False
|
||||||
self.login()
|
self.login()
|
||||||
raise CredentialsError()
|
raise CredentialsError('query failed after refresh') from e
|
||||||
|
|
||||||
elif self.login(): # Maybe our token expired. Re-authorize in any case
|
elif self.login(): # Maybe our token expired. Re-authorize in any case
|
||||||
self.retrying = True
|
self.retrying = True
|
||||||
@ -420,7 +420,7 @@ class Session(object):
|
|||||||
|
|
||||||
else:
|
else:
|
||||||
self.retrying = False
|
self.retrying = False
|
||||||
raise CredentialsError()
|
raise CredentialsError('Invalid JSON or HTTP error') from e
|
||||||
|
|
||||||
self.retrying = False
|
self.retrying = False
|
||||||
if 'timestamp' not in data:
|
if 'timestamp' not in data:
|
||||||
@ -461,7 +461,7 @@ class Session(object):
|
|||||||
try:
|
try:
|
||||||
self.session.close()
|
self.session.close()
|
||||||
|
|
||||||
except:
|
except Exception:
|
||||||
if __debug__:
|
if __debug__:
|
||||||
print_exc()
|
print_exc()
|
||||||
|
|
||||||
@ -492,7 +492,7 @@ def fixup(data):
|
|||||||
for commodity in data['lastStarport'].get('commodities') or []:
|
for commodity in data['lastStarport'].get('commodities') or []:
|
||||||
|
|
||||||
# Check all required numeric fields are present and are numeric
|
# Check all required numeric fields are present and are numeric
|
||||||
# Catches "demandBracket": "" for some phantom commodites in
|
# Catches "demandBracket": "" for some phantom commodites in
|
||||||
# ED 1.3 - https://github.com/Marginal/EDMarketConnector/issues/2
|
# ED 1.3 - https://github.com/Marginal/EDMarketConnector/issues/2
|
||||||
#
|
#
|
||||||
# But also see https://github.com/Marginal/EDMarketConnector/issues/32
|
# But also see https://github.com/Marginal/EDMarketConnector/issues/32
|
||||||
|
Loading…
x
Reference in New Issue
Block a user