acme.sh/dnsapi/dns_infoblox.sh

112 lines
3.6 KiB
Bash
Raw Normal View History

2017-06-08 11:35:27 +00:00
#!/usr/bin/env sh
2017-03-23 19:16:31 +00:00
2017-03-24 01:20:04 +00:00
## Infoblox API integration by Jason Keller and Elijah Tenai
##
## Report any bugs via https://github.com/jasonkeller/acme.sh
2017-03-23 19:16:31 +00:00
dns_infoblox_add() {
## Nothing to see here, just some housekeeping
fulldomain=$1
txtvalue=$2
_info "Using Infoblox API"
_debug fulldomain "$fulldomain"
_debug txtvalue "$txtvalue"
## Check for the credentials
if [ -z "$Infoblox_Creds" ] || [ -z "$Infoblox_Server" ]; then
Infoblox_Creds=""
Infoblox_Server=""
_err "You didn't specify the Infoblox credentials or server (Infoblox_Creds; Infoblox_Server)."
_err "Please set them via EXPORT Infoblox_Creds=username:password or EXPORT Infoblox_server=ip/hostname and try again."
2017-03-23 19:16:31 +00:00
return 1
fi
if [ -z "$Infoblox_View" ]; then
_info "No Infoblox_View set, using fallback value 'default'"
Infoblox_View="default"
fi
2021-07-01 20:54:56 +00:00
2017-03-23 19:16:31 +00:00
## Save the credentials to the account file
_saveaccountconf Infoblox_Creds "$Infoblox_Creds"
_saveaccountconf Infoblox_Server "$Infoblox_Server"
2017-06-14 21:52:48 +00:00
_saveaccountconf Infoblox_View "$Infoblox_View"
2017-03-23 19:16:31 +00:00
## URLencode Infoblox View to deal with e.g. spaces
Infoblox_ViewEncoded=$(printf "%b" "$Infoblox_View" | _url_encode)
2017-03-23 19:16:31 +00:00
## Base64 encode the credentials
2017-03-23 20:06:37 +00:00
Infoblox_CredsEncoded=$(printf "%b" "$Infoblox_Creds" | _base64)
2017-03-23 19:16:31 +00:00
## Construct the HTTP Authorization header
export _H1="Accept-Language:en-US"
export _H2="Authorization: Basic $Infoblox_CredsEncoded"
2021-07-01 20:59:43 +00:00
## Construct the request URL
baseurlnObject="https://$Infoblox_Server/wapi/v2.2.2/record:txt?name=$fulldomain&text=$txtvalue&view=${Infoblox_ViewEncoded}"
2021-07-01 20:59:43 +00:00
2017-03-23 19:16:31 +00:00
## Add the challenge record to the Infoblox grid member
2017-07-08 06:12:31 +00:00
result="$(_post "" "$baseurlnObject" "" "POST")"
2017-03-23 19:16:31 +00:00
## Let's see if we get something intelligible back from the unit
if [ "$(echo "$result" | _egrep_o "record:txt/.*:.*/${Infoblox_ViewEncoded}")" ]; then
2017-03-23 19:16:31 +00:00
_info "Successfully created the txt record"
return 0
else
_err "Error encountered during record addition"
_err "$result"
return 1
fi
}
dns_infoblox_rm() {
## Nothing to see here, just some housekeeping
fulldomain=$1
txtvalue=$2
_info "Using Infoblox API"
_debug fulldomain "$fulldomain"
_debug txtvalue "$txtvalue"
## URLencode Infoblox View to deal with e.g. spaces
Infoblox_ViewEncoded=$(printf "%b" "$Infoblox_View" | _url_encode)
2017-03-23 19:16:31 +00:00
## Base64 encode the credentials
2017-07-08 06:12:31 +00:00
Infoblox_CredsEncoded="$(printf "%b" "$Infoblox_Creds" | _base64)"
2017-03-23 19:16:31 +00:00
## Construct the HTTP Authorization header
export _H1="Accept-Language:en-US"
export _H2="Authorization: Basic $Infoblox_CredsEncoded"
## Does the record exist? Let's check.
baseurlnObject="https://$Infoblox_Server/wapi/v2.2.2/record:txt?name=$fulldomain&text=$txtvalue&view=${Infoblox_ViewEncoded}&_return_type=xml-pretty"
2017-07-08 06:12:31 +00:00
result="$(_get "$baseurlnObject")"
2017-03-23 19:16:31 +00:00
## Let's see if we get something intelligible back from the grid
if [ "$(echo "$result" | _egrep_o "record:txt/.*:.*/${Infoblox_ViewEncoded}")" ]; then
2017-03-23 19:16:31 +00:00
## Extract the object reference
objRef="$(printf "%b" "$result" | _egrep_o "record:txt/.*:.*/${Infoblox_ViewEncoded}")"
2017-03-23 19:16:31 +00:00
objRmUrl="https://$Infoblox_Server/wapi/v2.2.2/$objRef"
## Delete them! All the stale records!
2017-07-08 06:12:31 +00:00
rmResult="$(_post "" "$objRmUrl" "" "DELETE")"
2017-03-23 19:16:31 +00:00
## Let's see if that worked
if [ "$(echo "$rmResult" | _egrep_o "record:txt/.*:.*/${Infoblox_ViewEncoded}")" ]; then
2017-03-23 19:16:31 +00:00
_info "Successfully deleted $objRef"
return 0
else
_err "Error occurred during txt record delete"
_err "$rmResult"
return 1
fi
else
_err "Record to delete didn't match an existing record"
_err "$result"
return 1
fi
}
2017-06-17 09:28:49 +00:00
#################### Private functions below ##################################