mirror of
https://github.com/openoms/joininbox.git
synced 2026-08-19 13:18:11 +02:00
56 lines
No EOL
1.4 KiB
Bash
Executable file
56 lines
No EOL
1.4 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
# add option if not in conf
|
|
if ! grep -Eq "^wallet=" joinin.conf; then
|
|
echo "wallet=nil" >> joinin.conf
|
|
fi
|
|
|
|
# choose wallet
|
|
|
|
## exprimental
|
|
#dialog --backtitle "Choose a wallet" \
|
|
# --title "Choose a wallet by starting to type " \
|
|
# --fselect "/home/joinin/joinmarket-clientserver/scripts/wallets/" 10 60 2>_temp
|
|
#
|
|
#dialog --backtitle "Choose a wallet" \
|
|
# --title "Choose a wallet" \
|
|
# --inputbox "\nProceeding with $(cat _temp) unless edited below" 10 60 $(cat _temp) 2>_temp
|
|
|
|
# get password
|
|
wallet=$(tempfile 2>/dev/null)
|
|
|
|
dialog --backtitle "Choosing a wallet" \
|
|
--inputbox "Type the name of the wallet to be used.\nExample: wallet1 for wallet1.jmdat" 10 60 2> $wallet
|
|
|
|
# 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)
|
|
touch /home/joinin/.pw
|
|
chmod 600 /home/joinin/.pw
|
|
cat $data | tee /home/joinin/.pw 1>/dev/null
|
|
sed -i "s/^wallet=.*/wallet=$(cat $wallet)/g" joinin.conf
|
|
shred $data;;
|
|
1)
|
|
shred $data
|
|
shred $wallet
|
|
rm -f .pw
|
|
echo "Cancelled"
|
|
exit 1;;
|
|
255)
|
|
shred $data
|
|
shred $wallet
|
|
rm -f .pw
|
|
[ -s $data ] && cat $data || echo "ESC pressed."
|
|
exit 1;;
|
|
esac |