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-readsms.sh | |
parent | efe41f5ce1c1023af96d06c19f5d4f91957d26b5 (diff) |
code refactoring
Diffstat (limited to 'e3372-readsms.sh')
-rwxr-xr-x | e3372-readsms.sh | 16 |
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------" |