lib/cac.sh: add _cac_post_api_v1

This commit is contained in:
tv 2015-05-20 20:18:33 +02:00
parent a3f87cec68
commit 31dd668d39
1 changed files with 11 additions and 0 deletions

View File

@ -19,6 +19,17 @@ _cac_get_api_v1() {
-G "https://panel.cloudatcost.com/api/v1/$1.php"
}
_cac_post_api_v1() {
_cac_exec curl -fsS \
$(shift
set -- "$@" login="$cac_login" key="$cac_key"
for arg; do
echo -d $(printf '%s' "$arg" | url_encode)
done
) \
-X POST "https://panel.cloudatcost.com/api/v1/$1.php"
}
cac_listservers() {
_cac_get_api_v1 listservers
}