acme.sh/dnsapi/dns_yandex.sh

65 lines
2.2 KiB
Bash
Raw Normal View History

2017-07-08 18:35:22 +00:00
#!/usr/bin/env sh
# Author: non7top@gmail.com
# 07 Jul 2017
# report bugs at https://github.com/non7top/acme.sh
# Values to export:
# export PDD_Token="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
######## Public functions #####################
#Usage: dns_myapi_add _acme-challenge.www.domain.com "XKrxpRBosdIKFzxW_CT3KLZNf6q0HG9i01zxXp5CPBs"
dns_yandex_add() {
fulldomain="${1}"
txtvalue="${2}"
_debug "Calling: dns_yandex_add() '${fulldomain}' '${txtvalue}'"
2017-07-09 10:00:42 +00:00
_PDD_credentials || exit 1
2017-07-08 18:35:22 +00:00
export _H1="PddToken: $PDD_Token"
2017-07-09 10:21:55 +00:00
curDomain="$(echo "${fulldomain}" | rev | cut -d . -f 1-2 | rev)"
curSubdomain="$(echo "${fulldomain}" | rev | cut -d . -f 3- | rev)"
2017-07-08 18:35:22 +00:00
curData="domain=${curDomain}&type=TXT&subdomain=${curSubdomain}&ttl=360&content=${txtvalue}"
curUri="https://pddimp.yandex.ru/api2/admin/dns/add"
curResult="$(_post "${curData}" "${curUri}")"
_debug "Result: $curResult"
}
#Usage: dns_myapi_rm _acme-challenge.www.domain.com
dns_yandex_rm() {
fulldomain="${1}"
_debug "Calling: dns_yandex_rm() '${fulldomain}'"
2017-07-09 10:00:42 +00:00
_PDD_credentials || exit 1
2017-07-08 18:35:22 +00:00
export _H1="PddToken: $PDD_Token"
2017-07-08 19:02:34 +00:00
record_id=$(pdd_get_record_id "${fulldomain}")
2017-07-09 17:00:02 +00:00
_debug "Result: $record_id"
2017-07-08 18:35:22 +00:00
2017-07-09 10:21:55 +00:00
curDomain="$(echo "${fulldomain}" | rev | cut -d . -f 1-2 | rev)"
curSubdomain="$(echo "${fulldomain}" | rev | cut -d . -f 3- | rev)"
2017-07-08 18:35:22 +00:00
curUri="https://pddimp.yandex.ru/api2/admin/dns/del"
curData="domain=${curDomain}&record_id=${record_id}"
curResult="$(_post "${curData}" "${curUri}")"
_debug "Result: $curResult"
}
#################### Private functions below ##################################
_PDD_credentials() {
if [ -z "${PDD_Token}" ]; then
PDD_Token=""
_err "You haven't specified the ISPConfig Login data."
return 1
else
_saveaccountconf PDD_Token "${PDD_Token}"
fi
}
pdd_get_record_id() {
2017-07-08 18:52:47 +00:00
fulldomain="${1}"
2017-07-09 17:00:02 +00:00
curDomain="$(echo "${fulldomain}" | rev | cut -d . -f 1-2 | rev)"
curSubdomain="$(echo "${fulldomain}" | rev | cut -d . -f 3- | rev)"
2017-07-08 18:52:47 +00:00
curUri="https://pddimp.yandex.ru/api2/admin/dns/list?domain=${curDomain}"
2017-07-09 17:00:02 +00:00
curResult="$(_get "${curUri}" | _normalizeJson)"
_debug "Result: $curResult"
echo "$curResult" | grep -o "{[^{]*\"content\":[^{]*\"subdomain\":\"${curSubdomain}\"" | sed -n -e 's#.* "record_id": \(.*\),[^,]*#\1#p'
2017-07-08 18:35:22 +00:00
}