joininbox/scripts/menu.sh
2020-06-13 16:48:31 +01:00

204 lines
7.2 KiB
Bash
Executable file

#!/bin/bash
if [ $(dialog | grep -c "ComeOn Dialog!") -eq 0 ]; then
sudo apt install dialog
fi
if [ -f joinin.conf ]; then
touch joinin.conf
fi
# add default value to joinin config if needed
if ! grep -Eq "^RPCoverTor=" joinin.conf; then
echo "RPCoverTor=off" >> joinin.conf
fi
if grep -Eq "^rpc_host = .*.onion" /home/joinmarket/.joinmarket/joinmarket.cfg; then
echo "RPC over Tor is on"
sudo sed -i "s/^RPCoverTor=.*/RPCoverTor=on/g" joinin.conf
else
echo "RPC over Tor is off"
sudo sed -i "s/^RPCoverTor=.*/RPCoverTor=off/g" joinin.conf
fi
source /home/joinmarket/joinin.conf
# cd ~/bin/joinmarket-clientserver && source jmvenv/bin/activate && cd scripts
# BASIC MENU INFO
HEIGHT=26
WIDTH=52
CHOICE_HEIGHT=20
BACKTITLE=""
TITLE="JoininBox"
MENU="Choose from the options:"
OPTIONS=()
BACKTITLE="JoininBox GUI"
# Basic Options
OPTIONS+=(\
INFO "Show the address list and balance" \
#PAY "Pay to an address using coinjoin" \
#TUMBLER "Run the Tumbler to mix quickly" \
MAKER "Run the Yield Generator" \
#MONITOR "Monitor the Yield Generator" \
YG_LIST "List the past YG activity"
"" ""
#HISTORY "Show the past transactions" \
OBWATCH "Watch the offer book locally" \
#EMPTY "Empty a mixdepth" \
"" ""
YG_CONF "Configure the Yield Generator" \
STOP "Stop the Yield Generator" \
"" ""
GEN "Generate a new wallet" \
IMPORT "Copy wallet(s) from a remote node"
#RESTORE "Restore a wallet from the seed" \
"" ""
INSTALL "Install and configure JoinMarket" \
UPDATE "Update the JoininBox scripts and menu" \
X "Exit to the Command Line" \
)
CHOICE=$(dialog --clear \
--backtitle "$BACKTITLE" \
--title "$TITLE" \
--menu "$MENU" \
$HEIGHT $WIDTH $CHOICE_HEIGHT \
"${OPTIONS[@]}" \
2>&1 >/dev/tty)
case $CHOICE in
INFO)
/home/joinmarket/get.password.sh
clear
source /home/joinmarket/joinin.conf
echo "Decrypting the wallet $wallet.jmdat . . ."
echo ""
. /home/joinmarket/joinmarket-clientserver/jmvenv/bin/activate
if [ ${RPCoverTor} = on ];then
torify python /home/joinmarket/start.script.tor.py wallet-tool $wallet
else
python /home/joinmarket/start.script.py wallet-tool $wallet
fi
cat wallet-tool.log
echo ""
echo "Fund the wallet on addresses labeled 'new' to avoid address reuse."
;;
PAY)
;;
TUMBLER)
;;
MAKER)
/home/joinmarket/get.password.sh
source /home/joinmarket/joinin.conf
/home/joinmarket/start.service.sh yg-privacyenhanced $wallet
echo "Starting the Yield Generator in the background.."
sleep 5
echo ""
echo "Exit to the command line by pressing CTRL+C"
echo ""
# dialog \
# --title "Monitoring the Yield Generator" \
# --prgbox "tail -f yg-privacyenhanced.log" 20 140
/home/joinmarket/menu.sh
;;
MONITOR)
# TODO check if active with ?systemctl
dialog \
--title "Monitoring the Yield Generator" \
--prgbox "tail -f yg-privacyenhanced.log" 20 140
/home/joinmarket/menu.sh
;;
YG_LIST)
dialog \
--title "timestamp cj amount/satoshi my input count my input value/satoshi cjfee/satoshi earned/satoshi confirm time/min notes" \
--prgbox "column $HOME/.joinmarket/logs/yigen-statement.csv -t -s ","" 100 140
/home/joinmarket/menu.sh
;;
HISTORY)
/home/joinmarket/get.password.sh
clear
source /home/joinmarket/joinin.conf
echo "Decrypting the history of the wallet $wallet.jmdat . . ."
echo ""
. /home/joinmarket/joinmarket-clientserver/jmvenv/bin/activate
if [ ${RPCoverTor} = on ];then
torify python /home/joinmarket/start.script.tor.py wallet-tool $wallet history
else
python /home/joinmarket/start.script.py wallet-tool $wallet history
fi
cat wallet-tool.log
echo ""
echo "Fund the wallet on addresses labeled 'new' to avoid address reuse."
python wallet-tool.py wallet.jmdat history
;;
OBWATCH)
#TODO show hidden service only if already running
/home/joinmarket/start.ob-watcher.sh
errorOnInstall=$?
if [ ${errorOnInstall} -eq 0 ]; then
TOR_ADDRESS=$(sudo cat /var/lib/tor/ob-watcher/hostname)
dialog --title "Started the ob-watcher service" \
--msgbox "\nVisit the address in the Tor Browser:\nhttps://$TOR_ADDRESS" 8 74
else
DIALOGRC=.dialogrc.onerror dialog --title "Error during install" \
--msgbox "\nPlease search or report at:\n https://github.com/openoms/joininbox/issues" 7 56
fi
/home/joinmarket/menu.sh
;;
EMPTY)
;;
YG_CONF)
/home/joinmarket/set.conf.sh /home/joinmarket/joinmarket-clientserver/scripts/yg-privacyenhanced.py
/home/joinmarket/menu.sh
;;
STOP)
sudo systemctl stop yg-privacyenhanced
/home/joinmarket/menu.sh
;;
GEN)
clear
echo ""
. /home/joinmarket/joinmarket-clientserver/jmvenv/bin/activate
if [ ${RPCoverTor} = on ];then
torify python /home/joinmarket/joinmarket-clientserver/scripts/wallet-tool.py generate
else
python /home/joinmarket/joinmarket-clientserver/scripts/wallet-tool.py generate
fi
;;
IMPORT)
/home/joinmarket/import.wallet.sh
/home/joinmarket/menu.sh
;;
RESTORE)
;;
INSTALL)
/home/joinmarket/install.joinmarket.sh
errorOnInstall=$?
if [ ${errorOnInstall} -eq 0 ]; then
dialog --title "Installed JoinMarket" \
--msgbox "\nContinue from the menu or the command line " 7 56
else
DIALOGRC=.dialogrc.onerror dialog --title "Error during install" \
--msgbox "\nPlease search or report at:\n https://github.com/openoms/joininbox/issues" 7 56
fi
/home/joinmarket/menu.sh
;;
UPDATE)
./update.joininbox.sh
/home/joinmarket/menu.sh
;;
X)
clear
echo "***********************************"
echo "* JoinBox Commandline"
echo "***********************************"
echo "Refer to the documentation about how to get started and much more:"
echo "https://github.com/JoinMarket-Org/joinmarket-clientserver/blob/master/README.md"
echo ""
echo "To return to main menu use the command: menu"
echo ""
exit 1;
;;
esac