acme.sh/dnsapi/dns_dp.sh

162 lines
3.7 KiB
Bash
Raw Normal View History

#!/usr/bin/env sh
2016-02-02 15:54:49 +00:00
# Dnspod.cn Domain api
#
#DP_Id="1234"
#
#DP_Key="sADDsdasdgdsf"
2016-12-06 07:46:22 +00:00
REST_API="https://dnsapi.cn"
2016-02-02 15:54:49 +00:00
######## Public functions #####################
#Usage: add _acme-challenge.www.domain.com "XKrxpRBosdIKFzxW_CT3KLZNf6q0HG9i01zxXp5CPBs"
dns_dp_add() {
2016-02-02 15:54:49 +00:00
fulldomain=$1
txtvalue=$2
2016-11-09 12:01:27 +00:00
2018-02-14 12:52:06 +00:00
DP_Id="${DP_Id:-$(_readaccountconf_mutable DP_Id)}"
DP_Key="${DP_Key:-$(_readaccountconf_mutable DP_Key)}"
2016-11-09 11:30:39 +00:00
if [ -z "$DP_Id" ] || [ -z "$DP_Key" ]; then
2016-11-12 03:13:40 +00:00
DP_Id=""
DP_Key=""
2016-02-06 11:35:15 +00:00
_err "You don't specify dnspod api key and key id yet."
2016-02-02 15:54:49 +00:00
_err "Please create you key and try again."
return 1
fi
2016-11-09 12:01:27 +00:00
2016-02-02 15:54:49 +00:00
#save the api key and email to the account conf file.
2018-02-14 12:52:06 +00:00
_saveaccountconf_mutable DP_Id "$DP_Id"
_saveaccountconf_mutable DP_Key "$DP_Key"
2016-11-09 12:01:27 +00:00
2016-02-02 15:54:49 +00:00
_debug "First detect the root zone"
2016-11-11 15:30:14 +00:00
if ! _get_root "$fulldomain"; then
2016-02-02 15:54:49 +00:00
_err "invalid domain"
return 1
fi
2016-11-09 12:01:27 +00:00
2018-02-14 12:52:06 +00:00
add_record "$_domain" "$_sub_domain" "$txtvalue"
2016-02-02 15:54:49 +00:00
}
2016-12-06 07:46:22 +00:00
#fulldomain txtvalue
dns_dp_rm() {
fulldomain=$1
2016-12-06 07:46:22 +00:00
txtvalue=$2
2018-02-14 12:52:06 +00:00
DP_Id="${DP_Id:-$(_readaccountconf_mutable DP_Id)}"
DP_Key="${DP_Key:-$(_readaccountconf_mutable DP_Key)}"
2016-12-06 07:46:22 +00:00
_debug "First detect the root zone"
if ! _get_root "$fulldomain"; then
_err "invalid domain"
return 1
fi
if ! _rest POST "Record.List" "login_token=$DP_Id,$DP_Key&format=json&lang=en&domain_id=$_domain_id&sub_domain=$_sub_domain"; then
2016-12-06 07:46:22 +00:00
_err "Record.Lis error."
return 1
fi
if _contains "$response" 'No records'; then
_info "Don't need to remove."
return 0
fi
record_id=$(echo "$response" | tr "{" "\n" | grep -- "$txtvalue" | grep '^"id"' | cut -d : -f 2 | cut -d '"' -f 2)
2016-12-06 07:46:22 +00:00
_debug record_id "$record_id"
if [ -z "$record_id" ]; then
_err "Can not get record id."
return 1
fi
if ! _rest POST "Record.Remove" "login_token=$DP_Id,$DP_Key&format=json&lang=en&domain_id=$_domain_id&record_id=$record_id"; then
2016-12-06 07:46:22 +00:00
_err "Record.Remove error."
return 1
fi
_contains "$response" "successful"
}
2016-02-02 15:54:49 +00:00
#add the txt record.
#usage: root sub txtvalue
add_record() {
root=$1
sub=$2
txtvalue=$3
2016-11-11 15:30:14 +00:00
fulldomain="$sub.$root"
2016-11-09 12:01:27 +00:00
2016-02-02 15:54:49 +00:00
_info "Adding record"
2016-11-09 12:01:27 +00:00
Syncing with the original repo (#2) * change arvan api script * change Author name * change name actor * Updated --preferred-chain to issue ISRG properly To support different openssl crl2pkcs7 help cli format * dnsapi/pdns: also normalize json response in detecting root zone * Chain (#3408) * fix https://github.com/acmesh-official/acme.sh/issues/3384 match the issuer to the root CA cert subject * fix format * fix https://github.com/acmesh-official/acme.sh/issues/3384 * remove the alt files. https://github.com/acmesh-official/acme.sh/issues/3384 * upgrade freebsd and solaris * duckdns - fix "integer expression expected" errors (#3397) * fix "integer expression expected" errors * duckdns fix * Update dns_duckdns.sh * Update dns_duckdns.sh * Implement smtp notify hook Support notifications via direct SMTP server connection. Uses Python (2.7.x or 3.4+) to communicate with SMTP server. * Make shfmt happy (I'm open to better ways of formatting the heredoc that embeds the Python script.) * Only save config if send is successful * Add instructions for reporting bugs * Prep for curl or Python; clean up SMTP_* variable usage * Implement curl version of smtp notify-hook * More than one blank line is an abomination, apparently I will not try to use whitespace to group code visually * Fix: Unifi deploy hook support Unifi Cloud Key (#3327) * fix: unifi deploy hook also update Cloud Key nginx certs When running on a Unifi Cloud Key device, also deploy to /etc/ssl/private/cloudkey.{crt,key} and reload nginx. This makes the new cert available for the Cloud Key management app running via nginx on port 443 (as well as the port 8443 Unifi Controller app the deploy hook already supported). Fixes #3326 * Improve settings documentation comments * Improve Cloud Key pre-flight error messaging * Fix typo * Add support for UnifiOS (Cloud Key Gen2) Since UnifiOS does not use the Java keystore (like a Unifi Controller or Cloud Key Gen1 deploy), this also reworks the settings validation and error messaging somewhat. * PR review fixes * Detect unsupported Cloud Key java keystore location * Don't try to restart inactive services (and remove extra spaces from reload command) * Clean up error messages and internal variables * Change to _getdeployconf/_savedeployconf * Switch from cp to cat to preserve file permissions * feat: add huaweicloud error handling * fix: fix freebsd and solaris * support openssl 3.0 fix https://github.com/acmesh-official/acme.sh/issues/3399 * make the fix for rsa key only * Use PROJECT_NAME and VER for X-Mailer header Also add X-Mailer header to Python version * Add _clearaccountconf_mutable() * Rework read/save config to not save default values Add and use _readaccountconf_mutable_default and _saveaccountconf_mutable_default helpers to capture common default value handling. New approach also eliminates need for separate underscore-prefixed version of each conf var. * Implement _rfc2822_date helper * Clean email headers and warn on unsupported address format Just in case, make sure CR or NL don't end up in an email header. * Clarify _readaccountconf_mutable_default * Add Date email header in Python implementation * Use email.policy.default in Python 3 implementation Improves standards compatibility and utf-8 handling in Python 3.3-3.8. (email.policy.default becomes the default in Python 3.9.) * Prefer Python to curl when both available * Change default SMTP_SECURE to "tls" Secure by default. Also try to minimize configuration errors. (Many ESPs/ISPs require STARTTLS, and most support it.) * Update dns_dp.sh 没有encode中文字符会导致提交失败 * No need to include EC parameters explicitly with the private key. (they are embedded) * Fixes response handling and thereby allow issuing of subdomain certs * Adds comment * fix https://github.com/acmesh-official/acme.sh/issues/3402 * dnsapi/ionos: Use POST instead of PATCH for adding TXT record The API now supports a POST route for adding records. Therefore checking for already existing records and including them in a PATCH request is no longer necessary. * fix https://github.com/acmesh-official/acme.sh/issues/3433 * fix https://github.com/acmesh-official/acme.sh/issues/3019 * fix format * Update dns_servercow.sh to support wildcard certs Updated dns_servercow.sh to support txt records with multiple entries. This supports wildcard certificates that require txt records with the same name and different contents. * Update dns_servercow.sh to support wildcard certs Updated dns_servercow.sh to support txt records with multiple entries. This supports wildcard certificates that require txt records with the same name and different contents. * fix https://github.com/acmesh-official/acme.sh/issues/3312 * fix format * feat: add dns_porkbun * fix: prevent rate limit Co-authored-by: Vahid Fardi <vahid.fardi@snapp.cab> Co-authored-by: neil <github@neilpang.com> Co-authored-by: Gnought <1684105+gnought@users.noreply.github.com> Co-authored-by: manuel <manuel@mausz.at> Co-authored-by: jerrm <jerrm@users.noreply.github.com> Co-authored-by: medmunds <medmunds@gmail.com> Co-authored-by: Mike Edmunds <github@to.mikeedmunds.com> Co-authored-by: Easton Man <manyang.me@outlook.com> Co-authored-by: czeming <loser_wind@163.com> Co-authored-by: Geert Hendrickx <geert@hendrickx.be> Co-authored-by: Kristian Johansson <kristian.johansson86@gmail.com> Co-authored-by: Lukas Brocke <lukas@brocke.net> Co-authored-by: anom-human <80478363+anom-human@users.noreply.github.com> Co-authored-by: neil <win10@neilpang.com> Co-authored-by: Quentin Dreyer <quentin.dreyer@rgsystem.com>
2021-03-20 15:01:09 +00:00
if ! _rest POST "Record.Create" "login_token=$DP_Id,$DP_Key&format=json&lang=en&domain_id=$_domain_id&sub_domain=$_sub_domain&record_type=TXT&value=$txtvalue&record_line=%E9%BB%98%E8%AE%A4"; then
2016-02-02 15:54:49 +00:00
return 1
fi
2016-11-09 12:01:27 +00:00
_contains "$response" "successful" || _contains "$response" "Domain record already exists"
2016-02-02 15:54:49 +00:00
}
2016-12-14 20:32:24 +00:00
#################### Private functions below ##################################
2016-02-02 15:54:49 +00:00
#_acme-challenge.www.domain.com
#returns
# _sub_domain=_acme-challenge.www
# _domain=domain.com
# _domain_id=sdjkglgdfewsdfg
_get_root() {
domain=$1
i=2
p=1
2016-11-11 15:30:14 +00:00
while true; do
h=$(printf "%s" "$domain" | cut -d . -f $i-100)
2016-11-09 11:30:39 +00:00
if [ -z "$h" ]; then
2016-02-02 15:54:49 +00:00
#not valid
2016-11-09 12:01:27 +00:00
return 1
2016-02-02 15:54:49 +00:00
fi
2016-11-09 12:01:27 +00:00
if ! _rest POST "Domain.Info" "login_token=$DP_Id,$DP_Key&format=json&lang=en&domain=$h"; then
2016-02-02 15:54:49 +00:00
return 1
fi
2016-11-09 12:01:27 +00:00
if _contains "$response" "successful"; then
2016-11-11 16:50:44 +00:00
_domain_id=$(printf "%s\n" "$response" | _egrep_o "\"id\":\"[^\"]*\"" | cut -d : -f 2 | tr -d \")
2016-02-02 15:54:49 +00:00
_debug _domain_id "$_domain_id"
2016-11-09 11:30:39 +00:00
if [ "$_domain_id" ]; then
2016-11-11 15:30:14 +00:00
_sub_domain=$(printf "%s" "$domain" | cut -d . -f 1-$p)
_debug _sub_domain "$_sub_domain"
_domain="$h"
_debug _domain "$_domain"
2016-02-02 15:54:49 +00:00
return 0
fi
return 1
fi
2016-11-11 15:30:14 +00:00
p="$i"
i=$(_math "$i" + 1)
2016-02-02 15:54:49 +00:00
done
return 1
}
#Usage: method URI data
_rest() {
2017-01-09 14:01:48 +00:00
m="$1"
2016-02-02 15:54:49 +00:00
ep="$2"
2016-05-07 15:33:42 +00:00
data="$3"
2016-11-11 15:30:14 +00:00
_debug "$ep"
2016-02-02 15:54:49 +00:00
url="$REST_API/$ep"
2016-11-09 12:01:27 +00:00
2016-02-02 15:54:49 +00:00
_debug url "$url"
2016-11-09 12:01:27 +00:00
2017-01-09 14:01:48 +00:00
if [ "$m" = "GET" ]; then
response="$(_get "$url" | tr -d '\r')"
else
_debug2 data "$data"
2016-12-07 05:52:31 +00:00
response="$(_post "$data" "$url" | tr -d '\r')"
2016-02-02 15:54:49 +00:00
fi
2016-11-09 12:01:27 +00:00
2016-11-09 11:30:39 +00:00
if [ "$?" != "0" ]; then
2016-02-02 15:54:49 +00:00
_err "error $ep"
return 1
fi
_debug2 response "$response"
2016-02-02 15:54:49 +00:00
return 0
}