2017-03-14 11:24:09 +00:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
|
2017-03-15 15:16:54 +00:00
|
|
|
# Author: Boyan Peychev <boyan at cloudns dot net>
|
|
|
|
# Repository: https://github.com/ClouDNS/acme.sh/
|
|
|
|
|
2017-03-14 11:24:09 +00:00
|
|
|
#CLOUDNS_AUTH_ID=XXXXX
|
|
|
|
#CLOUDNS_AUTH_PASSWORD="YYYYYYYYY"
|
|
|
|
CLOUDNS_API="https://api.cloudns.net"
|
|
|
|
|
|
|
|
######## Public functions #####################
|
|
|
|
|
|
|
|
#Usage: dns_cloudns_add _acme-challenge.www.domain.com "XKrxpRBosdIKFzxW_CT3KLZNf6q0HG9i01zxXp5CPBs"
|
2017-03-14 12:25:50 +00:00
|
|
|
dns_cloudns_add() {
|
2017-03-14 11:24:09 +00:00
|
|
|
_info "Using cloudns"
|
|
|
|
|
|
|
|
if ! _dns_cloudns_init_check; then
|
2017-03-14 12:20:58 +00:00
|
|
|
return 1
|
2017-03-14 11:24:09 +00:00
|
|
|
fi
|
|
|
|
|
2017-03-14 12:38:02 +00:00
|
|
|
zone="$(_dns_cloudns_get_zone_name "$1")"
|
2017-03-14 11:24:09 +00:00
|
|
|
if [ -z "$zone" ]; then
|
2017-03-14 12:20:58 +00:00
|
|
|
_err "Missing DNS zone at ClouDNS. Please log into your control panel and create the required DNS zone for the initial setup."
|
|
|
|
return 1
|
2017-03-14 11:24:09 +00:00
|
|
|
fi
|
|
|
|
|
2017-03-14 12:25:50 +00:00
|
|
|
host="$(echo "$1" | sed "s/\.$zone\$//")"
|
|
|
|
record=$2
|
2017-03-14 11:24:09 +00:00
|
|
|
record_id=$(_dns_cloudns_get_record_id "$zone" "$host")
|
|
|
|
|
|
|
|
_debug zone "$zone"
|
|
|
|
_debug host "$host"
|
|
|
|
_debug record "$record"
|
|
|
|
_debug record_id "$record_id"
|
2017-03-14 13:12:02 +00:00
|
|
|
|
2017-03-14 11:24:09 +00:00
|
|
|
if [ -z "$record_id" ]; then
|
|
|
|
_info "Adding the TXT record for $1"
|
|
|
|
_dns_cloudns_http_api_call "dns/add-record.json" "domain-name=$zone&record-type=TXT&host=$host&record=$record&ttl=60"
|
|
|
|
if ! _contains "$response" "\"status\":\"Success\""; then
|
|
|
|
_err "Record cannot be added."
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
_info "Added."
|
|
|
|
else
|
|
|
|
_info "Updating the TXT record for $1"
|
|
|
|
_dns_cloudns_http_api_call "dns/mod-record.json" "domain-name=$zone&record-id=$record_id&record-type=TXT&host=$host&record=$record&ttl=60"
|
|
|
|
if ! _contains "$response" "\"status\":\"Success\""; then
|
|
|
|
_err "The TXT record for $1 cannot be updated."
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
_info "Updated."
|
|
|
|
fi
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
#Usage: dns_cloudns_rm _acme-challenge.www.domain.com "XKrxpRBosdIKFzxW_CT3KLZNf6q0HG9i01zxXp5CPBs"
|
2017-03-14 12:25:50 +00:00
|
|
|
dns_cloudns_rm() {
|
2017-03-14 11:24:09 +00:00
|
|
|
_info "Using cloudns"
|
|
|
|
|
|
|
|
if ! _dns_cloudns_init_check; then
|
2017-03-14 12:25:50 +00:00
|
|
|
return 1
|
2017-03-14 11:24:09 +00:00
|
|
|
fi
|
|
|
|
|
2017-03-14 12:25:50 +00:00
|
|
|
if [ -z "$zone" ]; then
|
2017-03-14 12:38:02 +00:00
|
|
|
zone="$(_dns_cloudns_get_zone_name "$1")"
|
2017-03-14 11:24:09 +00:00
|
|
|
if [ -z "$zone" ]; then
|
|
|
|
_err "Missing DNS zone at ClouDNS. Please log into your control panel and create the required DNS zone for the initial setup."
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2017-03-14 12:25:50 +00:00
|
|
|
host="$(echo "$1" | sed "s/\.$zone\$//")"
|
|
|
|
record=$2
|
2017-03-14 11:24:09 +00:00
|
|
|
record_id=$(_dns_cloudns_get_record_id "$zone" "$host")
|
|
|
|
|
|
|
|
_debug zone "$zone"
|
|
|
|
_debug host "$host"
|
|
|
|
_debug record "$record"
|
|
|
|
_debug record_id "$record_id"
|
|
|
|
|
|
|
|
if [ ! -z "$record_id" ]; then
|
|
|
|
_info "Deleting the TXT record for $1"
|
2017-03-15 13:49:14 +00:00
|
|
|
_dns_cloudns_http_api_call "dns/delete-record.json" "domain-name=$zone&record-id=$record_id"
|
2017-03-14 11:24:09 +00:00
|
|
|
if ! _contains "$response" "\"status\":\"Success\""; then
|
|
|
|
_err "The TXT record for $1 cannot be deleted."
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
_info "Deleted."
|
|
|
|
fi
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
#################### Private functions below ##################################
|
2017-03-14 12:25:50 +00:00
|
|
|
_dns_cloudns_init_check() {
|
|
|
|
if [ ! -z "$CLOUDNS_INIT_CHECK_COMPLETED" ]; then
|
2017-03-14 11:24:09 +00:00
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -z "$CLOUDNS_AUTH_ID" ]; then
|
|
|
|
_err "CLOUDNS_AUTH_ID is not configured"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -z "$CLOUDNS_AUTH_PASSWORD" ]; then
|
|
|
|
_err "CLOUDNS_AUTH_PASSWORD is not configured"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
2017-03-15 13:49:14 +00:00
|
|
|
_dns_cloudns_http_api_call "dns/login.json" ""
|
|
|
|
|
|
|
|
if ! _contains "$response" "\"status\":\"Success\""; then
|
|
|
|
_err "Invalid CLOUDNS_AUTH_ID or CLOUDNS_AUTH_PASSWORD. Please check your login credentials."
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
2017-03-14 11:24:09 +00:00
|
|
|
CLOUDNS_INIT_CHECK_COMPLETED=1
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2017-03-14 12:25:50 +00:00
|
|
|
_dns_cloudns_get_zone_name() {
|
2017-03-14 11:24:09 +00:00
|
|
|
i=2
|
|
|
|
while true; do
|
|
|
|
zoneForCheck=$(printf "%s" "$1" | cut -d . -f $i-100)
|
|
|
|
|
|
|
|
if [ -z "$zoneForCheck" ]; then
|
2017-03-14 12:20:58 +00:00
|
|
|
return 1
|
2017-03-14 11:24:09 +00:00
|
|
|
fi
|
|
|
|
|
2017-03-14 12:38:02 +00:00
|
|
|
_debug zoneForCheck "$zoneForCheck"
|
2017-03-14 11:24:09 +00:00
|
|
|
|
|
|
|
_dns_cloudns_http_api_call "dns/get-zone-info.json" "domain-name=$zoneForCheck"
|
|
|
|
|
|
|
|
if ! _contains "$response" "\"status\":\"Failed\""; then
|
2017-03-14 12:25:50 +00:00
|
|
|
echo "$zoneForCheck"
|
2017-03-14 12:20:58 +00:00
|
|
|
return 0
|
2017-03-14 11:24:09 +00:00
|
|
|
fi
|
|
|
|
|
2017-03-15 08:00:21 +00:00
|
|
|
i=$(_math "$i" + 1)
|
2017-03-14 11:24:09 +00:00
|
|
|
done
|
2017-03-14 12:20:58 +00:00
|
|
|
return 1
|
2017-03-14 11:24:09 +00:00
|
|
|
}
|
|
|
|
|
2017-03-14 12:25:50 +00:00
|
|
|
_dns_cloudns_get_record_id() {
|
2017-03-14 11:24:09 +00:00
|
|
|
_dns_cloudns_http_api_call "dns/records.json" "domain-name=$1&host=$2&type=TXT"
|
|
|
|
if _contains "$response" "\"id\":"; then
|
2017-03-15 13:49:14 +00:00
|
|
|
echo "$response" | cut -d '"' -f 2
|
2017-03-14 11:24:09 +00:00
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2017-03-14 12:25:50 +00:00
|
|
|
_dns_cloudns_http_api_call() {
|
2017-03-14 11:24:09 +00:00
|
|
|
method=$1
|
|
|
|
|
|
|
|
_debug CLOUDNS_AUTH_ID "$CLOUDNS_AUTH_ID"
|
|
|
|
_debug CLOUDNS_AUTH_PASSWORD "$CLOUDNS_AUTH_PASSWORD"
|
|
|
|
|
2017-03-15 13:52:05 +00:00
|
|
|
if [ -z "$2" ]; then
|
2017-03-15 13:49:14 +00:00
|
|
|
data="auth-id=$CLOUDNS_AUTH_ID&auth-password=$CLOUDNS_AUTH_PASSWORD"
|
|
|
|
else
|
|
|
|
data="auth-id=$CLOUDNS_AUTH_ID&auth-password=$CLOUDNS_AUTH_PASSWORD&$2"
|
|
|
|
fi
|
2017-03-14 11:24:09 +00:00
|
|
|
|
|
|
|
response="$(_get "$CLOUDNS_API/$method?$data")"
|
|
|
|
|
2017-03-15 08:00:21 +00:00
|
|
|
_debug2 response "$response"
|
2017-03-14 11:24:09 +00:00
|
|
|
|
2017-03-15 08:00:21 +00:00
|
|
|
return 0
|
2017-03-14 12:40:18 +00:00
|
|
|
}
|