2020-03-24 13:26:50 +00:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
|
2022-11-27 06:51:24 +00:00
|
|
|
# Arvan_Token="Apikey xxxx"
|
2020-03-24 13:26:50 +00:00
|
|
|
|
2022-11-26 14:42:11 +00:00
|
|
|
ARVAN_API_URL="https://napi.arvancloud.ir/cdn/4.0/domains"
|
2022-11-27 06:51:24 +00:00
|
|
|
# Author: Vahid Fardi
|
|
|
|
# Report Bugs here: https://github.com/Neilpang/acme.sh
|
2020-03-24 13:26:50 +00:00
|
|
|
#
|
|
|
|
######## Public functions #####################
|
2020-04-18 10:51:08 +00:00
|
|
|
|
2020-03-24 13:26:50 +00:00
|
|
|
#Usage: dns_arvan_add _acme-challenge.www.domain.com "XKrxpRBosdIKFzxW_CT3KLZNf6q0HG9i01zxXp5CPBs"
|
|
|
|
dns_arvan_add() {
|
|
|
|
fulldomain=$1
|
|
|
|
txtvalue=$2
|
|
|
|
_info "Using Arvan"
|
|
|
|
|
|
|
|
Arvan_Token="${Arvan_Token:-$(_readaccountconf_mutable Arvan_Token)}"
|
|
|
|
|
|
|
|
if [ -z "$Arvan_Token" ]; then
|
|
|
|
_err "You didn't specify \"Arvan_Token\" token yet."
|
2022-11-26 14:42:11 +00:00
|
|
|
_err "You can get yours from here https://npanel.arvancloud.ir/profile/api-keys"
|
2020-03-24 13:26:50 +00:00
|
|
|
return 1
|
|
|
|
fi
|
2020-04-18 10:51:08 +00:00
|
|
|
#save the api token to the account conf file.
|
2020-03-24 13:26:50 +00:00
|
|
|
_saveaccountconf_mutable Arvan_Token "$Arvan_Token"
|
|
|
|
|
|
|
|
_debug "First detect the root zone"
|
|
|
|
if ! _get_root "$fulldomain"; then
|
|
|
|
_err "invalid domain"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
_debug _domain_id "$_domain_id"
|
|
|
|
_debug _sub_domain "$_sub_domain"
|
|
|
|
_debug _domain "$_domain"
|
|
|
|
|
|
|
|
_info "Adding record"
|
|
|
|
if _arvan_rest POST "$_domain/dns-records" "{\"type\":\"TXT\",\"name\":\"$_sub_domain\",\"value\":{\"text\":\"$txtvalue\"},\"ttl\":120}"; then
|
|
|
|
if _contains "$response" "$txtvalue"; then
|
2021-01-05 11:59:08 +00:00
|
|
|
_info "response id is $response"
|
2020-03-24 13:26:50 +00:00
|
|
|
_info "Added, OK"
|
|
|
|
return 0
|
2022-11-28 12:52:25 +00:00
|
|
|
elif _contains "$response" "Record Data is duplicate"; then
|
2020-03-24 13:26:50 +00:00
|
|
|
_info "Already exists, OK"
|
|
|
|
return 0
|
|
|
|
else
|
|
|
|
_err "Add txt record error."
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
_err "Add txt record error."
|
2021-01-05 11:59:08 +00:00
|
|
|
return 0
|
2020-03-24 13:26:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#Usage: fulldomain txtvalue
|
|
|
|
#Remove the txt record after validation.
|
|
|
|
dns_arvan_rm() {
|
|
|
|
fulldomain=$1
|
|
|
|
txtvalue=$2
|
|
|
|
_info "Using Arvan"
|
|
|
|
_debug fulldomain "$fulldomain"
|
|
|
|
_debug txtvalue "$txtvalue"
|
|
|
|
|
|
|
|
Arvan_Token="${Arvan_Token:-$(_readaccountconf_mutable Arvan_Token)}"
|
|
|
|
|
|
|
|
_debug "First detect the root zone"
|
|
|
|
if ! _get_root "$fulldomain"; then
|
|
|
|
_err "invalid domain"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
_debug _domain_id "$_domain_id"
|
|
|
|
_debug _sub_domain "$_sub_domain"
|
|
|
|
_debug _domain "$_domain"
|
|
|
|
|
|
|
|
_debug "Getting txt records"
|
2021-01-05 11:59:08 +00:00
|
|
|
_arvan_rest GET "${_domain}/dns-records"
|
2020-03-24 13:26:50 +00:00
|
|
|
if ! printf "%s" "$response" | grep \"current_page\":1 >/dev/null; then
|
|
|
|
_err "Error on Arvan Api"
|
2020-03-28 17:20:58 +00:00
|
|
|
_err "Please create a github issue with debbug log"
|
2020-03-24 13:26:50 +00:00
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
2021-01-05 11:59:08 +00:00
|
|
|
_record_id=$(echo "$response" | _egrep_o ".\"id\":\"[^\"]*\",\"type\":\"txt\",\"name\":\"_acme-challenge\",\"value\":{\"text\":\"$txtvalue\"}" | cut -d : -f 2 | cut -d , -f 1 | tr -d \")
|
|
|
|
if ! _arvan_rest "DELETE" "${_domain}/dns-records/${_record_id}"; then
|
|
|
|
_err "Error on Arvan Api"
|
|
|
|
return 1
|
2020-03-24 13:26:50 +00:00
|
|
|
fi
|
2021-01-05 11:59:08 +00:00
|
|
|
_debug "$response"
|
|
|
|
_contains "$response" 'dns record deleted'
|
|
|
|
return 0
|
2020-03-24 13:26:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#################### Private functions below ##################################
|
|
|
|
|
|
|
|
#_acme-challenge.www.domain.com
|
|
|
|
#returns
|
|
|
|
# _sub_domain=_acme-challenge.www
|
|
|
|
# _domain=domain.com
|
|
|
|
# _domain_id=sdjkglgdfewsdfg
|
|
|
|
_get_root() {
|
|
|
|
domain=$1
|
2021-01-05 11:59:08 +00:00
|
|
|
i=2
|
2020-03-24 13:26:50 +00:00
|
|
|
p=1
|
|
|
|
while true; do
|
|
|
|
h=$(printf "%s" "$domain" | cut -d . -f $i-100)
|
|
|
|
_debug h "$h"
|
|
|
|
if [ -z "$h" ]; then
|
|
|
|
#not valid
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
2021-01-05 11:59:08 +00:00
|
|
|
if ! _arvan_rest GET "$h"; then
|
2020-03-24 13:26:50 +00:00
|
|
|
return 1
|
|
|
|
fi
|
2021-01-05 11:59:08 +00:00
|
|
|
if _contains "$response" "\"domain\":\"$h\""; then
|
|
|
|
_domain_id=$(echo "$response" | cut -d : -f 3 | cut -d , -f 1 | tr -d \")
|
2020-03-24 13:26:50 +00:00
|
|
|
if [ "$_domain_id" ]; then
|
|
|
|
_sub_domain=$(printf "%s" "$domain" | cut -d . -f 1-$p)
|
|
|
|
_domain=$h
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
p=$i
|
|
|
|
i=$(_math "$i" + 1)
|
|
|
|
done
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
_arvan_rest() {
|
|
|
|
mtd="$1"
|
|
|
|
ep="$2"
|
|
|
|
data="$3"
|
|
|
|
|
|
|
|
token_trimmed=$(echo "$Arvan_Token" | tr -d '"')
|
|
|
|
export _H1="Authorization: $token_trimmed"
|
|
|
|
|
2020-03-28 17:20:58 +00:00
|
|
|
if [ "$mtd" = "DELETE" ]; then
|
2020-04-18 10:51:08 +00:00
|
|
|
#DELETE Request shouldn't have Content-Type
|
2020-03-24 13:26:50 +00:00
|
|
|
_debug data "$data"
|
|
|
|
response="$(_post "$data" "$ARVAN_API_URL/$ep" "" "$mtd")"
|
2020-03-28 17:20:58 +00:00
|
|
|
elif [ "$mtd" = "POST" ]; then
|
2020-03-24 13:26:50 +00:00
|
|
|
export _H2="Content-Type: application/json"
|
2022-11-28 12:39:17 +00:00
|
|
|
export _H3="Accept: application/json"
|
2020-03-24 13:26:50 +00:00
|
|
|
_debug data "$data"
|
|
|
|
response="$(_post "$data" "$ARVAN_API_URL/$ep" "" "$mtd")"
|
|
|
|
else
|
|
|
|
response="$(_get "$ARVAN_API_URL/$ep$data")"
|
|
|
|
fi
|
2021-01-05 11:59:08 +00:00
|
|
|
return 0
|
2022-11-28 12:41:17 +00:00
|
|
|
}
|