12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- #!/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}'"
- _PDD_credentials || exit 1
- export _H1="PddToken: $PDD_Token"
- curDomain="$(echo "${fulldomain}" | rev | cut -d . -f 1-2 | rev)"
- curSubdomain="$(echo "${fulldomain}" | rev | cut -d . -f 3- | rev)"
- 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}'"
- _PDD_credentials || exit 1
- export _H1="PddToken: $PDD_Token"
- record_id=$(pdd_get_record_id "${fulldomain}")
- _debug "Result: $record_id"
- curDomain="$(echo "${fulldomain}" | rev | cut -d . -f 1-2 | rev)"
- curSubdomain="$(echo "${fulldomain}" | rev | cut -d . -f 3- | rev)"
- 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() {
- fulldomain="${1}"
- curDomain="$(echo "${fulldomain}" | rev | cut -d . -f 1-2 | rev)"
- curSubdomain="$(echo "${fulldomain}" | rev | cut -d . -f 3- | rev)"
- curUri="https://pddimp.yandex.ru/api2/admin/dns/list?domain=${curDomain}"
- curResult="$(_get "${curUri}" | _normalizeJson)"
- _debug "Result: $curResult"
- echo "$curResult" | grep -o "{[^{]*\"content\":[^{]*\"subdomain\":\"${curSubdomain}\"" | sed -n -e 's#.* "record_id": \(.*\),[^,]*#\1#p'
- }
|