mirror of
https://github.com/openoms/joininbox.git
synced 2026-08-13 12:33:14 +02:00
115 lines
2.4 KiB
Bash
Executable file
115 lines
2.4 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
script="$1"
|
|
if [ ${#script} -eq 0 ]; then
|
|
echo "must specify a script to run"
|
|
exit 1
|
|
elif [ ${script} == "receive-payjoin" ]; then
|
|
specialMessage="
|
|
Communicate the sender the:
|
|
- receiving address (3....)
|
|
- ephemeral nickname (J5...)
|
|
- amount in satoshis
|
|
"
|
|
else
|
|
specialMessage=""
|
|
fi
|
|
|
|
wallet="$2"
|
|
if [ ${#wallet} -eq 0 ] || [ ${wallet} == "" ]; then
|
|
# wallet
|
|
source menu.functions.sh
|
|
tempwallet=$(tempfile 2>/dev/null)
|
|
dialog --backtitle "Choose a wallet" \
|
|
--title "Choose a wallet by typing the full name of the file" \
|
|
--fselect "/home/joinmarket/.joinmarket/wallets/" 10 60 2> $tempwallet
|
|
openMenuIfCancelled $?
|
|
wallet=$(cat $tempwallet)
|
|
fi
|
|
|
|
option="$3"
|
|
if [ ${#option} -eq 0 ] || [ ${option} == nooption ]; then
|
|
option=""
|
|
fi
|
|
|
|
mixdepth="$4"
|
|
if [ ${#mixdepth} -eq 0 ]; then
|
|
mixdepth=""
|
|
else
|
|
mixdepth="-m$4"
|
|
fi
|
|
|
|
makercount="$5"
|
|
if [ ${#makercount} -eq 0 ] || [ ${makercount} == nomakercount ]; then
|
|
makercount=""
|
|
else
|
|
makercount="-N$5"
|
|
fi
|
|
|
|
amount="$6"
|
|
if [ ${#amount} -eq 0 ]; then
|
|
amount=""
|
|
fi
|
|
|
|
address="$7"
|
|
if [ ${#address} -eq 0 ]; then
|
|
address=""
|
|
fi
|
|
|
|
nickname="$8"
|
|
if [ ${#nickname} -eq 0 ]; then
|
|
nickname=""
|
|
else
|
|
nickname="-T $8"
|
|
fi
|
|
|
|
source /home/joinmarket/joinin.conf
|
|
if [ ${RPCoverTor} = on ]; then
|
|
tor="torify"
|
|
else
|
|
tor=""
|
|
fi
|
|
|
|
# get password
|
|
data=$(tempfile 2>/dev/null)
|
|
|
|
# trap it
|
|
trap "rm -f $data" 0 1 2 5 15
|
|
|
|
dialog --backtitle "Decrypting Wallet" \
|
|
--insecure \
|
|
--passwordbox "Type or paste the wallet decryption password" 8 52 2> $data
|
|
|
|
# make decison
|
|
pressed=$?
|
|
case $pressed in
|
|
0)
|
|
if [ ${RPCoverTor} == on ];then
|
|
echo "running the command:
|
|
$tor python ~/joinmarket-clientserver/scripts/$script.py \
|
|
$makercount $mixdepth $wallet $option $amount $address $nickname"
|
|
else
|
|
echo "running the command:
|
|
python ~/joinmarket-clientserver/scripts/$script.py \
|
|
$makercount $mixdepth $wallet $option $amount $address $nickname"
|
|
fi
|
|
echo "$specialMessage"
|
|
. /home/joinmarket/joinmarket-clientserver/jmvenv/bin/activate
|
|
cat $data | $tor \
|
|
python ~/joinmarket-clientserver/scripts/$script.py \
|
|
$makercount $mixdepth $wallet $option $amount $address $nickname --wallet-password-stdin
|
|
shred $data
|
|
;;
|
|
1)
|
|
shred $data
|
|
rm -f .pw
|
|
echo "Cancelled"
|
|
exit 1
|
|
;;
|
|
255)
|
|
shred $data
|
|
rm -f .pw
|
|
[ -s $data ] && cat $data || echo "ESC pressed."
|
|
exit 1
|
|
;;
|
|
esac
|