diff options
author | Evgeny Zinoviev <me@ch1p.io> | 2021-03-22 23:11:46 +0300 |
---|---|---|
committer | Evgeny Zinoviev <me@ch1p.io> | 2021-03-22 23:11:46 +0300 |
commit | 56df129e9de9022c2aa01717a784d94e1374115e (patch) | |
tree | a426b8f2ea71ebcf1350ac2e9a271079e9537797 /e3372.sh | |
parent | efe41f5ce1c1023af96d06c19f5d4f91957d26b5 (diff) |
code refactoring
Diffstat (limited to 'e3372.sh')
-rwxr-xr-x | e3372.sh | 18 |
1 files changed, 8 insertions, 10 deletions
@@ -1,21 +1,19 @@ #!/bin/bash -DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )" +DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" &>/dev/null && pwd)" . "$DIR/config.sh" -curl -s -X GET "http://$MODEM_IP/api/webserver/SesTokInfo" > ses_tok.xml -COOKIE=`grep "SessionID=" ses_tok.xml | cut -b 10-147` -TOKEN=`grep "TokInfo" ses_tok.xml | cut -b 10-41` +get_token curl -s -X GET "http://$MODEM_IP/api/device/information" \ - -H "Cookie: $COOKIE" \ - -H "__RequestVerificationToken: $TOKEN" \ - -H "Content-Type: text/xml" > modem_status.xml + -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 + -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') |