-
-
Notifications
You must be signed in to change notification settings - Fork 5.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add dnsapi for Vultr #2370
Merged
+163
−0
Merged
Add dnsapi for Vultr #2370
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
89c0b67
Merge pull request #2366 from Neilpang/dev
Neilpang fe5f342
Merge pull request #2367 from Neilpang/dev
Neilpang 0ab5270
Add Vultr dns api
Fudoshiki 1967a5d
fix spellcheck
Fudoshiki 834dacf
fix spellcheck
Fudoshiki 64c1efd
fix shellcheck
Fudoshiki fe306ac
Fixes
Fudoshiki 15c7a16
Get _record_id
Fudoshiki 2d65112
Fix shellcheck
Fudoshiki 802e709
Add record_id empty check
Fudoshiki File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,163 @@ | ||
#!/usr/bin/env sh | ||
|
||
# | ||
#VULTR_API_KEY=000011112222333344445555666677778888 | ||
|
||
VULTR_Api="https://api.vultr.com/v1" | ||
|
||
######## Public functions ##################### | ||
|
||
#Usage: add _acme-challenge.www.domain.com "XKrxpRBosdIKFzxW_CT3KLZNf6q0HG9i01zxXp5CPBs" | ||
dns_vultr_add() { | ||
fulldomain=$1 | ||
txtvalue=$2 | ||
_debug fulldomain "$fulldomain" | ||
_debug txtvalue "$txtvalue" | ||
|
||
VULTR_API_KEY="${VULTR_API_KEY:-$(_readaccountconf_mutable VULTR_API_KEY)}" | ||
if test -z "$VULTR_API_KEY"; then | ||
VULTR_API_KEY='' | ||
_err 'VULTR_API_KEY was not exported' | ||
return 1 | ||
fi | ||
|
||
_saveaccountconf_mutable VULTR_API_KEY "$VULTR_API_KEY" | ||
|
||
_debug 'First detect the root zone' | ||
if ! _get_root "$fulldomain"; then | ||
return 1 | ||
fi | ||
_debug _sub_domain "$_sub_domain" | ||
_debug _domain "$_domain" | ||
|
||
_debug 'Getting txt records' | ||
_vultr_rest GET "dns/records?domain=$_domain" | ||
|
||
if printf "%s\n" "$response" | grep "\"type\":\"TXT\",\"name\":\"$fulldomain\"" >/dev/null; then | ||
_err 'Error' | ||
return 1 | ||
fi | ||
|
||
if ! _vultr_rest POST 'dns/create_record' "domain=$_domain&name=$_sub_domain&data=\"$txtvalue\"&type=TXT"; then | ||
_err "$response" | ||
return 1 | ||
fi | ||
|
||
_debug2 _response "$response" | ||
return 0 | ||
} | ||
|
||
#fulldomain txtvalue | ||
dns_vultr_rm() { | ||
fulldomain=$1 | ||
txtvalue=$2 | ||
_debug fulldomain "$fulldomain" | ||
_debug txtvalue "$txtvalue" | ||
|
||
VULTR_API_KEY="${VULTR_API_KEY:-$(_readaccountconf_mutable VULTR_API_KEY)}" | ||
if test -z "$VULTR_API_KEY"; then | ||
VULTR_API_KEY="" | ||
_err 'VULTR_API_KEY was not exported' | ||
return 1 | ||
fi | ||
|
||
_saveaccountconf_mutable VULTR_API_KEY "$VULTR_API_KEY" | ||
|
||
_debug 'First detect the root zone' | ||
if ! _get_root "$fulldomain"; then | ||
return 1 | ||
fi | ||
_debug _sub_domain "$_sub_domain" | ||
_debug _domain "$_domain" | ||
|
||
_debug 'Getting txt records' | ||
_vultr_rest GET "dns/records?domain=$_domain" | ||
|
||
if printf "%s\n" "$response" | grep "\"type\":\"TXT\",\"name\":\"$fulldomain\"" >/dev/null; then | ||
_err 'Error' | ||
return 1 | ||
fi | ||
|
||
_record_id="$(echo "$response" | tr '{}' '\n' | grep '"TXT"' | grep "$txtvalue" | tr ',' '\n' | grep -i 'RECORDID' | cut -d : -f 2)" | ||
_debug _record_id "$_record_id" | ||
if [ "$_record_id" ]; then | ||
_info "Successfully retrieved the record id for ACME challenge." | ||
else | ||
_info "Empty record id, it seems no such record." | ||
return 0 | ||
fi | ||
|
||
if ! _vultr_rest POST 'dns/delete_record' "domain=$_domain&RECORDID=$_record_id"; then | ||
_err "$response" | ||
return 1 | ||
fi | ||
|
||
_debug2 _response "$response" | ||
return 0 | ||
} | ||
|
||
#################### Private functions below ################################## | ||
#_acme-challenge.www.domain.com | ||
#returns | ||
# _sub_domain=_acme-challenge.www | ||
# _domain=domain.com | ||
# _domain_id=sdjkglgdfewsdfg | ||
_get_root() { | ||
domain=$1 | ||
i=1 | ||
while true; do | ||
h=$(printf "%s" "$domain" | cut -d . -f $i-100) | ||
_debug h "$h" | ||
if [ -z "$h" ]; then | ||
return 1 | ||
fi | ||
|
||
if ! _vultr_rest GET "dns/list"; then | ||
return 1 | ||
fi | ||
|
||
if printf "%s\n" "$response" | grep '^\[.*\]' >/dev/null; then | ||
if _contains "$response" "\"domain\":\"$_domain\""; then | ||
_sub_domain="$(echo "$fulldomain" | sed "s/\\.$_domain\$//")" | ||
_domain=$_domain | ||
return 0 | ||
else | ||
_err 'Invalid domain' | ||
return 1 | ||
fi | ||
else | ||
_err "$response" | ||
return 1 | ||
fi | ||
i=$(_math "$i" + 1) | ||
done | ||
|
||
return 1 | ||
} | ||
|
||
_vultr_rest() { | ||
m=$1 | ||
ep="$2" | ||
data="$3" | ||
_debug "$ep" | ||
|
||
api_key_trimmed=$(echo $VULTR_API_KEY | tr -d '"') | ||
|
||
export _H1="Api-Key: $api_key_trimmed" | ||
export _H2='Content-Type: application/x-www-form-urlencoded' | ||
|
||
if [ "$m" != "GET" ]; then | ||
_debug data "$data" | ||
response="$(_post "$data" "$VULTR_Api/$ep" "" "$m")" | ||
else | ||
response="$(_get "$VULTR_Api/$ep")" | ||
fi | ||
|
||
if [ "$?" != "0" ]; then | ||
_err "Error $ep" | ||
return 1 | ||
fi | ||
|
||
_debug2 response "$response" | ||
return 0 | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please add check for
_record_id
here.It can be empty.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sec
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not empty, works fine
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removing DNS records. Removing txt: QDPkHsxNfZJo7L3hQILAP-oNmq0WmQcNWMGtfEh5u4I for domain: _acme-challenge.sharevari.com 16857956 Removed: Success
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
txt records added and then removed from my vultr account
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I knew it works for you now.
but it never hurts if you check the value.
just check it as what I did for namesilo.
It makes your program more robust.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done