-
Notifications
You must be signed in to change notification settings - Fork 7
/
mtc-jsonrpc.py
608 lines (531 loc) · 14.4 KB
/
mtc-jsonrpc.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
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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
#!/usr/bin/env python3
# -*- coding: utf_8 -*-l
# pip3 install Werkzeug json-rpc
import random
import secrets
import getpass
import psutil
import json
import jsonpickle
import cloudscraper
import pyotp
from sys import path
from werkzeug.wrappers import Request, Response
from werkzeug.datastructures import Headers
from werkzeug.serving import run_simple, make_ssl_devcert
from werkzeug.security import check_password_hash, generate_password_hash
from jsonrpc import JSONRPCResponseManager, dispatcher
from jsonrpc.jsonrpc import JSONRPCRequest
from jsonrpc.exceptions import JSONRPCDispatchException
path.append("/usr/src/mytonctrl/")
from mytoncore import *
local = MyPyClass(__file__)
ton = MyTonCore()
class IP:
def __init__(self, addr):
self.addr = addr
self.wrongNumber = 0
self.isBlock = False
self.token = None
self.inputToken = None
self.timestamp = None
self.lifetime = 2629743 # 1 month
self.allowedIP = None
self.SetAllowedIP()
#end define
def WrongAccess(self):
raise JSONRPCDispatchException(403, "Forbidden")
#end define
def GenerateToken(self):
self.wrongNumber = 0
self.token = secrets.token_urlsafe(32)
self.timestamp = self.TS()
#end define
def DestroyToken(self):
self.wrongNumber = 0
self.token = None
self.timestamp = None
#end define
def CheckAccess(self):
if self.isBlock or self.token is None or self.timestamp is None:
self.WrongAccess()
timestamp = self.TS()
isAlive = self.timestamp + self.lifetime > timestamp
isCorrectToken = self.token == self.inputToken
if isAlive and isCorrectToken:
pass
else:
self.WrongAccess()
#end define
def CheckPassword(self, passwd):
# if self.isBlock:
# self.WrongAccess()
passwdHash = ton.GetSettings("passwdHash")
if passwdHash and check_password_hash(passwdHash, passwd):
self.GenerateToken()
else:
raise JSONRPCDispatchException(403, "Wrong login or password")
#end define
def TS(self):
timestamp = int(time.time())
return timestamp
#end define
def SetAllowedIP(self):
scraper = cloudscraper.create_scraper()
r = scraper.get("https://tonadmin.org/ip.json").text
data_json = json.loads(r)
self.allowedIP = data_json[0]
#end define
def GetAllowedIP(self):
return self.allowedIP
#end define
#end class
@Request.application
def application(request):
global ip
token = GetUserToken(request)
ip = GetIp(request.remote_addr, token)
# rpc = JSONRPCResponseManager.handle(request.data, dispatcher)
request_str = request.data.decode("utf-8")
data = jsonpickle.decode(request_str)
request = JSONRPCRequest.from_data(data)
rpc = JSONRPCResponseManager.handle_request(request, dispatcher)
# data = rpc.json
data = jsonpickle.encode(rpc.data)
headers = Headers()
headers.add("Access-Control-Allow-Origin", 'https://tonadmin.org')
headers.add("Access-Control-Allow-Methods", "GET, POST, DELETE, OPTIONS")
headers.add("Access-Control-Allow-Headers", "Content-Length,Content-Type,x-compress,Cache-Control,Authorization")
response = Response(data, mimetype="application/json", headers=headers)
return response
#end define
def GetUserToken(request):
token = None
buffer = request.headers.get("Authorization")
if buffer is not None and "token " in buffer:
buffer = buffer.split(' ')
token = buffer[1]
return token
#end define
@dispatcher.add_method
def login(api, passwd, code = None):
global ip
ip.CheckPassword(passwd)
if ton.GetSettings("jsonrpcOTP"):
OTPSecret = ton.GetSettings("jsonrpcOTPSecret")
totp = pyotp.TOTP(OTPSecret)
if totp.now() != code:
print('exception')
raise JSONRPCDispatchException(403, "Wrong 2fa code")
return {"api": api, "token": ip.token}
#end define
@dispatcher.add_method
def logout():
global ip
ip.DestroyToken()
return 1;
#end define
def GetIp(addr, token):
ipList = GetIpList()
ip = ipList.get(addr)
if ip is None:
ip = IP(addr)
ipList[addr] = ip
ip.inputToken = token
return ip
#end define
def GetIpList():
ipList = local.buffer.get("ipList")
if ipList is None:
ipList = dict()
local.buffer["ipList"] = ipList
return ipList
#end define
#end define
@dispatcher.add_method
def status():
global ip
ip.CheckAccess()
config15 = ton.GetConfig15()
config17 = ton.GetConfig17()
config34 = ton.GetConfig34()
config36 = ton.GetConfig36()
tpsAvg = ton.GetTpsAvg()
loadavg = GetLoadAvg()
netLoadAvg = ton.GetNetLoadAvg()
adnlAddr = ton.GetAdnlAddr()
mytoncoreStatus = GetServiceStatus("mytoncore")
rootWorkchainEnabledTime_int = ton.GetRootWorkchainEnabledTime()
validatorsElectedFor = config15["validatorsElectedFor"]
electionsStartBefore = config15["electionsStartBefore"]
electionsEndBefore = config15["electionsEndBefore"]
stakeHeldFor = config15["stakeHeldFor"]
minStake = config17["minStake"]
maxStake = config17["maxStake"]
totalValidators = config34["totalValidators"]
onlineValidators = ton.GetOnlineValidators()
if onlineValidators:
onlineValidators = len(onlineValidators)
oldStartWorkTime = config36.get("startWorkTime")
if oldStartWorkTime is None:
oldStartWorkTime = config34.get("startWorkTime")
shardsNumber = ton.GetShardsNumber()
validatorStatus = ton.GetValidatorStatus()
fullConfigAddr = ton.GetFullConfigAddr()
fullElectorAddr = ton.GetFullElectorAddr()
startWorkTime = ton.GetActiveElectionId(fullElectorAddr)
validatorIndex = ton.GetValidatorIndex()
validatorEfficiency = ton.GetValidatorEfficiency()
validatorWallet = ton.GetValidatorWallet()
offersNumber = ton.GetOffersNumber()
complaintsNumber = ton.GetComplaintsNumber()
if validatorWallet is not None:
validatorAccount = ton.GetAccount(validatorWallet.addrB64)
else:
validatorAccount = None
#end if
if startWorkTime == 0:
startWorkTime = oldStartWorkTime
#end if
# Calculate time
startValidation = startWorkTime
endValidation = startWorkTime + validatorsElectedFor
startElection = startWorkTime - electionsStartBefore
endElection = startWorkTime - electionsEndBefore
startNextElection = startElection + validatorsElectedFor
# bla bla bla
data = dict()
data["electionId"] = startWorkTime
data["tpsAvg"] = tpsAvg
data["totalValidators"] = totalValidators
data["onlineValidators"] = onlineValidators
data["shardsNumber"] = shardsNumber
data["validatorStatus"] = validatorStatus
data["complaintsNumber"] = complaintsNumber
data["validatorIndex"] = validatorIndex
data["validatorEfficiency"] = validatorEfficiency
data["adnlAddr"] = adnlAddr
if validatorWallet is not None:
data["validatorWalletAddr"] = validatorWallet.addrB64
data["validatorWalletBalance"] = validatorAccount.balance
data["loadavg"] = loadavg
data["netLoadAvg"] = netLoadAvg
data["mytoncoreStatus"] = mytoncoreStatus
data["fullConfigAddr"] = fullConfigAddr
data["fullElectorAddr"] = fullElectorAddr
data["validatorsElectedFor"] = validatorsElectedFor
data["electionsStartBefore"] = electionsStartBefore
data["electionsEndBefore"] = electionsEndBefore
data["stakeHeldFor"] = stakeHeldFor
data["minStake"] = minStake
data["maxStake"] = maxStake
data["startValidation"] = startValidation
data["endValidation"] = endValidation
data["startElection"] = startElection
data["endElection"] = endElection
data["startNextElection"] = startNextElection
return data
#end define
@dispatcher.add_method
def getSystemLoad():
global ip
ip.CheckAccess()
data = dict()
data["diskSpace"] = psutil.disk_usage('/')
data["temp"] = psutil.sensors_temperatures()
data["memory"] = psutil.virtual_memory()
data["cpu_freq"] = psutil.cpu_freq()
data["cpu_load"] = psutil.cpu_percent(interval=1)
data["cpu_average"] = psutil.getloadavg()
statistics = ton.GetSettings("statistics")
data["disksLoadAvg"] = ton.GetStatistics("disksLoadAvg", statistics)
data["disksLoadPercentAvg"] = ton.GetStatistics("disksLoadPercentAvg", statistics)
return data
#end define
@dispatcher.add_method
def seqno(walletName):
global ip
ip.CheckAccess()
wallet = ton.GetLocalWallet(walletName)
seqno = ton.GetSeqno(wallet)
return seqno
#end define
@dispatcher.add_method
def getconfig(configId):
global ip
ip.CheckAccess()
data = ton.GetConfig(configId)
return data
#end define
'''
@dispatcher.add_method
def nw(walletName, workchain=0):
global ip
ip.CheckAccess()
wallet = ton.CreateWallet(walletName, workchain)
return wallet.__dict__
#end define
@dispatcher.add_method
def aw(walletName):
global ip
ip.CheckAccess()
wallet = ton.GetLocalWallet(walletName)
if not os.path.isfile(wallet.bocFilePath):
#raise JSONRPCDispatchException(208, f"Wallet {walletName} already activated")
return False
ton.ActivateWallet(wallet)
return True
#end define
'''
@dispatcher.add_method
def wl():
global ip
ip.CheckAccess()
data = dict()
wallets = ton.GetWallets()
for wallet in wallets:
account = ton.GetAccount(wallet.addrB64)
buff = dict()
buff["name"] = wallet.name
buff["addr"] = wallet.addrB64
buff["workchain"] = wallet.workchain
buff["status"] = account.status
buff["balance"] = account.balance
data[wallet.name] = buff
return data
#end define
@dispatcher.add_method
def vas(addr):
global ip
ip.CheckAccess()
account = ton.GetAccount(addr)
return account.__dict__
#end define
@dispatcher.add_method
def vah(addr, limit):
global ip
ip.CheckAccess()
account = ton.GetAccount(addr)
history = ton.GetAccountHistory(account, limit)
return history
#end define
@dispatcher.add_method
def ol():
global ip
ip.CheckAccess()
offers = ton.GetOffers()
return offers
#end define
@dispatcher.add_method
def el():
global ip
ip.CheckAccess()
entries = ton.GetElectionEntries()
return entries
#end define
@dispatcher.add_method
def ve():
global ip
ip.CheckAccess()
Elections(ton)
return True
#end define
@dispatcher.add_method
def vl():
global ip
ip.CheckAccess()
validators = ton.GetValidatorsList()
return validators
#end define
@dispatcher.add_method
def cl():
global ip
ip.CheckAccess()
complaints = ton.GetComplaints()
return complaints
#end define
@dispatcher.add_method
def get(name):
global ip
ip.CheckAccess()
result = ton.GetSettings(name)
return result
#end define
@dispatcher.add_method
def GetLastBlock():
block = ton.GetLastBlock()
return block
#end define
@dispatcher.add_method
def GetShards(block):
shards = ton.GetShards(block)
return shards
#end define
@dispatcher.add_method
def GetTransactions(block):
transactions = ton.GetTransactions(block)
return transactions
#end define
@dispatcher.add_method
def GetTrans(trans):
messages = ton.GetTrans(trans)
return messages
#end define
@dispatcher.add_method
def CheckUpdates():
gitPath1 = "/usr/src/mytonctrl/"
gitPath2 = "/usr/src/mtc-jsonrpc/"
result1 = CheckGitUpdate(gitPath1)
result2 = CheckGitUpdate(gitPath2)
result = [result1, result2]
return result
#end define
'''
@dispatcher.add_method
def UpdateMtc(args):
global ip
ip.CheckAccess()
runArgs = ["bash", "/usr/src/mytonctrl/scripts/update.sh"]
runArgs = SetArgsByArgs(runArgs, args)
exitCode = RunAsRoot(runArgs)
if exitCode == 0:
text = "Update - {green}OK{endc}"
else:
text = "Update - {red}Error{endc}"
return text;
local.Exit()
#end define
@dispatcher.add_method
def UpdateJR(args):
global ip
ip.CheckAccess()
runArgs = ["bash", "/usr/src/mtc-jsonrpc/update.sh"]
runArgs = SetArgsByArgs(runArgs, args)
exitCode = RunAsRoot(runArgs)
if exitCode == 0:
text = "Update - {green}OK{endc}"
else:
text = "Update - {red}Error{endc}"
return text;
local.Exit()
#end define
'''
@dispatcher.add_method
def GetOTPStatus():
global ip
ip.CheckAccess()
return ton.GetSettings("jsonrpcOTP")
#end define
@dispatcher.add_method
def SetupOTP():
global ip
ip.CheckAccess()
local.AddLog("start SetupOTP function", "debug")
otpStatus = ton.GetSettings("jsonrpcOTP")
if otpStatus:
return "OTP already configured"
else:
secretKey = pyotp.random_base32()
ton.SetSettings("jsonrpcOTPSecret", secretKey)
QRcode = pyotp.totp.TOTP(secretKey).provisioning_uri(name='TonAdmin.org')
return [QRcode, secretKey]
#end define
@dispatcher.add_method
def VerifyOTP(code):
global ip
ip.CheckAccess()
otpStatus = ton.GetSettings("jsonrpcOTP")
if otpStatus:
return "OTP already configured"
else:
OTPSecret = ton.GetSettings("jsonrpcOTPSecret")
totp = pyotp.TOTP(OTPSecret)
print("Current OTP:", totp.now())
if totp.now() == code:
ton.SetSettings("jsonrpcOTP", True)
return True
else:
return False
#end define
def GetPort():
port = ton.GetSettings("jsonrpcPort")
if port is None:
port = random.randint(2000, 65000)
ton.SetSettings("jsonrpcPort", port)
return port
#end define
def SetArgsByArgs(runArgs, args):
if len(args) == 1:
buff = args[0]
if "https://" in buff:
runArgs += ["-r", buff]
else:
runArgs += ["-b", buff]
elif len(args) == 2:
runArgs += ["-r", args[0]]
runArgs += ["-b", args[1]]
return runArgs
#end define
def SetWebPassword():
local.AddLog("start SetWebPassword function", "debug")
port = GetPort()
ip = requests.get("https://ifconfig.me").text
url = "https://{ip}:{port}/".format(ip=ip, port=port)
passwd = getpass.getpass("Set a new password for the web admin panel: ")
repasswd = getpass.getpass("Repeat password: ")
if passwd != repasswd:
print("Error: Password mismatch")
return
passwdHash = generate_password_hash(passwd)
ton.SetSettings("passwdHash", passwdHash)
scraper = cloudscraper.create_scraper()
r = scraper.get("https://tonadmin.org/ip.json").text
data_json = json.loads(r)
allowedIP = data_json[0]
ip = "0.0.0.0"
sslKeyPath = local.buffer["myWorkDir"] + "ssl"
crtPath = sslKeyPath + ".crt"
keyPath = sslKeyPath + ".key"
if os.path.isfile(keyPath) == False:
make_ssl_devcert(sslKeyPath, host=ip)
#end if
runArgs = ["bash", "/usr/src/mtc-jsonrpc/setupProxy.sh", str(allowedIP), str(port), local.buffer["myWorkDir"]]
exitCode = RunAsRoot(runArgs)
print("Configuration complete.")
print("Now you can go to https://tonadmin.org")
print("and use the following data:")
print("--------------------------------------")
print("Validator URL:", url)
print("--------------------------------------")
#end define
def Init():
# Event reaction
if ("-p" in sys.argv):
SetWebPassword()
return
#end if
if not ton.GetSettings("passwdHash"):
SetWebPassword()
return
#end if
port = GetPort()
# Event reaction
if ("-port" in sys.argv):
port = int(sys.argv[2])
#end if
hostip = "127.0.0.1"
ip = "0.0.0.0"
sslKeyPath = local.buffer["myWorkDir"] + "ssl"
crtPath = sslKeyPath + ".crt"
keyPath = sslKeyPath + ".key"
if os.path.isfile(keyPath) == False:
make_ssl_devcert(sslKeyPath, host=ip)
#end if
run_simple(hostip, port-1, application)
#end define
###
### Старт программы
###
if __name__ == "__main__":
Init()
#end if