raspiblitz/home.admin/99clMenu.sh

124 lines
3.7 KiB
Bash
Raw Normal View History

2021-05-22 16:51:22 +02:00
#!/bin/bash
# get raspiblitz config
echo "# get raspiblitz config"
source /home/admin/raspiblitz.info
source /mnt/hdd/raspiblitz.conf
source <(/home/admin/config.scripts/network.aliases.sh getvars cl $1)
2021-06-11 10:44:53 +02:00
# make sure the CL wallet is unlocked
/home/admin/config.scripts/cl.hsmtool.sh unlock ${CHAIN}
2021-05-22 16:51:22 +02:00
# BASIC MENU INFO
WIDTH=64
BACKTITLE="RaspiBlitz"
2022-07-27 08:29:16 +02:00
TITLE=" Core Lightning Options (${CHAIN})"
2021-05-22 16:51:22 +02:00
MENU=""
OPTIONS=()
2022-07-27 08:37:36 +02:00
OPTIONS+=(FUNDING "Fund the Core Lightning wallet onchain")
OPTIONS+=(PEERING "Connect to a peer")
OPTIONS+=(CHANNEL "Open a channel with peer")
OPTIONS+=(SEND "Pay an invoice / payment request")
OPTIONS+=(RECEIVE "Create an invoice / payment request")
OPTIONS+=(SUMMARY "Information about this node")
OPTIONS+=(NAME "Change the name / alias of the node")
2021-06-11 10:44:53 +02:00
ln_getInfo=$($lightningcli_alias getinfo 2>/dev/null)
ln_channels_online="$(echo "${ln_getInfo}" | jq -r '.num_active_channels')" 2>/dev/null
cl_num_inactive_channels="$(echo "${ln_getInfo}" | jq -r '.num_inactive_channels')" 2>/dev/null
openChannels=$((ln_channels_online+cl_num_inactive_channels))
2021-05-22 16:51:22 +02:00
if [ ${#openChannels} -gt 0 ] && [ ${openChannels} -gt 0 ]; then
2021-08-16 16:41:23 +02:00
OPTIONS+=(SUEZ "Visualize channels")
OPTIONS+=(CLOSEALL "Close all open channels on $CHAIN")
2021-05-22 16:51:22 +02:00
fi
OPTIONS+=(CASHOUT "Withdraw all funds onchain ($CHAIN)")
2021-09-09 15:33:01 +02:00
OPTIONS+=(SEED "Show Wallet Seed Words")
if [ "${clWatchtowerClient}" == "on" ] && [ "${CHAIN}" == "mainnet" ]; then
OPTIONS+=(WATCHTOWER "Watchtower Client Options")
fi
2022-07-27 08:37:36 +02:00
OPTIONS+=(REPAIR-CL "Repair options for Core Lightning")
if [ "${lightning}" != "cl" ] && [ "${CHAIN}" == "mainnet" ]; then
2022-07-27 08:37:36 +02:00
OPTIONS+=(SWITCHLN "Use Core Lightning as default")
fi
2021-05-22 16:51:22 +02:00
2021-08-16 16:41:23 +02:00
CHOICE_HEIGHT=$(("${#OPTIONS[@]}/2+1"))
HEIGHT=$((CHOICE_HEIGHT+6))
2021-05-22 16:51:22 +02:00
CHOICE=$(dialog --clear \
--backtitle "$BACKTITLE" \
--title "$TITLE" \
--ok-label "Select" \
--cancel-label "Main menu" \
--menu "$MENU" \
$HEIGHT $WIDTH $CHOICE_HEIGHT \
"${OPTIONS[@]}" \
2>&1 >/dev/tty)
case $CHOICE in
2021-06-11 11:33:12 +02:00
SUMMARY)
2021-07-23 11:25:32 +02:00
clear
/home/admin/config.scripts/cl-plugin.summary.sh $CHAIN
2021-07-24 00:33:51 +02:00
echo "Press ENTER to return to main menu."
read key
2021-05-28 21:28:56 +02:00
;;
PEERING)
/home/admin/BBconnectPeer.sh cl $CHAIN
2021-05-28 21:28:56 +02:00
;;
FUNDING)
/home/admin/BBfundWallet.sh cl $CHAIN
2021-05-28 21:28:56 +02:00
;;
CASHOUT)
/home/admin/BBcashoutWallet.sh cl $CHAIN
2021-05-28 21:28:56 +02:00
;;
CHANNEL)
/home/admin/BBopenChannel.sh cl $CHAIN
2021-05-28 21:28:56 +02:00
;;
SEND)
/home/admin/BBpayInvoice.sh cl $CHAIN
2021-05-28 21:28:56 +02:00
;;
RECEIVE)
/home/admin/BBcreateInvoice.sh cl $CHAIN
2021-05-28 21:28:56 +02:00
;;
2021-09-09 15:33:01 +02:00
SEED)
sudo /home/admin/config.scripts/cl.install.sh display-seed $CHAIN
2021-09-09 15:33:01 +02:00
;;
2021-05-28 21:28:56 +02:00
NAME)
sudo /home/admin/config.scripts/cl.setname.sh $CHAIN
2021-05-28 21:28:56 +02:00
;;
WATCHTOWER)
/home/admin/config.scripts/cl-plugin.watchtower-client.sh info
;;
SUEZ)
clear
if [ ! -f /home/bitcoin/suez/suez ];then
/home/admin/config.scripts/bonus.suez.sh on
fi
cd /home/bitcoin/suez || exit 1
2021-08-24 12:34:05 +02:00
echo
sudo -u bitcoin poetry run ./suez --client=c-lightning --client-args=--conf=${CLCONF}
echo
echo "Press ENTER to return to main menu."
read key
;;
2021-05-28 21:28:56 +02:00
CLOSEALL)
/home/admin/BBcloseAllChannels.sh cl $CHAIN
2021-05-28 21:28:56 +02:00
echo "Press ENTER to return to main menu."
read key
;;
REPAIR-CL)
/home/admin/99clRepairMenu.sh $CHAIN
;;
2021-05-28 21:28:56 +02:00
SWITCHLN)
clear
2021-05-28 21:28:56 +02:00
echo
# setting value in the raspiblitz.conf
/home/admin/config.scripts/blitz.conf.sh set lightning "cl"
sudo systemctl restart blitzapi 2>/dev/null
echo "# OK - lightning=cl is set in /mnt/hdd/raspiblitz.conf"
2021-05-28 21:28:56 +02:00
echo
echo "Press ENTER to return to main menu."
read key
;;
2021-05-22 16:51:22 +02:00
esac
2021-07-24 00:31:30 +02:00
exit 0