2019-12-11 16:13:11 +00:00
#!/usr/bin/env sh
2019-12-11 16:15:35 +00:00
# Author: Wout Decre <wout@canodus.be>
2019-12-11 16:13:11 +00:00
2020-02-08 11:27:19 +00:00
CONSTELLIX_Api = "https://api.dns.constellix.com/v1"
#CONSTELLIX_Key="XXX"
#CONSTELLIX_Secret="XXX"
2019-12-11 16:13:11 +00:00
######## Public functions #####################
2020-02-08 11:27:19 +00:00
# Usage: add _acme-challenge.www.domain.com "XKrxpRBosdIKFzxW_CT3KLZNf6q0HG9i01zxXp5CPBs"
# Used to add txt record
2019-12-11 16:13:11 +00:00
dns_constellix_add( ) {
fulldomain = $1
txtvalue = $2
2020-02-08 11:27:19 +00:00
CONSTELLIX_Key = " ${ CONSTELLIX_Key :- $( _readaccountconf_mutable CONSTELLIX_Key) } "
CONSTELLIX_Secret = " ${ CONSTELLIX_Secret :- $( _readaccountconf_mutable CONSTELLIX_Secret) } "
2019-12-11 16:13:11 +00:00
2020-02-08 11:27:19 +00:00
if [ -z " $CONSTELLIX_Key " ] || [ -z " $CONSTELLIX_Secret " ] ; then
2019-12-11 16:13:11 +00:00
_err "You did not specify the Contellix API key and secret yet."
return 1
fi
2020-02-08 11:27:19 +00:00
_saveaccountconf_mutable CONSTELLIX_Key " $CONSTELLIX_Key "
_saveaccountconf_mutable CONSTELLIX_Secret " $CONSTELLIX_Secret "
2019-12-11 16:13:11 +00:00
if ! _get_root " $fulldomain " ; then
_err "Invalid domain"
return 1
fi
2021-03-10 22:36:34 +00:00
# The TXT record might already exist when working with wildcard certificates. In that case, update the record by adding the new value.
2021-03-10 22:34:21 +00:00
_debug "Search TXT record"
2021-03-10 15:18:07 +00:00
if _constellix_rest GET " domains/ ${ _domain_id } /records/TXT/search?exact= ${ _sub_domain } " ; then
if printf -- "%s" " $response " | grep "{\"errors\":\[\"Requested record was not found\"\]}" >/dev/null; then
_info "Adding TXT record"
if _constellix_rest POST " domains/ ${ _domain_id } /records " " [{\"type\":\"txt\",\"add\":true,\"set\":{\"name\":\" ${ _sub_domain } \",\"ttl\":60,\"roundRobin\":[{\"value\":\" ${ txtvalue } \"}]}}] " ; then
if printf -- "%s" " $response " | grep "{\"success\":\"1 record(s) added, 0 record(s) updated, 0 record(s) deleted\"}" >/dev/null; then
_info "Added"
2021-03-10 15:32:09 +00:00
return 0
2021-03-10 15:18:07 +00:00
else
_err "Error adding TXT record"
fi
fi
2019-12-11 16:13:11 +00:00
else
2021-03-23 20:20:27 +00:00
_record_id = $( printf "%s\n" " $response " | _egrep_o "\"id\":[0-9]*" | cut -d ':' -f 2)
2021-03-10 15:18:07 +00:00
if _constellix_rest GET " domains/ ${ _domain_id } /records/TXT/ ${ _record_id } " ; then
2021-03-24 12:56:14 +00:00
_new_rr_values = $( printf "%s\n" " $response " | _egrep_o '"roundRobin":\[[^]]*\]' | sed " s/\] $/,{\"value\":\" ${ txtvalue } \"}]/ " )
2021-03-10 15:32:09 +00:00
_debug _new_rr_values " $_new_rr_values "
2021-03-10 15:18:07 +00:00
_info "Updating TXT record"
if _constellix_rest PUT " domains/ ${ _domain_id } /records/TXT/ ${ _record_id } " " {\"name\":\" ${ _sub_domain } \",\"ttl\":60, ${ _new_rr_values } } " ; then
if printf -- "%s" " $response " | grep "{\"success\":\"Record.*updated successfully\"}" >/dev/null; then
_info "Updated"
return 0
2021-03-24 08:01:54 +00:00
elif printf -- "%s" " $response " | grep "{\"errors\":\[\"Contents are identical\"\]}" >/dev/null; then
_info "Already exists, no need to update"
return 0
2021-03-10 15:18:07 +00:00
else
_err "Error updating TXT record"
fi
fi
fi
2019-12-11 16:13:11 +00:00
fi
fi
2021-03-10 15:18:07 +00:00
return 1
2019-12-11 16:13:11 +00:00
}
2020-02-08 11:27:19 +00:00
# Usage: fulldomain txtvalue
# Used to remove the txt record after validation
2019-12-11 16:13:11 +00:00
dns_constellix_rm( ) {
fulldomain = $1
txtvalue = $2
2020-02-08 11:27:19 +00:00
CONSTELLIX_Key = " ${ CONSTELLIX_Key :- $( _readaccountconf_mutable CONSTELLIX_Key) } "
CONSTELLIX_Secret = " ${ CONSTELLIX_Secret :- $( _readaccountconf_mutable CONSTELLIX_Secret) } "
2019-12-11 16:13:11 +00:00
2020-02-08 11:27:19 +00:00
if [ -z " $CONSTELLIX_Key " ] || [ -z " $CONSTELLIX_Secret " ] ; then
2019-12-11 16:13:11 +00:00
_err "You did not specify the Contellix API key and secret yet."
return 1
fi
if ! _get_root " $fulldomain " ; then
_err "Invalid domain"
return 1
fi
2021-03-10 22:34:21 +00:00
# The TXT record might have been removed already when working with some wildcard certificates.
_debug "Search TXT record"
if _constellix_rest GET " domains/ ${ _domain_id } /records/TXT/search?exact= ${ _sub_domain } " ; then
if printf -- "%s" " $response " | grep "{\"errors\":\[\"Requested record was not found\"\]}" >/dev/null; then
2019-12-11 16:13:11 +00:00
_info "Removed"
return 0
else
2021-03-10 22:34:21 +00:00
_info "Removing TXT record"
if _constellix_rest POST " domains/ ${ _domain_id } /records " " [{\"type\":\"txt\",\"delete\":true,\"filter\":{\"field\":\"name\",\"op\":\"eq\",\"value\":\" ${ _sub_domain } \"}}] " ; then
if printf -- "%s" " $response " | grep "{\"success\":\"0 record(s) added, 0 record(s) updated, 1 record(s) deleted\"}" >/dev/null; then
_info "Removed"
return 0
else
_err "Error removing TXT record"
fi
fi
2019-12-11 16:13:11 +00:00
fi
fi
2021-03-10 15:18:07 +00:00
return 1
2019-12-11 16:13:11 +00:00
}
#################### Private functions below ##################################
_get_root( ) {
domain = $1
i = 2
p = 1
_debug "Detecting root zone"
while true; do
h = $( printf "%s" " $domain " | cut -d . -f $i -100)
if [ -z " $h " ] ; then
return 1
fi
2020-04-09 17:15:32 +00:00
if ! _constellix_rest GET " domains/search?exact= $h " ; then
2019-12-11 16:13:11 +00:00
return 1
fi
if _contains " $response " " \"name\":\" $h \" " ; then
2021-03-23 20:20:27 +00:00
_domain_id = $( printf "%s\n" " $response " | _egrep_o "\"id\":[0-9]*" | cut -d ':' -f 2)
2019-12-11 16:13:11 +00:00
if [ " $_domain_id " ] ; then
_sub_domain = $( printf "%s" " $domain " | cut -d '.' -f 1-$p )
_domain = " $h "
_debug _domain_id " $_domain_id "
_debug _sub_domain " $_sub_domain "
_debug _domain " $_domain "
return 0
fi
return 1
fi
p = $i
i = $( _math " $i " + 1)
done
return 1
}
_constellix_rest( ) {
m = $1
ep = " $2 "
data = " $3 "
_debug " $ep "
rdate = $( date +"%s" ) "000"
2020-02-08 11:27:19 +00:00
hmac = $( printf "%s" " $rdate " | _hmac sha1 " $( printf "%s" " $CONSTELLIX_Secret " | _hex_dump | tr -d ' ' ) " | _base64)
2019-12-11 16:13:11 +00:00
2020-02-08 11:27:19 +00:00
export _H1 = " x-cnsdns-apiKey: $CONSTELLIX_Key "
2019-12-11 16:13:11 +00:00
export _H2 = " x-cnsdns-requestDate: $rdate "
export _H3 = " x-cnsdns-hmac: $hmac "
export _H4 = "Accept: application/json"
export _H5 = "Content-Type: application/json"
if [ " $m " != "GET" ] ; then
_debug data " $data "
2020-02-08 11:27:19 +00:00
response = " $( _post " $data " " $CONSTELLIX_Api / $ep " "" " $m " ) "
2019-12-11 16:13:11 +00:00
else
2020-02-08 11:27:19 +00:00
response = " $( _get " $CONSTELLIX_Api / $ep " ) "
2019-12-11 16:13:11 +00:00
fi
if [ " $? " != "0" ] ; then
_err " Error $ep "
return 1
fi
_debug response " $response "
return 0
}