2016-04-17 11:47:22 +00:00
#!/usr/bin/env sh
2016-02-07 10:26:12 +00:00
# Cloudxns.com 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"
2016-04-16 14:19:29 +00:00
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 = ""
2016-02-07 10:26:12 +00:00
_err "You don't specify cloudxns.com api key or secret yet."
_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
2016-11-11 15:30:14 +00:00
existing_records " $_domain " " $_sub_domain "
2016-02-07 10:26:12 +00:00
_debug count " $count "
2016-11-09 11:30:39 +00:00
if [ " $? " != "0" ] ; then
2016-02-07 10:26:12 +00:00
_err "Error get existing records."
return 1
fi
2016-11-09 11:30:39 +00:00
if [ " $count " = "0" ] ; then
2016-11-11 15:30:14 +00:00
add_record " $_domain " " $_sub_domain " " $txtvalue "
2016-02-07 10:26:12 +00:00
else
2016-11-11 15:30:14 +00:00
update_record " $_domain " " $_sub_domain " " $txtvalue "
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
return 0
fi
return 1
}
2016-10-25 15:08:02 +00:00
#fulldomain
dns_cx_rm( ) {
fulldomain = $1
}
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
count = 0
2016-09-30 14:13:27 +00:00
seg = $( printf "%s\n" " $response " | _egrep_o " {[^\{]*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-02-07 10:26:12 +00:00
count = 1
2016-11-11 16:50:44 +00:00
record_id = $( printf "%s\n" " $seg " | _egrep_o "\"record_id\":\"[^\"]*\"" | cut -d : -f 2 | tr -d \" )
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
}
#update the txt record
#Usage: root sub txtvalue
update_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 "Updating record"
2016-11-09 11:30:39 +00:00
if _rest PUT " record/ $record_id " " {\"domain_id\": $_domain_id , \"host\":\" $_sub_domain \", \"value\":\" $txtvalue \", \"type\":\"TXT\",\"ttl\":600, \"line_id\":1} " ; then
2016-02-07 10:26:12 +00:00
return 0
fi
2016-11-09 11:30:39 +00:00
2016-02-07 10:26:12 +00:00
return 1
}
#################### Private functions bellow ##################################
#_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
2016-11-09 11:30:39 +00:00
seg = $( printf "%s" " $response " | _egrep_o " \{[^\{]*\" $h \.\"[^\}]*\} " )
2016-02-07 10:26:12 +00:00
_debug seg " $seg "
2016-11-11 16:50:44 +00:00
_domain_id = $( printf "%s" " $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-11-11 15:30:14 +00:00
_debug " $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
2016-05-07 15:33:42 +00:00
_H1 = " API-KEY: $CX_Key "
_H2 = " API-REQUEST-DATE: $cdate "
_H3 = " API-HMAC: $hmac "
_H4 = "Content-Type: application/json"
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
2016-04-09 15:40:59 +00:00
_debug2 response " $response "
2016-11-11 15:30:14 +00:00
if ! _contains " $response " '"message":"success"' ; then
2016-02-07 10:26:12 +00:00
return 1
fi
return 0
}