2019-09-11 04:11:40 +02:00
|
|
|
#!/bin/sh
|
2019-12-08 19:14:46 +01:00
|
|
|
# credentials
|
2019-09-11 04:11:40 +02:00
|
|
|
# Written in 2019 by Lucas
|
|
|
|
# CC0 1.0 Universal/Public domain - No rights reserved
|
|
|
|
#
|
|
|
|
# To the extent possible under law, the author(s) have dedicated all
|
|
|
|
# copyright and related and neighboring rights to this software to the
|
|
|
|
# public domain worldwide. This software is distributed without any
|
|
|
|
# warranty. You should have received a copy of the CC0 Public Domain
|
|
|
|
# Dedication along with this software. If not, see
|
|
|
|
# <http://creativecommons.org/publicdomain/zero/1.0/>.
|
|
|
|
|
2019-12-05 11:58:10 +01:00
|
|
|
usage()
|
|
|
|
{
|
2019-12-08 19:14:46 +01:00
|
|
|
printf "Usage: %s [-2pu] service\n" "${0##*/}" >&2
|
2019-09-11 04:11:40 +02:00
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
2019-12-05 11:58:10 +01:00
|
|
|
err()
|
|
|
|
{
|
|
|
|
printf "%s: %s\n" "${0##*/}" "$*" >&2
|
|
|
|
exit 1
|
|
|
|
}
|
2019-09-11 04:11:40 +02:00
|
|
|
|
2019-12-05 11:58:10 +01:00
|
|
|
clip()
|
|
|
|
{
|
|
|
|
xclip -q -r -l 1 -sel clip 2>/dev/null
|
2019-09-11 04:11:40 +02:00
|
|
|
}
|
|
|
|
|
2019-12-05 11:58:10 +01:00
|
|
|
get_user()
|
|
|
|
{
|
|
|
|
printf user
|
|
|
|
sekrit get "services/$1/user" | clip && printf "\n"
|
2019-09-11 04:11:40 +02:00
|
|
|
}
|
|
|
|
|
2019-12-05 11:58:10 +01:00
|
|
|
get_pass()
|
|
|
|
{
|
|
|
|
printf pass
|
|
|
|
sekrit get "services/$1/pass" | clip && printf "\n"
|
|
|
|
}
|
|
|
|
|
|
|
|
get_2fa()
|
|
|
|
{
|
|
|
|
printf 2fa
|
2019-09-11 04:11:40 +02:00
|
|
|
otpcli_opts=
|
|
|
|
case $1 in
|
|
|
|
isnic) otpcli_opts="-H sha512 -d 8"
|
|
|
|
;;
|
|
|
|
esac
|
2019-12-05 11:58:10 +01:00
|
|
|
sekrit get "services/$1/2fa" | otpcli $otpcli_opts | clip && printf "\n"
|
2019-09-11 04:11:40 +02:00
|
|
|
}
|
|
|
|
|
2019-12-05 11:58:10 +01:00
|
|
|
get_from_flags()
|
|
|
|
{
|
|
|
|
service=$1
|
|
|
|
user=$2
|
|
|
|
pass=$3
|
|
|
|
sfa=$4
|
2019-09-11 04:11:40 +02:00
|
|
|
|
2019-12-16 14:50:59 +01:00
|
|
|
if [ $user = yes ]; then
|
|
|
|
sekrit has services/"$service"/user ||
|
|
|
|
err "Service \"$service\" has no user."
|
|
|
|
fi
|
|
|
|
if [ $pass = yes ]; then
|
|
|
|
sekrit has services/"$service"/pass ||
|
|
|
|
err "Service \"$service\" has no pass."
|
|
|
|
fi
|
|
|
|
if [ $sfa = yes ]; then
|
|
|
|
sekrit has services/"$service"/2fa ||
|
|
|
|
err "Service \"$service\" has no 2fa."
|
|
|
|
fi
|
2019-09-11 04:11:40 +02:00
|
|
|
|
2019-12-05 11:58:10 +01:00
|
|
|
[ $user = yes ] && get_user "$service"
|
|
|
|
[ $pass = yes ] && get_pass "$service"
|
|
|
|
[ $sfa = yes ] && get_2fa "$service"
|
2019-09-11 04:11:40 +02:00
|
|
|
}
|
|
|
|
|
2019-12-05 11:58:10 +01:00
|
|
|
get_all()
|
|
|
|
{
|
|
|
|
service=$1
|
|
|
|
sekrit has "services/$service/pass" ||
|
|
|
|
err "Unknown service \"$service\"."
|
2019-09-11 04:11:40 +02:00
|
|
|
|
2019-12-05 11:58:10 +01:00
|
|
|
sekrit has "services/$service/user" && get_user "$service"
|
|
|
|
get_pass "$service"
|
|
|
|
sekrit has "services/$service/2fa" && get_2fa "$service"
|
2019-09-11 04:11:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
sfa=no
|
|
|
|
pass=no
|
|
|
|
user=no
|
|
|
|
while getopts 2pu flag; do
|
|
|
|
case $flag in
|
|
|
|
2) sfa=yes
|
|
|
|
;;
|
|
|
|
p) pass=yes
|
|
|
|
;;
|
|
|
|
u) user=yes
|
|
|
|
;;
|
|
|
|
*) usage
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
shift $(($OPTIND - 1))
|
|
|
|
|
2019-12-05 11:58:10 +01:00
|
|
|
[ $# -eq 1 ] && [ -n "$1" ] || usage
|
2019-09-11 04:11:40 +02:00
|
|
|
service=$1
|
|
|
|
|
|
|
|
if [ $sfa = yes ] || [ $pass = yes ] || [ $user = yes ]; then
|
2019-12-05 11:58:10 +01:00
|
|
|
get_from_flags "$service" $user $pass $sfa
|
2019-09-11 04:11:40 +02:00
|
|
|
else
|
|
|
|
get_all "$service"
|
|
|
|
fi
|