mirror of
https://gitee.com/dromara/Jpom.git
synced 2024-12-02 03:48:05 +08:00
105 lines
2.9 KiB
Bash
105 lines
2.9 KiB
Bash
#!/usr/bin/bash
|
|
#
|
|
# Copyright (c) 2019 Of Him Code Technology Studio
|
|
# Jpom is licensed under Mulan PSL v2.
|
|
# You can use this software according to the terms and conditions of the Mulan PSL v2.
|
|
# You may obtain a copy of Mulan PSL v2 at:
|
|
# http://license.coscl.org.cn/MulanPSL2
|
|
# THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
|
|
# See the Mulan PSL v2 for more details.
|
|
#
|
|
|
|
|
|
# Script to deploy certificate to a Gitee hosted page
|
|
|
|
# The following variables exported from environment will be used.
|
|
# If not set then values previously saved in domain.conf file are used.
|
|
|
|
# All the variables are required
|
|
# acme.sh --deploy -d xxx --deploy-hook gitee_pages
|
|
|
|
# export GITEE_TOKEN="xxx"
|
|
# export GITEE_OWNER_ID="xxx"
|
|
# export GITEE_REPO_ID="xxx"
|
|
|
|
gitee_pages_deploy() {
|
|
_cdomain="$1"
|
|
_ckey="$2"
|
|
_ccert="$3"
|
|
_cca="$4"
|
|
_cfullchain="$5"
|
|
|
|
_debug _cdomain "$_cdomain"
|
|
_debug _ckey "$_ckey"
|
|
_debug _ccert "$_ccert"
|
|
_debug _cca "$_cca"
|
|
_debug _cfullchain "$_cfullchain"
|
|
|
|
if [ -z "$GITEE_TOKEN" ]; then
|
|
if [ -z "$Le_Deploy_gitee_token" ]; then
|
|
_err "GITEE_TOKEN not defined."
|
|
return 1
|
|
fi
|
|
else
|
|
Le_Deploy_gitee_token="$GITEE_TOKEN"
|
|
_savedomainconf Le_Deploy_gitee_token "$Le_Deploy_gitee_token"
|
|
fi
|
|
|
|
if [ -z "$GITEE_OWNER_ID" ]; then
|
|
if [ -z "$Le_Deploy_gitee_owner_id" ]; then
|
|
_err "GITEE_OWNER_ID not defined."
|
|
return 1
|
|
fi
|
|
else
|
|
Le_Deploy_gitee_owner_id="$GITEE_OWNER_ID"
|
|
_savedomainconf Le_Deploy_gitee_owner_id "$Le_Deploy_gitee_owner_id"
|
|
fi
|
|
|
|
if [ -z "$GITEE_REPO_ID" ]; then
|
|
if [ -z "$Le_Deploy_gitee_repo_id" ]; then
|
|
_err "GITEE_REPO_ID not defined."
|
|
return 1
|
|
fi
|
|
else
|
|
Le_Deploy_gitee_repo_id="$GITEE_REPO_ID"
|
|
_savedomainconf Le_Deploy_gitee_repo_id "$Le_Deploy_gitee_repo_id"
|
|
fi
|
|
|
|
string_fullchain=$(_base64 <"$_cfullchain")
|
|
string_key=$(_base64 <"$_ckey")
|
|
|
|
body="access_token=$Le_Deploy_gitee_token&ssl_certificate_crt=$string_fullchain&ssl_certificate_key=$string_key&domain=$_cdomain"
|
|
|
|
gitee_url="https://gitee.com/api/v5/repos/$Le_Deploy_gitee_owner_id/$Le_Deploy_gitee_repo_id/pages"
|
|
|
|
_response=$(_post "$body" "$gitee_url" 0 PUT | _dbase64)
|
|
|
|
error_response="error"
|
|
|
|
if test "${_response#*$error_response}" != "$_response"; then
|
|
_err "Error in deploying certificate:"
|
|
_err "$_response"
|
|
return 1
|
|
fi
|
|
|
|
_debug response "$_response"
|
|
|
|
body="access_token=$Le_Deploy_gitee_token"
|
|
gitee_url="https://gitee.com/api/v5/repos/$Le_Deploy_gitee_owner_id/$Le_Deploy_gitee_repo_id/pages/builds"
|
|
|
|
_response=$(_post "$body" "$gitee_url" 0 POST | _dbase64)
|
|
|
|
error_response="error"
|
|
|
|
if test "${_response#*$error_response}" != "$_response"; then
|
|
_err "Error in deploying builds certificate:"
|
|
_err "$_response"
|
|
return 1
|
|
fi
|
|
_debug response "$_response"
|
|
|
|
_info "Certificate successfully deployed"
|
|
|
|
return 0
|
|
}
|