mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-11-10 00:11:45 +00:00
rework root domain detection
This commit is contained in:
parent
10cb7585a7
commit
e6a95ecd08
@ -16,8 +16,9 @@ dns_yandex_add() {
|
|||||||
_PDD_credentials || return 1
|
_PDD_credentials || return 1
|
||||||
export _H1="PddToken: $PDD_Token"
|
export _H1="PddToken: $PDD_Token"
|
||||||
|
|
||||||
curDomain="$(echo "${fulldomain}" | rev | cut -d . -f 1-2 | rev)"
|
curDomain=$(_PDD_get_domain $fulldomain)
|
||||||
curSubdomain="$(echo "${fulldomain}" | rev | cut -d . -f 3- | rev)"
|
_debug "Found suitable domain in pdd: $curDomain"
|
||||||
|
curSubdomain="$(echo "${fulldomain}" | sed -e "s@.${curDomain}\$@@")"
|
||||||
curData="domain=${curDomain}&type=TXT&subdomain=${curSubdomain}&ttl=360&content=${txtvalue}"
|
curData="domain=${curDomain}&type=TXT&subdomain=${curSubdomain}&ttl=360&content=${txtvalue}"
|
||||||
curUri="https://pddimp.yandex.ru/api2/admin/dns/add"
|
curUri="https://pddimp.yandex.ru/api2/admin/dns/add"
|
||||||
curResult="$(_post "${curData}" "${curUri}")"
|
curResult="$(_post "${curData}" "${curUri}")"
|
||||||
@ -33,8 +34,10 @@ dns_yandex_rm() {
|
|||||||
record_id=$(pdd_get_record_id "${fulldomain}")
|
record_id=$(pdd_get_record_id "${fulldomain}")
|
||||||
_debug "Result: $record_id"
|
_debug "Result: $record_id"
|
||||||
|
|
||||||
curDomain="$(echo "${fulldomain}" | rev | cut -d . -f 1-2 | rev)"
|
curDomain=$(_PDD_get_domain $fulldomain)
|
||||||
curSubdomain="$(echo "${fulldomain}" | rev | cut -d . -f 3- | rev)"
|
_debug "Found suitable domain in pdd: $curDomain"
|
||||||
|
curSubdomain="$(echo "${fulldomain}" | sed -e "s@.${curDomain}\$@@")"
|
||||||
|
|
||||||
curUri="https://pddimp.yandex.ru/api2/admin/dns/del"
|
curUri="https://pddimp.yandex.ru/api2/admin/dns/del"
|
||||||
curData="domain=${curDomain}&record_id=${record_id}"
|
curData="domain=${curDomain}&record_id=${record_id}"
|
||||||
curResult="$(_post "${curData}" "${curUri}")"
|
curResult="$(_post "${curData}" "${curUri}")"
|
||||||
@ -43,10 +46,47 @@ dns_yandex_rm() {
|
|||||||
|
|
||||||
#################### Private functions below ##################################
|
#################### Private functions below ##################################
|
||||||
|
|
||||||
|
_PDD_get_domain() {
|
||||||
|
fulldomain="${1}"
|
||||||
|
__page=1
|
||||||
|
__last=0
|
||||||
|
while [ $__last -eq 0 ]; do
|
||||||
|
uri1="https://pddimp.yandex.ru/api2/admin/domain/domains?page=${__page}&on_page=20"
|
||||||
|
res1=$(_get $uri1 | _normalizeJson)
|
||||||
|
#_debug "$res1"
|
||||||
|
__found=$(echo "$res1" | sed -n -e 's#.* "found": \([^,]*\),.*#\1#p')
|
||||||
|
_debug "found: $__found results on page"
|
||||||
|
if [ $__found -lt 20 ]; then
|
||||||
|
_debug "last page: $__page"
|
||||||
|
__last=1
|
||||||
|
fi
|
||||||
|
|
||||||
|
__all_domains="$__all_domains $(echo "$res1" | sed -e "s@,@\n@g" | grep '"name"' | cut -d: -f2 | sed -e 's@"@@g')"
|
||||||
|
|
||||||
|
__page=$(_math $__page + 1)
|
||||||
|
done
|
||||||
|
|
||||||
|
k=2
|
||||||
|
while [ $k -lt 10 ]; do
|
||||||
|
__t=$(echo "$fulldomain" | cut -d . -f $k-100)
|
||||||
|
_debug "finding zone for domain $__t"
|
||||||
|
for d in $__all_domains; do
|
||||||
|
if [ "$d" == "$__t" ]; then
|
||||||
|
echo "$__t"
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
k=$(_math $k + 1)
|
||||||
|
done
|
||||||
|
_err "No suitable domain found in your account"
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
|
||||||
_PDD_credentials() {
|
_PDD_credentials() {
|
||||||
if [ -z "${PDD_Token}" ]; then
|
if [ -z "${PDD_Token}" ]; then
|
||||||
PDD_Token=""
|
PDD_Token=""
|
||||||
_err "You haven't specified the ISPConfig Login data."
|
_err "You need to export PDD_Token=xxxxxxxxxxxxxxxxx"
|
||||||
|
_err "You can get it at https://pddimp.yandex.ru/api2/admin/get_token"
|
||||||
return 1
|
return 1
|
||||||
else
|
else
|
||||||
_saveaccountconf PDD_Token "${PDD_Token}"
|
_saveaccountconf PDD_Token "${PDD_Token}"
|
||||||
@ -55,8 +95,11 @@ _PDD_credentials() {
|
|||||||
|
|
||||||
pdd_get_record_id() {
|
pdd_get_record_id() {
|
||||||
fulldomain="${1}"
|
fulldomain="${1}"
|
||||||
curDomain="$(echo "${fulldomain}" | rev | cut -d . -f 1-2 | rev)"
|
|
||||||
curSubdomain="$(echo "${fulldomain}" | rev | cut -d . -f 3- | rev)"
|
curDomain=$(_PDD_get_domain $fulldomain)
|
||||||
|
_debug "Found suitable domain in pdd: $curDomain"
|
||||||
|
curSubdomain="$(echo "${fulldomain}" | sed -e "s@.${curDomain}\$@@")"
|
||||||
|
|
||||||
curUri="https://pddimp.yandex.ru/api2/admin/dns/list?domain=${curDomain}"
|
curUri="https://pddimp.yandex.ru/api2/admin/dns/list?domain=${curDomain}"
|
||||||
curResult="$(_get "${curUri}" | _normalizeJson)"
|
curResult="$(_get "${curUri}" | _normalizeJson)"
|
||||||
_debug "Result: $curResult"
|
_debug "Result: $curResult"
|
||||||
|
Loading…
Reference in New Issue
Block a user