|
@ -13,9 +13,9 @@ dns_netcup_add() { |
|
|
_err "No Credentials given" |
|
|
_err "No Credentials given" |
|
|
return 1 |
|
|
return 1 |
|
|
fi |
|
|
fi |
|
|
_saveaccountconf_mutable NC_Apikey "$NC_Apikey" |
|
|
|
|
|
_saveaccountconf_mutable NC_Apipw "$NC_Apipw" |
|
|
|
|
|
_saveaccountconf_mutable NC_CID "$NC_CID" |
|
|
|
|
|
|
|
|
_saveaccountconf_mutable NC_Apikey "$NC_Apikey" |
|
|
|
|
|
_saveaccountconf_mutable NC_Apipw "$NC_Apipw" |
|
|
|
|
|
_saveaccountconf_mutable NC_CID "$NC_CID" |
|
|
fulldomain=$1 |
|
|
fulldomain=$1 |
|
|
txtvalue=$2 |
|
|
txtvalue=$2 |
|
|
domain="" |
|
|
domain="" |
|
@ -23,8 +23,8 @@ dns_netcup_add() { |
|
|
exit=$(_math "$exit" + 1) |
|
|
exit=$(_math "$exit" + 1) |
|
|
i=$exit |
|
|
i=$exit |
|
|
|
|
|
|
|
|
while [ "$exit" -gt 0 ] |
|
|
|
|
|
do |
|
|
|
|
|
|
|
|
while |
|
|
|
|
|
[ "$exit" -gt 0 ]; do |
|
|
tmp=$(echo "$fulldomain" | cut -d'.' -f"$exit") |
|
|
tmp=$(echo "$fulldomain" | cut -d'.' -f"$exit") |
|
|
if [ "$(_math "$i" - "$exit")" -eq 0 ]; then |
|
|
if [ "$(_math "$i" - "$exit")" -eq 0 ]; then |
|
|
domain="$tmp" |
|
|
domain="$tmp" |
|
@ -34,12 +34,12 @@ dns_netcup_add() { |
|
|
if [ "$(_math "$i" - "$exit")" -ge 1 ]; then |
|
|
if [ "$(_math "$i" - "$exit")" -ge 1 ]; then |
|
|
msg=$(_post "{\"action\": \"updateDnsRecords\", \"param\": {\"apikey\": \"$NC_Apikey\", \"apisessionid\": \"$sid\", \"customernumber\": \"$NC_CID\",\"clientrequestid\": \"$client\" , \"domainname\": \"$domain\", \"dnsrecordset\": { \"dnsrecords\": [ {\"id\": \"\", \"hostname\": \"$fulldomain.\", \"type\": \"TXT\", \"priority\": \"\", \"destination\": \"$txtvalue\", \"deleterecord\": \"false\", \"state\": \"yes\"} ]}}}" "$end" "" "POST") |
|
|
msg=$(_post "{\"action\": \"updateDnsRecords\", \"param\": {\"apikey\": \"$NC_Apikey\", \"apisessionid\": \"$sid\", \"customernumber\": \"$NC_CID\",\"clientrequestid\": \"$client\" , \"domainname\": \"$domain\", \"dnsrecordset\": { \"dnsrecords\": [ {\"id\": \"\", \"hostname\": \"$fulldomain.\", \"type\": \"TXT\", \"priority\": \"\", \"destination\": \"$txtvalue\", \"deleterecord\": \"false\", \"state\": \"yes\"} ]}}}" "$end" "" "POST") |
|
|
_debug "$msg" |
|
|
_debug "$msg" |
|
|
if [ "$(_getfield "$msg" "5" | sed 's/"statuscode"://g')" != 5028 ]; then |
|
|
|
|
|
|
|
|
if [ "$(_getfield "$msg" "5" | sed 's/"statuscode"://g')" != 5028 ]; then |
|
|
if [ "$(_getfield "$msg" "4" | sed s/\"status\":\"//g | sed s/\"//g)" != "success" ]; then |
|
|
if [ "$(_getfield "$msg" "4" | sed s/\"status\":\"//g | sed s/\"//g)" != "success" ]; then |
|
|
_err "$msg" |
|
|
_err "$msg" |
|
|
return 1 |
|
|
return 1 |
|
|
else |
|
|
else |
|
|
break; |
|
|
|
|
|
|
|
|
break |
|
|
fi |
|
|
fi |
|
|
fi |
|
|
fi |
|
|
fi |
|
|
fi |
|
@ -59,8 +59,8 @@ dns_netcup_rm() { |
|
|
i=$exit |
|
|
i=$exit |
|
|
rec="" |
|
|
rec="" |
|
|
|
|
|
|
|
|
while [ "$exit" -gt 0 ] |
|
|
|
|
|
do |
|
|
|
|
|
|
|
|
while |
|
|
|
|
|
[ "$exit" -gt 0 ]; do |
|
|
tmp=$(echo "$fulldomain" | cut -d'.' -f"$exit") |
|
|
tmp=$(echo "$fulldomain" | cut -d'.' -f"$exit") |
|
|
if [ "$(_math "$i" - "$exit")" -eq 0 ]; then |
|
|
if [ "$(_math "$i" - "$exit")" -eq 0 ]; then |
|
|
domain="$tmp" |
|
|
domain="$tmp" |
|
@ -71,12 +71,12 @@ dns_netcup_rm() { |
|
|
msg=$(_post "{\"action\": \"infoDnsRecords\", \"param\": {\"apikey\": \"$NC_Apikey\", \"apisessionid\": \"$sid\", \"customernumber\": \"$NC_CID\", \"domainname\": \"$domain\"}}" "$end" "" "POST") |
|
|
msg=$(_post "{\"action\": \"infoDnsRecords\", \"param\": {\"apikey\": \"$NC_Apikey\", \"apisessionid\": \"$sid\", \"customernumber\": \"$NC_CID\", \"domainname\": \"$domain\"}}" "$end" "" "POST") |
|
|
rec=$(echo "$msg" | sed 's/\[//g' | sed 's/\]//g' | sed 's/{\"serverrequestid\".*\"dnsrecords\"://g' | sed 's/},{/};{/g' | sed 's/{//g' | sed 's/}//g') |
|
|
rec=$(echo "$msg" | sed 's/\[//g' | sed 's/\]//g' | sed 's/{\"serverrequestid\".*\"dnsrecords\"://g' | sed 's/},{/};{/g' | sed 's/{//g' | sed 's/}//g') |
|
|
_debug "$msg" |
|
|
_debug "$msg" |
|
|
if [ "$(_getfield "$msg" "5" | sed 's/"statuscode"://g')" != 5028 ]; then |
|
|
|
|
|
|
|
|
if [ "$(_getfield "$msg" "5" | sed 's/"statuscode"://g')" != 5028 ]; then |
|
|
if [ "$(_getfield "$msg" "4" | sed s/\"status\":\"//g | sed s/\"//g)" != "success" ]; then |
|
|
if [ "$(_getfield "$msg" "4" | sed s/\"status\":\"//g | sed s/\"//g)" != "success" ]; then |
|
|
_err "$msg" |
|
|
_err "$msg" |
|
|
return 1 |
|
|
return 1 |
|
|
else |
|
|
else |
|
|
break; |
|
|
|
|
|
|
|
|
break |
|
|
fi |
|
|
fi |
|
|
fi |
|
|
fi |
|
|
fi |
|
|
fi |
|
@ -87,8 +87,8 @@ dns_netcup_rm() { |
|
|
idv=0001 |
|
|
idv=0001 |
|
|
ids=0000000000 |
|
|
ids=0000000000 |
|
|
i=1 |
|
|
i=1 |
|
|
while [ "$i" -ne 0 ]; |
|
|
|
|
|
do |
|
|
|
|
|
|
|
|
while |
|
|
|
|
|
[ "$i" -ne 0 ]; do |
|
|
specrec=$(_getfield "$rec" "$i" ";") |
|
|
specrec=$(_getfield "$rec" "$i" ";") |
|
|
idv="$ida" |
|
|
idv="$ida" |
|
|
ida=$(_getfield "$specrec" "1" "," | sed 's/\"id\":\"//g' | sed 's/\"//g') |
|
|
ida=$(_getfield "$specrec" "1" "," | sed 's/\"id\":\"//g' | sed 's/\"//g') |
|
|