deployhook Netlify: Support multiple Site ID
This commit is contained in:
parent
696182cfa4
commit
3b46060caa
@ -8,6 +8,9 @@
|
|||||||
# export Netlify_ACCESS_TOKEN="Your Netlify Access Token"
|
# export Netlify_ACCESS_TOKEN="Your Netlify Access Token"
|
||||||
# export Netlify_SITE_ID="Your Netlify Site ID"
|
# export Netlify_SITE_ID="Your Netlify Site ID"
|
||||||
|
|
||||||
|
# If have more than one SITE ID
|
||||||
|
# export Netlify_SITE_ID="SITE_ID_1 SITE_ID_2"
|
||||||
|
|
||||||
# returns 0 means success, otherwise error.
|
# returns 0 means success, otherwise error.
|
||||||
|
|
||||||
######## Public functions #####################
|
######## Public functions #####################
|
||||||
@ -45,18 +48,22 @@ netlify_deploy() {
|
|||||||
string_ccert=$(sed 's/$/\\n/' "$_ccert" | tr -d '\n')
|
string_ccert=$(sed 's/$/\\n/' "$_ccert" | tr -d '\n')
|
||||||
string_cca=$(sed 's/$/\\n/' "$_cca" | tr -d '\n')
|
string_cca=$(sed 's/$/\\n/' "$_cca" | tr -d '\n')
|
||||||
string_key=$(sed 's/$/\\n/' "$_ckey" | tr -d '\n')
|
string_key=$(sed 's/$/\\n/' "$_ckey" | tr -d '\n')
|
||||||
_request_body="{\"certificate\":\"$string_ccert\",\"key\":\"$string_key\",\"ca_certificates\":\"$string_cca\"}"
|
|
||||||
_debug _request_body "$_request_body"
|
|
||||||
_debug Netlify_ACCESS_TOKEN "$Netlify_ACCESS_TOKEN"
|
|
||||||
export _H1="Authorization: Bearer $Netlify_ACCESS_TOKEN"
|
|
||||||
_response=$(_post "$_request_body" "https://api.netlify.com/api/v1/sites/$Netlify_SITE_ID/ssl" "" "POST" "application/json")
|
|
||||||
|
|
||||||
if _contains "$_response" "\"error\""; then
|
for SITE_ID in $Netlify_SITE_ID; do
|
||||||
_err "Error in deploying $_cdomain certificate to Netlify."
|
_request_body="{\"certificate\":\"$string_ccert\",\"key\":\"$string_key\",\"ca_certificates\":\"$string_cca\"}"
|
||||||
_err "$_response"
|
_debug _request_body "$_request_body"
|
||||||
return 1
|
_debug Netlify_ACCESS_TOKEN "$Netlify_ACCESS_TOKEN"
|
||||||
fi
|
export _H1="Authorization: Bearer $Netlify_ACCESS_TOKEN"
|
||||||
_debug response "$_response"
|
_response=$(_post "$_request_body" "https://api.netlify.com/api/v1/sites/$SITE_ID/ssl" "" "POST" "application/json")
|
||||||
_info "Domain $_cdomain certificate successfully deployed to Netlify."
|
|
||||||
|
if _contains "$_response" "\"error\""; then
|
||||||
|
_err "Error in deploying $_cdomain certificate to Netlify SITE_ID $SITE_ID."
|
||||||
|
_err "$_response"
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
_debug response "$_response"
|
||||||
|
_info "Domain $_cdomain certificate successfully deployed to Netlify SITE_ID $SITE_ID."
|
||||||
|
done
|
||||||
|
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue
Block a user