mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-12-22 05:01:40 +00:00
only use SELFHOSTDNS_MAP for configuration of RIDs. detect wildcard domain for use of additional RID
This commit is contained in:
parent
b9256a1ba7
commit
35ec3adadc
@ -10,6 +10,7 @@ dns_selfhost_add() {
|
|||||||
_info "Calling acme-dns on selfhost"
|
_info "Calling acme-dns on selfhost"
|
||||||
_debug fulldomain "$fulldomain"
|
_debug fulldomain "$fulldomain"
|
||||||
_debug txtvalue "$txt"
|
_debug txtvalue "$txt"
|
||||||
|
_debug domain "$d"
|
||||||
|
|
||||||
SELFHOSTDNS_UPDATE_URL="https://selfhost.de/cgi-bin/api.pl"
|
SELFHOSTDNS_UPDATE_URL="https://selfhost.de/cgi-bin/api.pl"
|
||||||
|
|
||||||
@ -18,39 +19,36 @@ dns_selfhost_add() {
|
|||||||
SELFHOSTDNS_PASSWORD="${SELFHOSTDNS_PASSWORD:-$(_readaccountconf_mutable SELFHOSTDNS_PASSWORD)}"
|
SELFHOSTDNS_PASSWORD="${SELFHOSTDNS_PASSWORD:-$(_readaccountconf_mutable SELFHOSTDNS_PASSWORD)}"
|
||||||
# These values are domain dependent, so read them from there
|
# These values are domain dependent, so read them from there
|
||||||
SELFHOSTDNS_MAP="${SELFHOSTDNS_MAP:-$(_readdomainconf SELFHOSTDNS_MAP)}"
|
SELFHOSTDNS_MAP="${SELFHOSTDNS_MAP:-$(_readdomainconf SELFHOSTDNS_MAP)}"
|
||||||
SELFHOSTDNS_RID="${SELFHOSTDNS_RID:-$(_readdomainconf SELFHOSTDNS_RID)}"
|
|
||||||
SELFHOSTDNS_RID2="${SELFHOSTDNS_RID2:-$(_readdomainconf SELFHOSTDNS_RID2)}"
|
|
||||||
SELFHOSTDNS_LAST_SLOT="${SELFHOSTDNS_LAST_SLOT:-$(_readdomainconf SELFHOSTDNS_LAST_SLOT)}"
|
|
||||||
|
|
||||||
if [ -z "${SELFHOSTDNS_USERNAME:-}" ] || [ -z "${SELFHOSTDNS_PASSWORD:-}" ]; then
|
if [ -z "${SELFHOSTDNS_USERNAME:-}" ] || [ -z "${SELFHOSTDNS_PASSWORD:-}" ]; then
|
||||||
_err "SELFHOSTDNS_USERNAME and SELFHOSTDNS_PASSWORD must be set"
|
_err "SELFHOSTDNS_USERNAME and SELFHOSTDNS_PASSWORD must be set"
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test -z "$SELFHOSTDNS_LAST_SLOT"; then
|
# get the domain entry from SELFHOSTDNS_MAP
|
||||||
SELFHOSTDNS_LAST_SLOT=1
|
|
||||||
fi
|
|
||||||
|
|
||||||
# get the RID for fulldomain from SELFHOSTDNS_MAP
|
|
||||||
# only match full domains (at the beginning of the string or with a leading whitespace),
|
# only match full domains (at the beginning of the string or with a leading whitespace),
|
||||||
# e.g. don't match mytest.example.com or sub.test.example.com for test.example.com
|
# e.g. don't match mytest.example.com or sub.test.example.com for test.example.com
|
||||||
# replace the whole string with the RID (matching group 3) for assignment
|
|
||||||
# if the domain is defined multiple times only the last occurance will be matched
|
# if the domain is defined multiple times only the last occurance will be matched
|
||||||
rid=$(echo "$SELFHOSTDNS_MAP" | sed -E "s/(^|^.*[[:space:]])($fulldomain:)([0-9][0-9]*)(.*)/\3/")
|
mapEntry=$(echo "$SELFHOSTDNS_MAP" | sed -n -E "s/(^|^.*[[:space:]])($fulldomain)(:[[:digit:]]+)([:]?[[:digit:]]*)(.*)/\2\3\4/p")
|
||||||
|
_debug mapEntry $mapEntry
|
||||||
if test -z "$rid"; then
|
if test -z "$mapEntry"; then
|
||||||
if [ $SELFHOSTDNS_LAST_SLOT = "2" ]; then
|
_err "SELFHOSTDNS_MAP must contain the fulldomain incl. prefix and at least one RID"
|
||||||
rid=$SELFHOSTDNS_RID
|
return 1
|
||||||
SELFHOSTDNS_LAST_SLOT=1
|
|
||||||
else
|
|
||||||
rid=$SELFHOSTDNS_RID2
|
|
||||||
SELFHOSTDNS_LAST_SLOT=2
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test -z "$rid"; then
|
# get the RIDs from the map entry
|
||||||
_err "SELFHOSTDNS_RID and SELFHOSTDNS_RID2, or SELFHOSTDNS_MAP must be set"
|
rid1=$(echo "$mapEntry" | cut -d: -f2)
|
||||||
return 1
|
_debug rid1 $rid1
|
||||||
|
rid2=$(echo "$mapEntry" | cut -d: -f3)
|
||||||
|
_debug rid2 $rid2
|
||||||
|
|
||||||
|
rid=$rid1
|
||||||
|
# check for wildcard domain and use rid2 if set
|
||||||
|
if _startswith "$d" '*.'; then
|
||||||
|
_debug2 "wildcard domain"
|
||||||
|
if ! test -z "$rid2"; then
|
||||||
|
rid=$rid2
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
_info "Trying to add $txt on selfhost for rid: $rid"
|
_info "Trying to add $txt on selfhost for rid: $rid"
|
||||||
@ -68,9 +66,6 @@ dns_selfhost_add() {
|
|||||||
_saveaccountconf_mutable SELFHOSTDNS_PASSWORD "$SELFHOSTDNS_PASSWORD"
|
_saveaccountconf_mutable SELFHOSTDNS_PASSWORD "$SELFHOSTDNS_PASSWORD"
|
||||||
# These values are domain dependent, so store them there
|
# These values are domain dependent, so store them there
|
||||||
_savedomainconf SELFHOSTDNS_MAP "$SELFHOSTDNS_MAP"
|
_savedomainconf SELFHOSTDNS_MAP "$SELFHOSTDNS_MAP"
|
||||||
_savedomainconf SELFHOSTDNS_RID "$SELFHOSTDNS_RID"
|
|
||||||
_savedomainconf SELFHOSTDNS_RID2 "$SELFHOSTDNS_RID2"
|
|
||||||
_savedomainconf SELFHOSTDNS_LAST_SLOT "$SELFHOSTDNS_LAST_SLOT"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
dns_selfhost_rm() {
|
dns_selfhost_rm() {
|
||||||
|
Loading…
Reference in New Issue
Block a user