mirror of
https://github.com/openoms/joininbox.git
synced 2026-08-14 12:43:13 +02:00
49 lines
No EOL
1.1 KiB
Bash
Executable file
49 lines
No EOL
1.1 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
source menu.functions.sh
|
|
|
|
# add option if not in conf
|
|
if ! grep -Eq "^wallet=" /home/joinmarket/joinin.conf; then
|
|
echo "wallet=" >> /home/joinmarket/joinin.conf
|
|
fi
|
|
|
|
# choose wallet
|
|
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)
|
|
|
|
# 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/joinmarket/.pw
|
|
chmod 600 /home/joinmarket/.pw
|
|
cat $data | tee /home/joinmarket/.pw 1>/dev/null
|
|
sed -i "s#^wallet=.*#wallet=$wallet#g" /home/joinmarket/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 |