diff options
-rwxr-xr-x | util/board_status/to-wiki/push-to-wiki.sh | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/util/board_status/to-wiki/push-to-wiki.sh b/util/board_status/to-wiki/push-to-wiki.sh index ad339931e5..7c677269b1 100755 --- a/util/board_status/to-wiki/push-to-wiki.sh +++ b/util/board_status/to-wiki/push-to-wiki.sh @@ -22,12 +22,10 @@ CR=$(curl -sS \ --compressed \ --data-urlencode "lgname=${USERNAME}" \ --data-urlencode "lgpassword=${USERPASS}" \ - --request "POST" "${WIKIAPI}?action=login&format=txt") + --request "POST" "${WIKIAPI}?action=login&format=json") -CR2=($CR) -if [ "${CR2[9]}" = "[token]" ]; then - TOKEN=${CR2[11]} -else +TOKEN=`echo $CR| sed -e 's,^.*"token":"\([^"]*\)".*$,\1,'` +if [ -z "$TOKEN" ]; then exit fi @@ -44,7 +42,7 @@ CR=$(curl -sS \ --data-urlencode "lgname=${USERNAME}" \ --data-urlencode "lgpassword=${USERPASS}" \ --data-urlencode "lgtoken=${TOKEN}" \ - --request "POST" "${WIKIAPI}?action=login&format=txt") + --request "POST" "${WIKIAPI}?action=login&format=json") ############### #Get edit token @@ -57,10 +55,10 @@ CR=$(curl -sS \ --header "Accept-Language: en-us" \ --header "Connection: keep-alive" \ --compressed \ - --request "POST" "${WIKIAPI}?action=tokens&format=txt") + --request "POST" "${WIKIAPI}?action=query&meta=tokens&format=json") -CR2=($CR) -EDITTOKEN=${CR2[8]} +EDITTOKEN=`echo $CR| sed -e 's,^.*"csrftoken":"\([^"]*\)".*$,\1,'` +EDITTOKEN=`printf "$EDITTOKEN"` if [ ${#EDITTOKEN} != 34 ]; then exit fi |