mirror of
https://github.com/aljazceru/cyphernode.git
synced 2025-12-17 12:45:22 +01:00
239 lines
6.8 KiB
Bash
239 lines
6.8 KiB
Bash
#!/bin/sh
|
|
#
|
|
#
|
|
#
|
|
#
|
|
|
|
. ./sendtobitcoinnode.sh
|
|
. ./callbacks_job.sh
|
|
. ./watchrequest.sh
|
|
. ./unwatchrequest.sh
|
|
. ./getactivewatches.sh
|
|
. ./confirmation.sh
|
|
. ./blockchainrpc.sh
|
|
. ./responsetoclient.sh
|
|
. ./trace.sh
|
|
. ./manage_missed_conf.sh
|
|
. ./walletoperations.sh
|
|
. ./bitcoin.sh
|
|
. ./call_lightningd.sh
|
|
|
|
main()
|
|
{
|
|
trace "Entering main()..."
|
|
|
|
local step=0
|
|
local cmd
|
|
local http_method
|
|
local line
|
|
local content_length
|
|
local response
|
|
local returncode
|
|
|
|
while read line; do
|
|
line=$(echo "${line}" | tr -d '\r\n')
|
|
trace "[main] line=${line}"
|
|
|
|
if [ "${cmd}" = "" ]; then
|
|
# First line!
|
|
# Looking for something like:
|
|
# GET /cmd/params HTTP/1.1
|
|
# POST / HTTP/1.1
|
|
cmd=$(echo "${line}" | cut -d '/' -f2 | cut -d ' ' -f1)
|
|
trace "[main] cmd=${cmd}"
|
|
http_method=$(echo "${line}" | cut -d ' ' -f1)
|
|
trace "[main] http_method=${http_method}"
|
|
if [ "${http_method}" = "GET" ]; then
|
|
step=1
|
|
fi
|
|
fi
|
|
if [ "${line}" = "" ]; then
|
|
trace "[main] empty line"
|
|
if [ ${step} -eq 1 ]; then
|
|
trace "[main] body part finished, disconnecting"
|
|
break
|
|
else
|
|
trace "[main] headers part finished, body incoming"
|
|
step=1
|
|
fi
|
|
fi
|
|
# line=content-length: 406
|
|
case "${line}" in *[cC][oO][nN][tT][eE][nN][tT]-[lL][eE][nN][gG][tT][hH]*)
|
|
content_length=$(echo ${line} | cut -d ':' -f2)
|
|
trace "[main] content_length=${content_length}";
|
|
;;
|
|
esac
|
|
if [ ${step} -eq 1 ]; then
|
|
trace "[main] step=${step}"
|
|
if [ "${http_method}" = "POST" ]; then
|
|
read -n ${content_length} line
|
|
trace "[main] line=${line}"
|
|
fi
|
|
case "${cmd}" in
|
|
watch)
|
|
# POST http://192.168.111.152:8080/watch
|
|
# BODY {"address":"2N8DcqzfkYi8CkYzvNNS5amoq3SbAcQNXKp","unconfirmedCallbackURL":"192.168.111.233:1111/callback0conf","confirmedCallbackURL":"192.168.111.233:1111/callback1conf"}
|
|
|
|
response=$(watchrequest "${line}")
|
|
response_to_client "${response}" ${?}
|
|
break
|
|
;;
|
|
unwatch)
|
|
# curl (GET) 192.168.111.152:8080/unwatch/2N8DcqzfkYi8CkYzvNNS5amoq3SbAcQNXKp
|
|
|
|
response=$(unwatchrequest "${line}")
|
|
response_to_client "${response}" ${?}
|
|
break
|
|
;;
|
|
getactivewatches)
|
|
# curl (GET) 192.168.111.152:8080/getactivewatches
|
|
|
|
response=$(getactivewatches)
|
|
response_to_client "${response}" ${?}
|
|
break
|
|
;;
|
|
conf)
|
|
# curl (GET) 192.168.111.152:8080/conf/b081ca7724386f549cf0c16f71db6affeb52ff7a0d9b606fb2e5c43faffd3387
|
|
|
|
response=$(confirmation_request "${line}")
|
|
response_to_client "${response}" ${?}
|
|
break
|
|
;;
|
|
getbestblockhash)
|
|
# curl (GET) http://192.168.111.152:8080/getbestblockhash
|
|
|
|
response=$(get_best_block_hash)
|
|
response_to_client "${response}" ${?}
|
|
break
|
|
;;
|
|
getblockinfo)
|
|
# curl (GET) http://192.168.111.152:8080/getblockinfo/000000006f82a384c208ecfa04d05beea02d420f3f398ddda5c7f900de5718ea
|
|
|
|
response=$(get_block_info $(echo "${line}" | cut -d ' ' -f2 | cut -d '/' -f3))
|
|
response_to_client "${response}" ${?}
|
|
break
|
|
;;
|
|
gettransaction)
|
|
# curl (GET) http://192.168.111.152:8080/gettransaction/af867c86000da76df7ddb1054b273ca9e034e8c89d049b5b2795f9f590f67648
|
|
|
|
response=$(get_rawtransaction $(echo "${line}" | cut -d ' ' -f2 | cut -d '/' -f3))
|
|
response_to_client "${response}" ${?}
|
|
break
|
|
;;
|
|
getbestblockinfo)
|
|
# curl (GET) http://192.168.111.152:8080/getbestblockinfo
|
|
|
|
response=$(get_best_block_info)
|
|
response_to_client "${response}" ${?}
|
|
break
|
|
;;
|
|
executecallbacks)
|
|
# curl (GET) http://192.168.111.152:8080/executecallbacks
|
|
|
|
manage_not_imported
|
|
manage_missed_conf
|
|
response=$(do_callbacks)
|
|
response_to_client "${response}" ${?}
|
|
break
|
|
;;
|
|
getbalance)
|
|
# curl (GET) http://192.168.111.152:8080/getbalance
|
|
|
|
response=$(getbalance)
|
|
response_to_client "${response}" ${?}
|
|
break
|
|
;;
|
|
getnewaddress)
|
|
# curl (GET) http://192.168.111.152:8080/getnewaddress
|
|
|
|
response=$(getnewaddress)
|
|
response_to_client "${response}" ${?}
|
|
break
|
|
;;
|
|
spend)
|
|
# POST http://192.168.111.152:8080/spend
|
|
# BODY {"address":"2N8DcqzfkYi8CkYzvNNS5amoq3SbAcQNXKp","amount":0.00233}
|
|
|
|
response=$(spend "${line}")
|
|
response_to_client "${response}" ${?}
|
|
break
|
|
;;
|
|
addtobatch)
|
|
# POST http://192.168.111.152:8080/addtobatch
|
|
# BODY {"address":"2N8DcqzfkYi8CkYzvNNS5amoq3SbAcQNXKp","amount":0.00233}
|
|
|
|
response=$(addtobatching $(echo "${line}" | jq ".address" | tr -d '"') $(echo "${line}" | jq ".amount"))
|
|
response_to_client "${response}" ${?}
|
|
break
|
|
;;
|
|
batchspend)
|
|
# GET http://192.168.111.152:8080/batchspend
|
|
|
|
response=$(batchspend "${line}")
|
|
response_to_client "${response}" ${?}
|
|
break
|
|
;;
|
|
deriveindex)
|
|
# curl GET http://192.168.111.152:8080/deriveindex/25-30
|
|
# curl GET http://192.168.111.152:8080/deriveindex/34
|
|
|
|
response=$(deriveindex $(echo "${line}" | cut -d ' ' -f2 | cut -d '/' -f3))
|
|
response_to_client "${response}" ${?}
|
|
break
|
|
;;
|
|
derivepubpath)
|
|
# POST http://192.168.111.152:8080/derivepubpath
|
|
# BODY {"pub32":"tpubD6NzVbkrYhZ4YR3QK2tyfMMvBghAvqtNaNK1LTyDWcRHLcMUm3ZN2cGm5BS3MhCRCeCkXQkTXXjiJgqxpqXK7PeUSp86DTTgkLpcjMtpKWk","path":"0/25-30"}
|
|
# BODY {"pub32":"upub5GtUcgGed1aGH4HKQ3vMYrsmLXwmHhS1AeX33ZvDgZiyvkGhNTvGd2TA5Lr4v239Fzjj4ZY48t6wTtXUy2yRgapf37QHgt6KWEZ6bgsCLpb","path":"0/25-30"}
|
|
# BODY {"pub32":"vpub5SLqN2bLY4WeZF3kL4VqiWF1itbf3A6oRrq9aPf16AZMVWYCuN9TxpAZwCzVgW94TNzZPNc9XAHD4As6pdnExBtCDGYRmNJrcJ4eV9hNqcv","path":"0/25-30"}
|
|
|
|
response=$(send_to_pycoin "${line}")
|
|
response_to_client "${response}" ${?}
|
|
break
|
|
;;
|
|
ln_getinfo)
|
|
# GET http://192.168.111.152:8080/ln_getinfo
|
|
|
|
response=$(ln_getinfo)
|
|
response_to_client "${response}" ${?}
|
|
break
|
|
;;
|
|
ln_create_invoice)
|
|
# POST http://192.168.111.152:8080/ln_create_invoice
|
|
# BODY {"msatoshi":"10000","label":"koNCcrSvhX3dmyFhW","description":"Bylls order #10649","expiry":"900"}
|
|
|
|
response=$(ln_create_invoice "${line}")
|
|
response_to_client "${response}" ${?}
|
|
break
|
|
;;
|
|
ln_pay)
|
|
# POST http://192.168.111.152:8080/ln_pay
|
|
# BODY {"bolt11":"lntb1pdca82tpp5gv8mn5jqlj6xztpnt4r472zcyrwf3y2c3cvm4uzg2gqcnj90f83qdp2gf5hgcm0d9hzqnm4w3kx2apqdaexgetjyq3nwvpcxgcqp2g3d86wwdfvyxcz7kce7d3n26d2rw3wf5tzpm2m5fl2z3mm8msa3xk8nv2y32gmzlhwjved980mcmkgq83u9wafq9n4w28amnmwzujgqpmapcr3","expected_msatoshi":"10000","expected_description":"Bitcoin Outlet order #7082"}
|
|
|
|
response=$(ln_pay "${line}")
|
|
response_to_client "${response}" ${?}
|
|
break
|
|
;;
|
|
ln_newaddr)
|
|
# GET http://192.168.111.152:8080/ln_newaddr
|
|
|
|
response=$(ln_newaddr)
|
|
response_to_client "${response}" ${?}
|
|
break
|
|
;;
|
|
esac
|
|
break
|
|
fi
|
|
done
|
|
trace "[main] exiting"
|
|
return 0
|
|
}
|
|
|
|
export NODE_RPC_URL=$BTC_NODE_RPC_URL
|
|
export TRACING
|
|
export DB_PATH
|
|
export DB_FILE
|
|
|
|
main
|
|
exit $?
|