diff options
author | Evgeny Zinoviev <me@ch1p.io> | 2021-03-22 23:25:34 +0300 |
---|---|---|
committer | Evgeny Zinoviev <me@ch1p.io> | 2021-03-22 23:25:39 +0300 |
commit | 91b6b387e19ad2b2f686e8a27bfc0a027e9eb4d9 (patch) | |
tree | 2be275e79d58e8f8f69166086c11ca3cbe1d9ed3 /include.sh | |
parent | c8fb7cd3987d3128bcee5962a5af4cd282add24e (diff) |
eliminate a lot of copypasta by using functions
Diffstat (limited to 'include.sh')
-rwxr-xr-x | include.sh | 21 |
1 files changed, 21 insertions, 0 deletions
@@ -2,10 +2,31 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )" [ -z "$MODEM_IP" ] && MODEM_IP="192.168.9.1" +STATUS_FILE="modem_status.xml" get_token() { 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`) rm ses_tok.xml +} + +get_xml() { + local endpoint="$1" + + curl -s -X GET "http://$MODEM_IP/api/$endpoint" \ + -H "Cookie: $COOKIE" \ + -H "__RequestVerificationToken: $TOKEN" \ + -H "Content-Type: text/xml" +} + +post_xml() { + local endpoint="$1" + local data="$2" + + curl -s -X POST "http://$MODEM_IP/api/$endpoint" \ + -H "Cookie: $COOKIE" \ + -H "__RequestVerificationToken: $TOKEN" \ + -H "Content-Type: text/xml" \ + -d "$data" }
\ No newline at end of file |