123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- #!/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
- export _H1="PddToken: $PDD_Token"
- curDomain="$(echo "${fulldomain}" | awk -F. '{printf("%s.%s\n",$(NF-1), $NF)}' )"
- curSubdomain="$(echo "${fulldomain}" | sed -e 's#$curDomain##')"
- 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
- export _H1="PddToken: $PDD_Token"
- record_id=$( pdd_get_record_id ${fulldomain} )
- curDomain="$(echo "${fulldomain}" | awk -F. '{printf("%s.%s\n",$(NF-1), $NF)}' )"
- curSubdomain="$(echo "${fulldomain}" | sed -e 's#$curDomain##')"
- 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}" |awk -F. '{printf("%s.%s\n",$(NF-1), $NF)}' )"
- curUri="https://pddimp.yandex.ru/api2/admin/dns/list?domain=${curDomain}"
- curResult="$(_get "${curUri}")"
- echo ${curResult} | \
- python -c "
- import sys, json;
- rs=json.load(sys.stdin)[\"records\"]
- for r in rs:
- if r[\"fqdn\"]==\"${fulldomain}\":
- print r[\"record_id\"]
- exit
- "
- }
|