This repository was archived by the owner on May 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy patherrors.py
184 lines (145 loc) · 8.03 KB
/
errors.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
# -*- coding: utf-8 -*
# Copyright (C) 2018 Kin Foundation
from requests.exceptions import RequestException
from .stellar.errors import *
# All exceptions should subclass from SdkError in this module.
class SdkError(Exception):
"""Base class for all SDK errors."""
def __init__(self, message=None, error_code=None, extra=None):
super(SdkError, self).__init__(self)
self.message = message or 'unknown error'
self.error_code = error_code
self.extra = dict(extra or ())
def __str__(self):
sb = list()
sb.append("\n\tmessage='{}'".format(self.message))
sb.append("\n\terror_code='{}'".format(self.error_code))
sb.append("\n\textra data:")
for key in self.extra:
sb.append("\n\t\t{}='{}'".format(key, self.extra[key]))
return ''.join(sb)
class ThrottleError(SdkError):
"""Service is busy"""
def __init__(self):
super(ThrottleError, self).__init__('service is busy, retry later')
class NetworkError(SdkError):
"""Network-level errors - connection error, timeout error, etc."""
def __init__(self, extra=None):
super(NetworkError, self).__init__('network error', None, extra)
class RequestError(SdkError):
"""Request-related errors - bad request, invalid payload, malformed transaction, etc."""
def __init__(self, error_code=None, extra=None):
super(RequestError, self).__init__('bad request', error_code, extra)
class ServerError(SdkError):
"""Server-related errors - rate limit exceeded, server over capacity."""
def __init__(self, error_code=None, extra=None):
super(ServerError, self).__init__('server error', error_code, extra)
class ResourceNotFoundError(SdkError):
"""Resource not found on the server."""
def __init__(self, error_code=None, extra=None):
super(ResourceNotFoundError, self).__init__('resource not found', error_code, extra)
class AccountError(SdkError):
"""Base class for account-related errors."""
def __init__(self, address=None, message=None, error_code=None, extra=None):
if address:
extra = dict(extra or ())
extra.update({'account': address})
super(AccountError, self).__init__(message, error_code, extra)
class AccountNotFoundError(AccountError):
"""Operation referenced a nonexistent account."""
def __init__(self, address=None, error_code=None, extra=None):
super(AccountNotFoundError, self).__init__(address, 'account not found', error_code, extra)
class AccountExistsError(AccountError):
"""Trying to create an existing account."""
def __init__(self, address=None, error_code=None, extra=None):
super(AccountExistsError, self).__init__(address, 'account already exists', error_code, extra)
class AccountNotActivatedError(AccountError):
"""Operation referenced an account that exists but not yet activated."""
def __init__(self, address=None, error_code=None, extra=None):
super(AccountNotActivatedError, self).__init__(address, 'account not activated', error_code, extra)
class LowBalanceError(SdkError):
"""Account balance is too low to complete the operation. Refers both to native and asset balance."""
def __init__(self, error_code=None, extra=None):
super(LowBalanceError, self).__init__('low balance', error_code, extra)
class InternalError(SdkError):
"""Internal unhandled error. To find out more, check the error code and extra data."""
def __init__(self, error_code=None, extra=None):
super(InternalError, self).__init__('internal error', error_code, extra)
def translate_error(err):
"""A high-level error translator."""
if isinstance(err, RequestException):
return NetworkError({'internal_error': str(err)})
if isinstance(err, ChannelsBusyError):
return ThrottleError
if isinstance(err, HorizonError):
return translate_horizon_error(err)
return InternalError(None, {'internal_error': str(err)})
def translate_horizon_error(horizon_error):
"""Horizon error translator."""
# query errors
if horizon_error.type == HorizonErrorType.BAD_REQUEST:
return RequestError(horizon_error.type, {'invalid_field': horizon_error.extras.invalid_field})
if horizon_error.type == HorizonErrorType.NOT_FOUND:
return ResourceNotFoundError(horizon_error.type)
if horizon_error.type == HorizonErrorType.FORBIDDEN \
or horizon_error.type == HorizonErrorType.NOT_ACCEPTABLE \
or horizon_error.type == HorizonErrorType.UNSUPPORTED_MEDIA_TYPE \
or horizon_error.type == HorizonErrorType.NOT_IMPLEMENTED \
or horizon_error.type == HorizonErrorType.BEFORE_HISTORY \
or horizon_error.type == HorizonErrorType.STALE_HISTORY:
return RequestError(horizon_error.type)
# transaction (submit) errors
if horizon_error.type == HorizonErrorType.TRANSACTION_MALFORMED:
return RequestError(horizon_error.type)
if horizon_error.type == HorizonErrorType.TRANSACTION_FAILED:
return translate_transaction_error(horizon_error)
# server errors
if horizon_error.type == HorizonErrorType.RATE_LIMIT_EXCEEDED \
or horizon_error.type == HorizonErrorType.SERVER_OVER_CAPACITY \
or horizon_error.type == HorizonErrorType.TIMEOUT:
return ServerError(horizon_error.type)
if horizon_error.type == HorizonErrorType.INTERNAL_SERVER_ERROR:
return InternalError(horizon_error.type)
# unknown
return InternalError(horizon_error.type, {'internal_error': 'unknown horizon error'})
def translate_transaction_error(tx_error):
"""Transaction error translator."""
tx_result_code = tx_error.extras.result_codes.transaction
if tx_result_code == TransactionResultCode.TOO_EARLY \
or tx_result_code == TransactionResultCode.TOO_LATE \
or tx_result_code == TransactionResultCode.MISSING_OPERATION \
or tx_result_code == TransactionResultCode.BAD_AUTH \
or tx_result_code == TransactionResultCode.BAD_AUTH_EXTRA \
or tx_result_code == TransactionResultCode.BAD_SEQUENCE \
or tx_result_code == TransactionResultCode.INSUFFICIENT_FEE:
return RequestError(tx_result_code)
if tx_result_code == TransactionResultCode.NO_ACCOUNT:
return AccountNotFoundError(error_code=tx_result_code)
if tx_result_code == TransactionResultCode.INSUFFICIENT_BALANCE:
return LowBalanceError(tx_result_code)
if tx_result_code == TransactionResultCode.FAILED:
return translate_operation_error(tx_error.extras.result_codes.operations)
return InternalError(tx_result_code, {'internal_error': 'unknown transaction error'})
def translate_operation_error(op_result_codes):
"""Operation error translator."""
# NOTE: we currently handle only one operation per transaction!
op_result_code = op_result_codes[0]
if op_result_code == OperationResultCode.BAD_AUTH \
or op_result_code == CreateAccountResultCode.MALFORMED \
or op_result_code == PaymentResultCode.NO_ISSUER \
or op_result_code == PaymentResultCode.LINE_FULL \
or op_result_code == ChangeTrustResultCode.INVALID_LIMIT:
return RequestError(op_result_code)
if op_result_code == OperationResultCode.NO_ACCOUNT or op_result_code == PaymentResultCode.NO_DESTINATION:
return AccountNotFoundError(error_code=op_result_code)
if op_result_code == CreateAccountResultCode.ACCOUNT_EXISTS:
return AccountExistsError(error_code=op_result_code)
if op_result_code == CreateAccountResultCode.LOW_RESERVE \
or op_result_code == PaymentResultCode.UNDERFUNDED:
return LowBalanceError(op_result_code)
if op_result_code == PaymentResultCode.SRC_NO_TRUST \
or op_result_code == PaymentResultCode.NO_TRUST \
or op_result_code == PaymentResultCode.SRC_NOT_AUTHORIZED \
or op_result_code == PaymentResultCode.NOT_AUTHORIZED:
return AccountNotActivatedError(error_code=op_result_code)
return InternalError(op_result_code, {'internal_error': 'unknown operation error'})