api: Refresh the API CLI wrapper script.

This commit is contained in:
Jonathan Bernard 2021-07-05 11:35:03 -05:00
parent 3844e97c48
commit 2fd45ac35c

View File

@ -1,24 +1,37 @@
#!/bin/bash #!/bin/bash
api_base_url="${PM_API_BASE_URL:-http://localhost:8081}" api_base_url="${PM_API_BASE_URL:-http://localhost:8100/v0}"
if [ $# -eq 1 ]; then if [ $# -eq 1 ]; then
url="$1" url="$1"
method="GET" method="GET"
data="" data=""
elif [ $# -eq 2 ]; then elif [ $# -eq 2 ]; then
method="$1" if [ $1 == "auth-token" ]; then
url="$2" curl -s -X POST \
data="" -H "Origin: https://curl.localhost" \
else "${api_base_url}/auth-token" \
-d "$2" \
| xargs printf "Bearer %s" \
> credential
exit 0
else
method="$1"
url="$2"
data=""
fi
else
method="$1" method="$1"
url="$2" url="$2"
data="$3" data="$3"
fi fi
if [[ ! $url = /* ]]; then url="/$url"; fi
curl -s -X "$method" \ curl -s -X "$method" \
-H "Content-Type: application/json" \ -H "Content-Type: application/json" \
-H "Authorization: $(cat credential)" \ -H "Authorization: $(cat credential)" \
-H "Origin: https://curl.localhost" \ -H "Origin: https://curl.localhost" \
"${api_base_url}/api/$url" \ "${api_base_url}$url" \
-d "$data" \ -d "$data" \
-v | jq .