acme.sh/dnsapi/dns_gd.sh

117 lines
2.4 KiB
Bash
Raw Normal View History

2016-07-29 10:07:16 +00:00
#!/usr/bin/env sh
#Godaddy domain api
#
#GD_Key="sdfsdfsdfljlbjkljlkjsdfoiwje"
#
#GD_Secret="asdfsdfsfsdfsdfdfsdf"
GD_Api="https://api.godaddy.com/v1"
######## Public functions #####################
#Usage: add _acme-challenge.www.domain.com "XKrxpRBosdIKFzxW_CT3KLZNf6q0HG9i01zxXp5CPBs"
2016-11-09 11:30:39 +00:00
dns_gd_add() {
2016-07-29 10:07:16 +00:00
fulldomain=$1
txtvalue=$2
2016-11-09 11:30:39 +00:00
if [ -z "$GD_Key" ] || [ -z "$GD_Secret" ]; then
2016-07-29 10:07:16 +00:00
_err "You don't specify godaddy api key and secret yet."
_err "Please create you key and try again."
return 1
fi
2016-11-09 11:30:39 +00:00
2016-07-29 10:07:16 +00:00
#save the api key and email to the account conf file.
_saveaccountconf GD_Key "$GD_Key"
_saveaccountconf GD_Secret "$GD_Secret"
2016-11-09 11:30:39 +00:00
2016-07-29 10:07:16 +00:00
_debug "First detect the root zone"
2016-11-09 11:30:39 +00:00
if ! _get_root $fulldomain; then
2016-07-29 10:07:16 +00:00
_err "invalid domain"
return 1
fi
_debug _domain_id "$_domain_id"
_debug _sub_domain "$_sub_domain"
_debug _domain "$_domain"
_info "Adding record"
2016-11-09 11:30:39 +00:00
if _gd_rest PUT "domains/$_domain/records/TXT/$_sub_domain" "[{\"data\":\"$txtvalue\"}]"; then
if [ "$response" = "{}" ]; then
2016-07-29 10:07:16 +00:00
_info "Added, sleeping 10 seconds"
sleep 10
#todo: check if the record takes effect
return 0
else
_err "Add txt record error."
_err "$response"
return 1
fi
fi
_err "Add txt record error."
2016-11-09 11:30:39 +00:00
}
2016-07-29 10:07:16 +00:00
#fulldomain
dns_gd_rm() {
fulldomain=$1
}
2016-07-29 10:07:16 +00:00
#################### 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
while [ '1' ]; do
2016-07-29 10:07:16 +00:00
h=$(printf $domain | cut -d . -f $i-100)
2016-11-09 11:30:39 +00:00
if [ -z "$h" ]; then
2016-07-29 10:07:16 +00:00
#not valid
2016-11-09 11:30:39 +00:00
return 1
2016-07-29 10:07:16 +00:00
fi
2016-11-09 11:30:39 +00:00
if ! _gd_rest GET "domains/$h"; then
2016-07-29 10:07:16 +00:00
return 1
fi
2016-11-09 11:30:39 +00:00
if printf "$response" | grep '"code":"NOT_FOUND"' >/dev/null; then
2016-07-29 10:07:16 +00:00
_debug "$h not found"
else
_sub_domain=$(printf $domain | cut -d . -f 1-$p)
_domain=$h
return 0
fi
p=$i
i=$(expr $i + 1)
done
return 1
}
_gd_rest() {
m=$1
ep="$2"
data="$3"
_debug $ep
2016-11-09 11:30:39 +00:00
2016-07-29 10:07:16 +00:00
_H1="Authorization: sso-key $GD_Key:$GD_Secret"
_H2="Content-Type: application/json"
2016-11-09 11:30:39 +00:00
if [ "$data" ]; then
2016-07-29 10:07:16 +00:00
_debug data "$data"
response="$(_post "$data" "$GD_Api/$ep" "" $m)"
else
response="$(_get "$GD_Api/$ep")"
fi
2016-11-09 11:30:39 +00:00
if [ "$?" != "0" ]; then
2016-07-29 10:07:16 +00:00
_err "error $ep"
return 1
fi
_debug2 response "$response"
return 0
}