forked from LBRYCommunity/lbry-sdk
commit
6fa65ebb9f
2 changed files with 67 additions and 10 deletions
|
@ -1,5 +1,6 @@
|
||||||
import sys
|
import sys
|
||||||
import json
|
import json
|
||||||
|
import argparse
|
||||||
|
|
||||||
from lbrynet.conf import API_CONNECTION_STRING
|
from lbrynet.conf import API_CONNECTION_STRING
|
||||||
from jsonrpc.proxy import JSONRPCProxy
|
from jsonrpc.proxy import JSONRPCProxy
|
||||||
|
@ -12,6 +13,28 @@ help_msg = "Usage: lbrynet-cli method json-args\n" \
|
||||||
+ "\n******lbrynet-cli functions******\n"
|
+ "\n******lbrynet-cli functions******\n"
|
||||||
|
|
||||||
|
|
||||||
|
def guess_type(x):
|
||||||
|
if '.' in x:
|
||||||
|
try:
|
||||||
|
return float(x)
|
||||||
|
except ValueError:
|
||||||
|
# not a float
|
||||||
|
pass
|
||||||
|
try:
|
||||||
|
return int(x)
|
||||||
|
except ValueError:
|
||||||
|
return x
|
||||||
|
|
||||||
|
|
||||||
|
def get_params_from_kwargs(params):
|
||||||
|
params_for_return = {}
|
||||||
|
for i in params:
|
||||||
|
eq_pos = i.index('=')
|
||||||
|
k, v = i[:eq_pos], i[eq_pos+1:]
|
||||||
|
params_for_return[k] = guess_type(v)
|
||||||
|
return params_for_return
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
api = JSONRPCProxy.from_url(API_CONNECTION_STRING)
|
api = JSONRPCProxy.from_url(API_CONNECTION_STRING)
|
||||||
|
|
||||||
|
@ -21,8 +44,22 @@ def main():
|
||||||
print "lbrynet-daemon isn't running"
|
print "lbrynet-daemon isn't running"
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
args = sys.argv[1:]
|
parser = argparse.ArgumentParser()
|
||||||
meth = args[0]
|
parser.add_argument('method', nargs=1)
|
||||||
|
parser.add_argument('params', nargs=argparse.REMAINDER, default=None)
|
||||||
|
args = parser.parse_args()
|
||||||
|
|
||||||
|
meth = args.method[0]
|
||||||
|
params = {}
|
||||||
|
|
||||||
|
if args.params:
|
||||||
|
if len(args.params) > 1:
|
||||||
|
params = get_params_from_kwargs(args.params)
|
||||||
|
elif len(args.params) == 1:
|
||||||
|
try:
|
||||||
|
params = json.loads(args.params[0])
|
||||||
|
except ValueError:
|
||||||
|
params = get_params_from_kwargs(args.params)
|
||||||
|
|
||||||
msg = help_msg
|
msg = help_msg
|
||||||
for f in api.help():
|
for f in api.help():
|
||||||
|
@ -32,14 +69,6 @@ def main():
|
||||||
print msg
|
print msg
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
if len(args) > 1:
|
|
||||||
if isinstance(args[1], dict):
|
|
||||||
params = args[1]
|
|
||||||
elif isinstance(args[1], basestring):
|
|
||||||
params = json.loads(args[1])
|
|
||||||
else:
|
|
||||||
params = None
|
|
||||||
|
|
||||||
if meth in api.help():
|
if meth in api.help():
|
||||||
try:
|
try:
|
||||||
if params:
|
if params:
|
||||||
|
|
28
tests/unit/lbrynet_daemon/test_LBRYDaemonCLI.py
Normal file
28
tests/unit/lbrynet_daemon/test_LBRYDaemonCLI.py
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
from twisted.trial import unittest
|
||||||
|
from lbrynet.lbrynet_daemon import LBRYDaemonCLI
|
||||||
|
|
||||||
|
|
||||||
|
class LBRYDaemonCLITests(unittest.TestCase):
|
||||||
|
def test_guess_type(self):
|
||||||
|
self.assertEqual('0.3.8', LBRYDaemonCLI.guess_type('0.3.8'))
|
||||||
|
self.assertEqual(0.3, LBRYDaemonCLI.guess_type('0.3'))
|
||||||
|
self.assertEqual(3, LBRYDaemonCLI.guess_type('3'))
|
||||||
|
self.assertEqual('VdNmakxFORPSyfCprAD/eDDPk5TY9QYtSA==', LBRYDaemonCLI.guess_type('VdNmakxFORPSyfCprAD/eDDPk5TY9QYtSA=='))
|
||||||
|
self.assertEqual(0.3, LBRYDaemonCLI.guess_type('0.3'))
|
||||||
|
|
||||||
|
def test_get_params(self):
|
||||||
|
test_params = [
|
||||||
|
'b64address=VdNmakxFORPSyfCprAD/eDDPk5TY9QYtSA==',
|
||||||
|
'name=test',
|
||||||
|
'amount=5.3',
|
||||||
|
'n=5',
|
||||||
|
'address=bY13xeAjLrsjP4KGETwStK2a9UgKgXVTXu'
|
||||||
|
]
|
||||||
|
test_r = {
|
||||||
|
'b64address': 'VdNmakxFORPSyfCprAD/eDDPk5TY9QYtSA==',
|
||||||
|
'name': 'test',
|
||||||
|
'amount': 5.3,
|
||||||
|
'n': 5,
|
||||||
|
'address': 'bY13xeAjLrsjP4KGETwStK2a9UgKgXVTXu'
|
||||||
|
}
|
||||||
|
self.assertDictEqual(test_r, LBRYDaemonCLI.get_params_from_kwargs(test_params))
|
Loading…
Reference in a new issue