acme.sh/dnsapi/dns_cx.sh

182 lines
3.9 KiB
Bash
Raw Normal View History

#!/usr/bin/env sh
2016-02-07 10:26:12 +00:00
# CloudXNS Domain api
2016-02-07 10:26:12 +00:00
#
#CX_Key="1234"
#
#CX_Secret="sADDsdasdgdsf"
CX_Api="https://www.cloudxns.net/api2"
#REST_API
######## Public functions #####################
#Usage: add _acme-challenge.www.domain.com "XKrxpRBosdIKFzxW_CT3KLZNf6q0HG9i01zxXp5CPBs"
dns_cx_add() {
2016-02-07 10:26:12 +00:00
fulldomain=$1
txtvalue=$2
2016-11-09 11:30:39 +00:00
if [ -z "$CX_Key" ] || [ -z "$CX_Secret" ]; then
2016-11-12 03:13:40 +00:00
CX_Key=""
CX_Secret=""
_err "You don't specify cloudxns.net api key or secret yet."
2016-02-07 10:26:12 +00:00
_err "Please create you key and try again."
return 1
fi
2016-11-09 11:30:39 +00:00
2016-11-11 15:30:14 +00:00
REST_API="$CX_Api"
2016-11-09 11:30:39 +00:00
2016-02-07 10:26:12 +00:00
#save the api key and email to the account conf file.
_saveaccountconf CX_Key "$CX_Key"
_saveaccountconf CX_Secret "$CX_Secret"
2016-11-09 11:30:39 +00:00
2016-02-07 10:26:12 +00:00
_debug "First detect the root zone"
2016-11-11 15:30:14 +00:00
if ! _get_root "$fulldomain"; then
2016-02-07 10:26:12 +00:00
_err "invalid domain"
return 1
fi
2016-11-09 11:30:39 +00:00
2018-02-13 12:08:05 +00:00
add_record "$_domain" "$_sub_domain" "$txtvalue"
2016-02-07 10:26:12 +00:00
}
2018-02-13 12:08:05 +00:00
#fulldomain txtvalue
dns_cx_rm() {
fulldomain=$1
2018-02-13 12:08:05 +00:00
txtvalue=$2
2016-12-03 15:32:50 +00:00
REST_API="$CX_Api"
if _get_root "$fulldomain"; then
record_id=""
2018-02-13 12:08:05 +00:00
existing_records "$_domain" "$_sub_domain" "$txtvalue"
if [ "$record_id" ]; then
2016-12-03 15:32:50 +00:00
_rest DELETE "record/$record_id/$_domain_id" "{}"
_info "Deleted record ${fulldomain}"
fi
fi
}
2016-02-07 10:26:12 +00:00
#usage: root sub
#return if the sub record already exists.
#echos the existing records count.
# '0' means doesn't exist
existing_records() {
_debug "Getting txt records"
root=$1
sub=$2
2016-11-09 11:30:39 +00:00
if ! _rest GET "record/$_domain_id?:domain_id?host_id=0&offset=0&row_num=100"; then
2016-02-07 10:26:12 +00:00
return 1
fi
2017-01-31 04:51:59 +00:00
seg=$(printf "%s\n" "$response" | _egrep_o '"record_id":[^{]*host":"'"$_sub_domain"'"[^}]*\}')
2016-02-07 10:26:12 +00:00
_debug seg "$seg"
2016-11-09 11:30:39 +00:00
if [ -z "$seg" ]; then
2016-02-07 10:26:12 +00:00
return 0
fi
2016-11-11 15:30:14 +00:00
if printf "%s" "$response" | grep '"type":"TXT"' >/dev/null; then
2016-12-04 06:45:26 +00:00
record_id=$(printf "%s\n" "$seg" | _egrep_o '"record_id":"[^"]*"' | cut -d : -f 2 | tr -d \" | _head_n 1)
2016-02-07 10:26:12 +00:00
_debug record_id "$record_id"
2016-11-09 11:30:39 +00:00
return 0
2016-02-07 10:26:12 +00:00
fi
2016-11-09 11:30:39 +00:00
2016-02-07 10:26:12 +00:00
}
#add the txt record.
#usage: root sub txtvalue
add_record() {
root=$1
sub=$2
txtvalue=$3
2016-11-11 15:30:14 +00:00
fulldomain="$sub.$root"
2016-11-09 11:30:39 +00:00
2016-02-07 10:26:12 +00:00
_info "Adding record"
2016-11-09 11:30:39 +00:00
2016-02-07 10:26:12 +00:00
if ! _rest POST "record" "{\"domain_id\": $_domain_id, \"host\":\"$_sub_domain\", \"value\":\"$txtvalue\", \"type\":\"TXT\",\"ttl\":600, \"line_id\":1}"; then
return 1
fi
2016-11-09 11:30:39 +00:00
2016-02-07 10:26:12 +00:00
return 0
}
2016-12-14 20:32:24 +00:00
#################### Private functions below ##################################
2016-02-07 10:26:12 +00:00
#_acme-challenge.www.domain.com
#returns
# _sub_domain=_acme-challenge.www
# _domain=domain.com
# _domain_id=sdjkglgdfewsdfg
_get_root() {
domain=$1
i=2
p=1
2016-11-09 11:30:39 +00:00
if ! _rest GET "domain"; then
2016-02-07 10:26:12 +00:00
return 1
fi
2016-11-09 11:30:39 +00:00
2016-11-11 15:30:14 +00:00
while true; do
h=$(printf "%s" "$domain" | cut -d . -f $i-100)
2016-02-07 10:26:12 +00:00
_debug h "$h"
2016-11-09 11:30:39 +00:00
if [ -z "$h" ]; then
2016-02-07 10:26:12 +00:00
#not valid
2016-11-09 11:30:39 +00:00
return 1
2016-02-07 10:26:12 +00:00
fi
2016-11-11 15:30:14 +00:00
if _contains "$response" "$h."; then
2017-01-31 04:38:37 +00:00
seg=$(printf "%s\n" "$response" | _egrep_o '"id":[^{]*"'"$h"'."[^}]*}')
2016-02-07 10:26:12 +00:00
_debug seg "$seg"
2016-12-04 13:33:36 +00:00
_domain_id=$(printf "%s\n" "$seg" | _egrep_o "\"id\":\"[^\"]*\"" | cut -d : -f 2 | tr -d \")
2016-02-07 10:26:12 +00:00
_debug _domain_id "$_domain_id"
2016-11-09 11:30:39 +00:00
if [ "$_domain_id" ]; then
2016-11-11 15:30:14 +00:00
_sub_domain=$(printf "%s" "$domain" | cut -d . -f 1-$p)
_debug _sub_domain "$_sub_domain"
_domain="$h"
_debug _domain "$_domain"
2016-02-07 10:26:12 +00:00
return 0
fi
return 1
fi
2016-11-11 15:30:14 +00:00
p="$i"
i=$(_math "$i" + 1)
2016-02-07 10:26:12 +00:00
done
return 1
}
#Usage: method URI data
_rest() {
m=$1
ep="$2"
2016-12-04 06:45:26 +00:00
_debug ep "$ep"
2016-02-07 10:26:12 +00:00
url="$REST_API/$ep"
_debug url "$url"
2016-11-09 11:30:39 +00:00
cdate=$(date -u "+%Y-%m-%d %H:%M:%S UTC")
2016-02-07 10:26:12 +00:00
_debug cdate "$cdate"
2016-11-09 11:30:39 +00:00
2016-02-07 10:26:12 +00:00
data="$3"
_debug data "$data"
2016-11-09 11:30:39 +00:00
2016-02-07 10:26:12 +00:00
sec="$CX_Key$url$data$cdate$CX_Secret"
_debug sec "$sec"
2016-11-11 15:30:14 +00:00
hmac=$(printf "%s" "$sec" | _digest md5 hex)
2016-02-07 10:26:12 +00:00
_debug hmac "$hmac"
2016-11-09 11:30:39 +00:00
export _H1="API-KEY: $CX_Key"
export _H2="API-REQUEST-DATE: $cdate"
export _H3="API-HMAC: $hmac"
export _H4="Content-Type: application/json"
2016-05-07 15:33:42 +00:00
2016-11-09 11:30:39 +00:00
if [ "$data" ]; then
2016-11-11 16:09:45 +00:00
response="$(_post "$data" "$url" "" "$m")"
2016-02-07 10:26:12 +00:00
else
2016-05-07 15:33:42 +00:00
response="$(_get "$url")"
2016-02-07 10:26:12 +00:00
fi
2016-11-09 11:30:39 +00:00
if [ "$?" != "0" ]; then
2016-02-07 10:26:12 +00:00
_err "error $ep"
return 1
fi
_debug2 response "$response"
_contains "$response" '"code":1'
2016-02-07 10:26:12 +00:00
}