aboutsummaryrefslogtreecommitdiff
path: root/e3372-readsms.sh
diff options
context:
space:
mode:
Diffstat (limited to 'e3372-readsms.sh')
-rwxr-xr-xe3372-readsms.sh16
1 files changed, 7 insertions, 9 deletions
diff --git a/e3372-readsms.sh b/e3372-readsms.sh
index 88dfbe3..afb19f2 100755
--- a/e3372-readsms.sh
+++ b/e3372-readsms.sh
@@ -1,20 +1,18 @@
#!/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 POST "http://$MODEM_IP/api/sms/sms-list" \
- -H "Cookie: $COOKIE" \
- -H "__RequestVerificationToken: $TOKEN" \
- -H "Content-Type: text/xml" \
- -d "<request><PageIndex>1</PageIndex><ReadCount>10</ReadCount><BoxType>1</BoxType><SortType>0</SortType><Ascending>0</Ascending><UnreadPreferred>1</UnreadPreferred></request>" > modem_status.xml
+ -H "Cookie: $COOKIE" \
+ -H "__RequestVerificationToken: $TOKEN" \
+ -H "Content-Type: text/xml" \
+ -d "<request><PageIndex>1</PageIndex><ReadCount>10</ReadCount><BoxType>1</BoxType><SortType>0</SortType><Ascending>0</Ascending><UnreadPreferred>1</UnreadPreferred></request>" >modem_status.xml
#cat modem_status.xml
message=$(grep -r -E 'Phone|Content' modem_status.xml | sed -e 's/<[^>]*>//g' | sed -e 's/^[ \t]*/------\n/g')
-echo "$message\n------" \ No newline at end of file
+echo "$message\n------"