Added http.net DNS via API

This commit is contained in:
Roy Kaldung 2018-07-25 08:14:24 +02:00
parent c38ef9023b
commit 1570c15aa3
2 changed files with 122 additions and 0 deletions

View File

@ -321,6 +321,7 @@ You don't have to do anything manually!
1. acme-dns (https://github.com/joohoi/acme-dns)
1. TELE3 (https://www.tele3.cz)
1. EUSERV.EU (https://www.euserv.eu)
1. http.net DNS API (https://www.http.net)
And:

121
dnsapi/dns_http_net.sh Executable file
View File

@ -0,0 +1,121 @@
#!/bin/bash
#Author: Roy Kaldung
#Created 06/4/2018
#Utilize http.net API to finish dns-01 verifications.
# HTTP_NET_AUTHTOKEN=yourtoken
HTTP_NET_API="https://partner.http.net/api/dns/v1/json"
dns_http_net_add() {
fulldomain=$1
txtvalue=$2
HTTP_NET_AUTHTOKEN="${HTTP_NET_AUTHTOKEN:-$(_readaccountconf_mutable HTTP_NET_AUTHTOKEN)}"
if [ -z "$HTTP_NET_AUTHTOKEN" ]; then
HTTP_NET_AUTHTOKEN=""
_err "You don't specify http.net API token yet."
_err "Please create you token and try again."
return 1
fi
#save the api key and email to the account conf file.
_saveaccountconf_mutable HTTP_NET_AUTHTOKEN "$HTTP_NET_AUTHTOKEN"
_get_root $fulldomain
payload=$(printf '{
"authToken": "%s",
"zoneConfig": {
"name": "%s"
},
"recordsToAdd": [
{
"name": "%s",
"type": "TXT",
"content": "%s",
"ttl": 300
}
]
}' "$HTTP_NET_AUTHTOKEN" "$_domain" "$fulldomain" "$txtvalue")
_post "$payload" "${HTTP_NET_API}/zoneUpdate" "" "POST" "text/json"
}
dns_http_net_rm() {
fulldomain=$1
txtvalue=$2
_get_root $fulldomain
payload=$(printf '{
"authToken": "%s",
"zoneConfig": {
"name": "%s"
},
"recordsToDelete": [
{
"name": "%s",
"type": "TXT",
"content": "\\"%s\\""
}
]
}' "$HTTP_NET_AUTHTOKEN" "$_domain" "$fulldomain" "$txtvalue")
_post "$payload" "${HTTP_NET_API}/zoneUpdate" "" "POST" "text/json"
}
#_acme-challenge.www.domain.com
#returns
# _sub_domain=_acme-challenge.www
# _domain=domain.com
_get_root() {
domain=$1
i=2
p=1
while true; do
h=$(printf "%s" "$domain" | cut -d . -f $i-100)
if [ -z "$h" ]; then
#not valid
return 1
fi
_debug "Detecting if $h is the dns zone"
if _check_http_net_zone $h; then
_sub_domain=$(printf "%s" "$domain" | cut -d . -f 1-$p)
_domain="$h"
return 0
fi
p=$i
i=$(_math "$i" + 1)
done
return 1
}
_check_http_net_zone() {
domain2check=$1
_debug "Checking for zoneConfig of $domain2check"
payload=$(printf '{
"authToken": "%s",
"filter": {
"field": "ZoneNameUnicode",
"value": "%s"
}
}' "$HTTP_NET_AUTHTOKEN" "$domain2check")
_post "$payload" "${HTTP_NET_API}/zoneConfigsFind" "" "POST" "text/json"
if _contains "$response" '"totalEntries": 1,' > /dev/null; then
_debug "Detect $domain2check as a valid DNS zone"
return 0
fi
return 1
}