1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-04 00:17:06 +00:00
mailinabox/tests/lib/totp_cli.sh
2022-09-19 14:45:11 -04:00

56 lines
1.5 KiB
Bash
Executable File

#!/bin/bash
#####
##### This file is part of Mail-in-a-Box-LDAP which is released under the
##### terms of the GNU Affero General Public License as published by the
##### Free Software Foundation, either version 3 of the License, or (at
##### your option) any later version. See file LICENSE or go to
##### https://github.com/downtownallday/mailinabox-ldap for full license
##### details.
#####
. $(dirname "0")/totp.sh || exit 1
while [ $# -gt 0 ]; do
arg="$1"
shift
if [ "$arg" == "token" ]; then
# our "authenticator app"
#
# get the current token for the secret supplied or if no
# secret given on the command line, from the saved secret in
# /tmp/totp_secret.txt
#
secret_file="/tmp/totp_secret.txt"
if [ $# -gt 0 ]; then
recalled=false
secret="$1"
shift
else
recalled=true
echo "Re-using last secret from $secret_file" 1>&2
secret="$(cat $secret_file)"
if [ $? -ne 0 ]; then
exit 1
fi
fi
totp_current_token "$secret"
code=$?
if [ $code -ne 0 ]; then
exit 1
elif ! $recalled; then
echo "Storing secret in $secret_file" 1>&2
touch "$secret_file" || exit 2
chmod 600 "$secret_file" || exit 3
echo -n "$secret" > "$secret_file" || exit 4
fi
exit 0
fi
done