123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- #!/usr/bin/env sh
- # CloudXNS Domain api
- #
- #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() {
- fulldomain=$1
- txtvalue=$2
- CX_Key="${CX_Key:-$(_readaccountconf_mutable CX_Key)}"
- CX_Secret="${CX_Secret:-$(_readaccountconf_mutable CX_Secret)}"
- if [ -z "$CX_Key" ] || [ -z "$CX_Secret" ]; then
- CX_Key=""
- CX_Secret=""
- _err "You don't specify cloudxns.net api key or secret yet."
- _err "Please create you key and try again."
- return 1
- fi
- REST_API="$CX_Api"
- #save the api key and email to the account conf file.
- _saveaccountconf_mutable CX_Key "$CX_Key"
- _saveaccountconf_mutable CX_Secret "$CX_Secret"
- _debug "First detect the root zone"
- if ! _get_root "$fulldomain"; then
- _err "invalid domain"
- return 1
- fi
- add_record "$_domain" "$_sub_domain" "$txtvalue"
- }
- #fulldomain txtvalue
- dns_cx_rm() {
- fulldomain=$1
- txtvalue=$2
- CX_Key="${CX_Key:-$(_readaccountconf_mutable CX_Key)}"
- CX_Secret="${CX_Secret:-$(_readaccountconf_mutable CX_Secret)}"
- REST_API="$CX_Api"
- if _get_root "$fulldomain"; then
- record_id=""
- existing_records "$_domain" "$_sub_domain" "$txtvalue"
- if [ "$record_id" ]; then
- _rest DELETE "record/$record_id/$_domain_id" "{}"
- _info "Deleted record ${fulldomain}"
- fi
- fi
- }
- #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
- if ! _rest GET "record/$_domain_id?:domain_id?host_id=0&offset=0&row_num=100"; then
- return 1
- fi
- seg=$(printf "%s\n" "$response" | _egrep_o '"record_id":[^{]*host":"'"$_sub_domain"'"[^}]*\}')
- _debug seg "$seg"
- if [ -z "$seg" ]; then
- return 0
- fi
- if printf "%s" "$response" | grep '"type":"TXT"' >/dev/null; then
- record_id=$(printf "%s\n" "$seg" | _egrep_o '"record_id":"[^"]*"' | cut -d : -f 2 | tr -d \" | _head_n 1)
- _debug record_id "$record_id"
- return 0
- fi
- }
- #add the txt record.
- #usage: root sub txtvalue
- add_record() {
- root=$1
- sub=$2
- txtvalue=$3
- fulldomain="$sub.$root"
- _info "Adding record"
- if ! _rest POST "record" "{\"domain_id\": $_domain_id, \"host\":\"$_sub_domain\", \"value\":\"$txtvalue\", \"type\":\"TXT\",\"ttl\":600, \"line_id\":1}"; then
- return 1
- fi
- return 0
- }
- #################### Private functions below ##################################
- #_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
- if ! _rest GET "domain"; then
- return 1
- fi
- while true; do
- h=$(printf "%s" "$domain" | cut -d . -f $i-100)
- _debug h "$h"
- if [ -z "$h" ]; then
- #not valid
- return 1
- fi
- if _contains "$response" "$h."; then
- seg=$(printf "%s\n" "$response" | _egrep_o '"id":[^{]*"'"$h"'."[^}]*}')
- _debug seg "$seg"
- _domain_id=$(printf "%s\n" "$seg" | _egrep_o "\"id\":\"[^\"]*\"" | cut -d : -f 2 | tr -d \")
- _debug _domain_id "$_domain_id"
- if [ "$_domain_id" ]; then
- _sub_domain=$(printf "%s" "$domain" | cut -d . -f 1-$p)
- _debug _sub_domain "$_sub_domain"
- _domain="$h"
- _debug _domain "$_domain"
- return 0
- fi
- return 1
- fi
- p="$i"
- i=$(_math "$i" + 1)
- done
- return 1
- }
- #Usage: method URI data
- _rest() {
- m=$1
- ep="$2"
- _debug ep "$ep"
- url="$REST_API/$ep"
- _debug url "$url"
- cdate=$(date -u "+%Y-%m-%d %H:%M:%S UTC")
- _debug cdate "$cdate"
- data="$3"
- _debug data "$data"
- sec="$CX_Key$url$data$cdate$CX_Secret"
- _debug sec "$sec"
- hmac=$(printf "%s" "$sec" | _digest md5 hex)
- _debug hmac "$hmac"
- export _H1="API-KEY: $CX_Key"
- export _H2="API-REQUEST-DATE: $cdate"
- export _H3="API-HMAC: $hmac"
- export _H4="Content-Type: application/json"
- if [ "$data" ]; then
- response="$(_post "$data" "$url" "" "$m")"
- else
- response="$(_get "$url")"
- fi
- if [ "$?" != "0" ]; then
- _err "error $ep"
- return 1
- fi
- _debug2 response "$response"
- _contains "$response" '"code":1'
- }
|