zbxcat/xcat/utils.py

108 lines
2.7 KiB
Python
Raw Normal View History

2017-07-31 14:01:20 -07:00
import hashlib, json, random, binascii
2017-07-28 19:44:24 -07:00
import xcat.trades as trades
2017-08-02 18:06:09 -07:00
import os
ROOT_DIR = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
2017-07-26 08:06:39 -07:00
############################################
########### Data conversion utils ##########
############################################
def b(string):
"""Convert a string to bytes"""
return str.encode(string)
def x(h):
"""Convert a hex string to bytes"""
return binascii.unhexlify(h.encode('utf8'))
def b2x(b):
"""Convert bytes to a hex string"""
return binascii.hexlify(b).decode('utf8')
def x2s(hexstring):
"""Convert hex to a utf-8 string"""
return binascii.unhexlify(hexstring).decode('utf-8')
2017-05-22 18:00:34 -07:00
def s2x(string):
"""Convert a utf-8 string to hex"""
return b2x(b(string))
2017-07-12 20:33:56 -07:00
def hex2dict(hexstr):
jsonstr = x2s(hexstr)
2017-07-31 14:01:20 -07:00
print(hexstr['fund_tx'])
print(jsonstr)
2017-07-12 20:33:56 -07:00
return json.loads(jsonstr)
2017-07-26 08:06:39 -07:00
def jsonformat(trade):
return {
'sell': trade.sell.__dict__,
'buy': trade.buyContract.__dict__
}
2017-07-26 08:06:39 -07:00
############################################
########### Preimage utils #################
############################################
def generate_password():
2017-08-02 18:06:09 -07:00
s = "1234567890abcdefghijklmnopqrstuvwxyz01234567890ABCDEFGHIJKLMNOPQRSTUVWXYZ"
passlen = 32
p = "".join(random.sample(s,passlen))
return p
2017-08-02 18:06:09 -07:00
def sha256(secret):
preimage = secret.encode('utf8')
h = hashlib.sha256(preimage).digest()
return h
2017-07-26 08:06:39 -07:00
############################################
######## Error handling for CLI ############
############################################
def throw(err):
print(err)
exit()
2017-07-26 08:06:39 -07:00
#############################################
######### xcat.json temp file #############
#############################################
tmp_dir = os.path.join(ROOT_DIR, '.tmp')
if not os.path.exists(tmp_dir):
os.makedirs(tmp_dir)
xcatjson = os.path.join(tmp_dir, 'xcat.json')
2017-08-02 18:06:09 -07:00
def save_trade(trade):
2017-08-02 18:06:09 -07:00
with open(xcatjson, 'w+') as outfile:
json.dump(trade, outfile)
def get_trade():
2017-08-02 18:06:09 -07:00
with open(xcatjson) as data_file:
2017-07-31 14:01:20 -07:00
xcatdb = json.load(data_file)
sell = trades.Contract(xcatdb['sell'])
buy = trades.Contract(xcatdb['buy'])
trade = trades.Trade(sell, buy, commitment=xcatdb['commitment'])
return trade
2017-05-23 14:12:01 -07:00
def erase_trade():
try:
with open(xcatjson, 'w') as outfile:
outfile.write('')
except:
pass
2017-05-23 14:12:01 -07:00
def save(trade):
2017-08-25 12:12:29 -07:00
# print("Saving trade")
trade = {
'sell': trade.sell.__dict__,
2017-07-28 13:57:44 -07:00
'buy': trade.buy.__dict__,
'commitment': trade.commitment
}
save_trade(trade)
2017-08-02 18:45:36 -07:00
# Remove tmp files when trade is complete
def cleanup(tradeid):
try:
os.remove(os.path.join(ROOT_DIR, '.tmp/{0}'.format(tradeid)))
except:
pass