Added -login command

Logs in to Amazon, but executes no further commands
pull/84/head
Christian Fenzl 2020-01-22 09:41:16 +01:00
parent 9c33b54465
commit 04bacd4743
2 changed files with 18 additions and 0 deletions

View File

@ -189,6 +189,7 @@ usage()
echo " -m : delete multiroom and/or create new multiroom containing devices"
echo " -lastalexa : print device that received the last voice command"
echo " -z : print current volume level"
echo " -login : Logs in, without further command"
echo " -l : logoff"
echo " -h : help"
}
@ -306,6 +307,9 @@ while [ "$#" -gt 0 ] ; do
PLIST=$2
shift
;;
-login)
LOGIN="true"
;;
-l)
LOGOFF="true"
;;
@ -1019,6 +1023,11 @@ if [ ! -f ${DEVLIST} ] ; then
fi
fi
if [ -n "$LOGIN" ] ; then
echo "logged in"
exit 0
fi
if [ -n "$COMMAND" -o -n "$QUEUE" -o -n "$NOTIFICATIONS" -o -n "$GETVOL" ] ; then
if [ "${DEVICE}" = "ALL" ] ; then
for DEVICE in $( jq -r '.devices[] | select( ( .deviceFamily == "ECHO" or .deviceFamily == "KNIGHT" or .deviceFamily == "ROOK" or .deviceFamily == "WHA" ) and .online == true ) | .accountName' ${DEVLIST} | sed -r 's/ /%20/g') ; do

View File

@ -133,6 +133,7 @@ usage()
echo " -a : list available devices"
echo " -m : delete multiroom and/or create new multiroom containing devices"
echo " -lastalexa : print serial number that received the last voice command"
echo " -login : Logs in, without further command"
echo " -l : logoff"
echo " -h : help"
}
@ -250,6 +251,9 @@ while [ "$#" -gt 0 ] ; do
DEVICE=$2
shift
;;
-login)
LOGIN="true"
;;
-l)
LOGOFF="true"
;;
@ -920,6 +924,11 @@ if [ ! -f ${DEVTXT} -o ! -f ${DEVALL} ] ; then
fi
fi
if [ -n "$LOGIN" ] ; then
echo "logged in"
exit 0
fi
if [ -n "$COMMAND" -o -n "$QUEUE" -o -n "$NOTIFICATIONS" ] ; then
if [ "${DEVICE}" = "ALL" ] ; then
while IFS= read -r DEVICE ; do