-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathapirpc.py
More file actions
296 lines (208 loc) · 10.2 KB
/
apirpc.py
File metadata and controls
296 lines (208 loc) · 10.2 KB
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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
from httputils import httputils
from .constants import *
from .connector import RPC_MONEROD_ENDPOINT, RPC_WALLET_ENDPOINT, WALLET_NAME, WALLET_PASSWORD
from rpcutils import rpcutils, errorhandler as rpcerrorhandler
from rpcutils.rpcconnector import RPCConnector
from . import utils
from logger import logger
@httputils.getMethod
@rpcutils.rpcMethod
def getFeePerByte(id, params):
logger.printInfo(f"Executing RPC method getFeePerByte with id {id} and params {params}")
requestSchema, responseSchema = utils.getMethodSchemas(GET_FEE_PER_BYTE)
err = rpcutils.validateJSONRPCSchema(params, requestSchema)
if err is not None:
raise rpcerrorhandler.BadRequestError(err.message)
fee = RPCConnector.request(RPC_MONEROD_ENDPOINT, id, GET_FEE_ESTIMATE_METHOD, None)
if fee is None:
logger.printWarning("Could not get fee info from node")
raise rpcerrorhandler.BadRequestError("Could not get fee info from node")
response = {
FEE_PER_BYTE: fee[FEE]
}
err = rpcutils.validateJSONRPCSchema(response, responseSchema)
if err is not None:
raise rpcerrorhandler.BadRequestError(err.message)
return response
@httputils.postMethod
@rpcutils.rpcMethod
def getBlockByNumber(id, params):
logger.printInfo(f"Executing RPC method getBlockByNumber with id {id} and params {params}")
requestSchema, responseSchema = utils.getMethodSchemas(GET_BLOCK_BY_NUMBER)
err = rpcutils.validateJSONRPCSchema(params, requestSchema)
if err is not None:
raise rpcerrorhandler.BadRequestError(err.message)
try:
blockNumber = int(params[BLOCK_NUMBER], base=10)
except Exception as err:
raise rpcerrorhandler.BadRequestError(str(err))
block = RPCConnector.request(RPC_MONEROD_ENDPOINT, id, GET_BLOCK_METHOD, [blockNumber])
if block is None:
logger.printWarning("Could not get block info from node")
raise rpcerrorhandler.BadRequestError("Could not get block info from node")
err = rpcutils.validateJSONRPCSchema(block, responseSchema)
if err is not None:
raise rpcerrorhandler.BadRequestError(err.message)
return block
@httputils.postMethod
@rpcutils.rpcMethod
def getBlockByHash(id, params):
logger.printInfo(f"Executing RPC method getBlockByHash with id {id} and params {params}")
requestSchema, responseSchema = utils.getMethodSchemas(GET_BLOCK_BY_HASH)
err = rpcutils.validateJSONRPCSchema(params, requestSchema)
if err is not None:
raise rpcerrorhandler.BadRequestError(err.message)
block = RPCConnector.request(RPC_MONEROD_ENDPOINT, id, GET_BLOCK_METHOD, [params[BLOCK_HASH]])
if block is None:
logger.printWarning("Could not get block info from node")
raise rpcerrorhandler.BadRequestError("Could not get block info from node")
err = rpcutils.validateJSONRPCSchema(block, responseSchema)
if err is not None:
raise rpcerrorhandler.BadRequestError(err.message)
return block
@httputils.getMethod
@rpcutils.rpcMethod
def getHeight(id, params):
logger.printInfo(f"Executing RPC method getHeight with id {id} and params {params}")
requestSchema, responseSchema = utils.getMethodSchemas(GET_HEIGHT)
err = rpcutils.validateJSONRPCSchema(params, requestSchema)
if err is not None:
raise rpcerrorhandler.BadRequestError(err.message)
blockchainInfo = RPCConnector.request(RPC_MONEROD_ENDPOINT, id, GET_INFO_METHOD, None)
if blockchainInfo is None:
logger.printWarning("Could not get latest blockchain info from node")
raise rpcerrorhandler.BadRequestError("Could not get latest blockchain info from node")
response = {
LATEST_BLOCK_INDEX: blockchainInfo[HEIGHT],
LATEST_BLOCK_HASH: blockchainInfo[TOP_BLOCK_HASH]
}
err = rpcutils.validateJSONRPCSchema(response, responseSchema)
if err is not None:
raise rpcerrorhandler.BadRequestError(err.message)
return response
@httputils.postMethod
@rpcutils.rpcMethod
def getTxProof(id, params):
logger.printInfo(f"Executing RPC method getTxProof with id {id} and params {params}")
requestSchema, responseSchema = utils.getMethodSchemas(GET_TX_PROOF)
err = rpcutils.validateJSONRPCSchema(params, requestSchema)
if err is not None:
raise rpcerrorhandler.BadRequestError(err.message)
logger.printInfo(f"Trying to open the wallet {WALLET_NAME}")
RPCConnector.request(RPC_WALLET_ENDPOINT, id, OPEN_WALLET_METHOD, WALLET_NAME, WALLET_PASSWORD)
sign = RPCConnector.request(RPC_WALLET_ENDPOINT, id, GET_TX_PROOF_METHOD, [params[TX_ID], params[ADDRESS], params[MESSAGE]])
if sign is None:
logger.printWarning(f"Could not get any signature from transaction id {params[TX_ID]}")
raise rpcerrorhandler.BadRequestError(f"Could not get any signature from transaction id {params[TX_ID]}")
response = {
SIGNATURE: sign[SIGNATURE]
}
err = rpcutils.validateJSONRPCSchema(response, responseSchema)
if err is not None:
raise rpcerrorhandler.BadRequestError(err.message)
return response
@httputils.postMethod
@rpcutils.rpcMethod
def checkTxProof(id, params):
logger.printInfo(f"Executing RPC method checkTxProof with id {id} and params {params}")
requestSchema, responseSchema = utils.getMethodSchemas(CHECK_TX_PROOF)
err = rpcutils.validateJSONRPCSchema(params, requestSchema)
if err is not None:
raise rpcerrorhandler.BadRequestError(err.message)
logger.printInfo(f"Trying to open the wallet {WALLET_NAME}")
RPCConnector.request(RPC_WALLET_ENDPOINT, id, OPEN_WALLET_METHOD, WALLET_NAME, WALLET_PASSWORD)
txProof = RPCConnector.request(RPC_WALLET_ENDPOINT, id, CHECK_TX_PROOF_METHOD, [params[TX_ID], params[ADDRESS], params[MESSAGE], params[SIGNATURE]])
if txProof is None:
logger.printWarning("Could not get any transaction proof info from node")
raise rpcerrorhandler.BadRequestError("Could not get any transaction proof info from node")
if txProof[PROVEN] == "false":
logger.printWarning(f"Transaction {txProof[TX_ID]} can't be proven")
response = {
PROVEN: False
}
response = {
CONFIRMATIONS: txProof[CONFIRMATIONS],
PROVEN: True,
AMOUNT: txProof[RECEIVED]
}
err = rpcutils.validateJSONRPCSchema(response, responseSchema)
if err is not None:
raise rpcerrorhandler.BadRequestError(err.message)
return response
@httputils.postMethod
@rpcutils.rpcMethod
def getSpendProof(id, params):
logger.printInfo(f"Executing RPC method getSpendProof with id {id} and params {params}")
requestSchema, responseSchema = utils.getMethodSchemas(GET_SPEND_PROOF)
err = rpcutils.validateJSONRPCSchema(params, requestSchema)
if err is not None:
raise rpcerrorhandler.BadRequestError(err.message)
logger.printInfo(f"Trying to open the wallet {WALLET_NAME}")
RPCConnector.request(RPC_WALLET_ENDPOINT, id, OPEN_WALLET_METHOD, WALLET_NAME, WALLET_PASSWORD)
sign = RPCConnector.request(RPC_WALLET_ENDPOINT, id, GET_SPEND_PROOF_METHOD, [params[TX_ID], params[MESSAGE]])
if sign is None:
logger.printWarning(f"Could not generate any signature from transaction id {params[TX_ID]} to proof the spend")
raise rpcerrorhandler.BadRequestError(f"Could not generate any signature from transaction id {params[TX_ID]} to proof the spend")
response = {
SIGNATURE: sign[SIGNATURE]
}
err = rpcutils.validateJSONRPCSchema(response, responseSchema)
if err is not None:
raise rpcerrorhandler.BadRequestError(err.message)
return response
@httputils.postMethod
@rpcutils.rpcMethod
def checkSpendProof(id, params):
logger.printInfo(f"Executing RPC method checkSpendProof with id {id} and params {params}")
requestSchema, responseSchema = utils.getMethodSchemas(CHECK_SPEND_PROOF)
err = rpcutils.validateJSONRPCSchema(params, requestSchema)
if err is not None:
raise rpcerrorhandler.BadRequestError(err.message)
logger.printInfo(f"Trying to open the wallet {WALLET_NAME}")
RPCConnector.request(RPC_WALLET_ENDPOINT, id, OPEN_WALLET_METHOD, WALLET_NAME, WALLET_PASSWORD)
txProof = RPCConnector.request(RPC_WALLET_ENDPOINT, id, CHECK_SPEND_PROOF_METHOD, [params[TX_ID], params[MESSAGE], params[SIGNATURE]])
if txProof is None:
logger.printWarning("Could not get any spend proof info from node")
raise rpcerrorhandler.BadRequestError("Could not get any spend proof info from node")
if txProof[PROVEN] == "false":
logger.printWarning("Spent can't be proven")
response = {
PROVEN: False
}
response = {
PROVEN: True
}
err = rpcutils.validateJSONRPCSchema(response, responseSchema)
if err is not None:
raise rpcerrorhandler.BadRequestError(err.message)
return response
@httputils.getMethod
@rpcutils.rpcMethod
def syncing(id, params):
logger.printInfo(f"Executing RPC method syncing with id {id} and params {params}")
requestSchema, responseSchema = utils.getMethodSchemas(SYNCING)
err = rpcutils.validateJSONRPCSchema(params, requestSchema)
if err is not None:
raise rpcerrorhandler.BadRequestError(err.message)
blockchainInfo = RPCConnector.request(RPC_MONEROD_ENDPOINT, id, GET_INFO_METHOD, None)
if blockchainInfo is None:
logger.printWarning("Could not get blockchain info from node")
raise rpcerrorhandler.BadRequestError("Could not get blockchain info from node")
if not blockchainInfo[SYNCHRONIZED]:
syncInfo = RPCConnector.request(RPC_MONEROD_ENDPOINT, id, GET_SYNC_INFO_METHOD, None)
if syncInfo is None:
logger.printWarning("Could not get syncing info from node")
raise rpcerrorhandler.BadRequestError("Could not get syncing info from node")
response = {
SYNCING: True,
SYNC_PERCENTAGE:
f'{str(syncInfo[HEIGHT] / syncInfo[TARGET_HEIGHT] * 100)}%',
CURRENT_BLOCK_INDEX: str(syncInfo[HEIGHT]),
LATEST_BLOCK: str(syncInfo[TARGET_HEIGHT]),
}
else:
response = {SYNCING: False}
err = rpcutils.validateJSONRPCSchema(response, responseSchema)
if err is not None:
raise rpcerrorhandler.BadRequestError(err.message)
return response