aboutsummaryrefslogtreecommitdiff
path: root/e3372.sh
diff options
context:
space:
mode:
Diffstat (limited to 'e3372.sh')
-rwxr-xr-xe3372.sh16
1 files changed, 4 insertions, 12 deletions
diff --git a/e3372.sh b/e3372.sh
index 2310c72..1e1ad16 100755
--- a/e3372.sh
+++ b/e3372.sh
@@ -4,19 +4,11 @@ DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" &>/dev/null && pwd)"
. "$DIR/include.sh"
get_token
+get_xml "device/information" > $STATUS_FILE
+get_xml "device/signal" >> $SIGNAL_FILE
-curl -s -X GET "http://$MODEM_IP/api/device/information" \
- -H "Cookie: $COOKIE" \
- -H "__RequestVerificationToken: $TOKEN" \
- -H "Content-Type: text/xml" >modem_status.xml
-
-curl -s -X GET "http://$MODEM_IP/api/device/signal" \
- -H "Cookie: $COOKIE" \
- -H "__RequestVerificationToken: $TOKEN" \
- -H "Content-Type: text/xml" >>modem_status.xml
-
-wmode=$(cat modem_status.xml | grep workmode | sed -e 's/<[^>]*>//g')
-rssi=$(cat modem_status.xml | grep rssi | sed -e 's/<[^>]*>//g')
+wmode=$(cat $STATUS_FILE | grep workmode | sed -e 's/<[^>]*>//g')
+rssi=$(cat $STATUS_FILE | grep rssi | sed -e 's/<[^>]*>//g')
echo "mode: $wmode"
echo "signal: $rssi"