From d7f3a687def3362e042cab6030654e8660ac0970 Mon Sep 17 00:00:00 2001 From: Seunghee Oh Date: Fri, 21 Aug 2020 15:57:46 +0900 Subject: [PATCH] Add dns_ever. export DNSEVER_ID=YOURID && export DNSEVER_PW=YOURPW --- dnsapi/dns_dnsever.sh | 195 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 195 insertions(+) create mode 100755 dnsapi/dns_dnsever.sh diff --git a/dnsapi/dns_dnsever.sh b/dnsapi/dns_dnsever.sh new file mode 100755 index 00000000..9571d8da --- /dev/null +++ b/dnsapi/dns_dnsever.sh @@ -0,0 +1,195 @@ +#!/usr/bin/env sh + +#Here is a sample custom api script. +#This file name is "dns_myapi.sh" +#So, here must be a method dns_myapi_add() +#Which will be called by acme.sh to add the txt record to your api system. +#returns 0 means success, otherwise error. +# +#Author: Neilpang +#Report Bugs here: https://github.com/Neilpang/acme.sh +# +######## Public functions ##################### + +# Please Read this guide first: https://github.com/Neilpang/acme.sh/wiki/DNS-API-Dev-Guide + +#Usage: dns_myapi_add _acme-challenge.www.domain.com "XKrxpRBosdIKFzxW_CT3KLZNf6q0HG9i01zxXp5CPBs" +dns_dnsever_add() { + fulldomain=$1 + txtvalue=$2 + _info "Using dnsever add" + _debug fulldomain "$fulldomain" + _debug txtvalue "$txtvalue" + + if [ -z "$DNSEVER_ID" ] || [ -z "$DNSEVER_PW" ]; then + DNSEVER_ID="" + DNSEVER_PW="" + _err "You don't specify dnsever.com ID or PW yet." + _err "Please create you key and try again." + _err "export DNSEVER_ID=YOURID && export DNSEVER_PW=YOURPW " + _err " ./acme.sh --issue --force --dns dns_dnsever -d "*.flywithu.com" " + return 1 + fi + + #save the api key and email to the account conf file. + _saveaccountconf DNSEVER_ID "$DNSEVER_ID" + _saveaccountconf DNSEVER_PW "$DNSEVER_PW" + + dnsever_domain_txt "add" "$DNSEVER_ID" "$DNSEVER_PW" "$fulldomain" "$txtvalue" + return $? +} + +#Usage: fulldomain txtvalue +#Remove the txt record after validation. +dns_dnsever_rm() { + fulldomain=$1 + txtvalue=$2 + _info "Using dnsever remove" + _debug fulldomain "$fulldomain" + _debug txtvalue "$txtvalue" + if [ -z "$DNSEVER_ID" ] || [ -z "$DNSEVER_PW" ]; then + DNSEVER_ID="" + DNSEVER_PW="" + _err "You don't specify dnsever.com ID or PW yet." + _err "Please create you key and try again." + _err "export DNSEVER_ID=YOURID && export DNSEVER_PW=YOURPW " + _err " ./acme.sh --issue --force --dns dns_dnsever -d "*.flywithu.com" " + return 1 + fi + + dnsever_domain_txt "del" "$DNSEVER_ID" "$DNSEVER_PW" "$fulldomain" "$txtvalue" + _err "remove" + return $? +} + +#################### Private functions below ################################## + +#_acme-challenge.www.domain.com +#returns +# _sub_domain=_acme-challenge.www +# _domain=domain.com +splitkey="_acme-challenge" + +_get_root() { + domain=$1 + i=2 + p=1 + while true; do + h=$(printf "%s" "$domain" | cut -d . -f $i-100) + if [ -z "$h" ]; then + #not valid + return 1 + fi + + # + domains=$(printf "%s\n" "$response" | _egrep_o "OPTION value=\".+\""| tr -d '\n') + _debug2 "h" "$h" + _debug2 "domains" "$domains" + + + if _contains "$domains" "$h" ;then + _sub_domain=$(printf "%s" "$domain" | cut -d . -f 1-$p) + _domain="$h" + return 0 + fi + p=$i + i=$(_math "$i" + 1) + done + return 1 +} + + +_get_check_count() { + domain=$1 + _err "res" "$response" +} + +dnsever_domain_txt() { + action="$1" + login_id="$2" + login_password="$3" + domainname="$4" + domain_txt="$5" + + response=$(_post "login_id=$login_id&login_password=$login_password" "https://kr.dnsever.com/index.html") + if [ $? != 0 ] || [ -z "$response" ]; then + _err "dnsever_txt:$action ERROR login failed. Please check https://kr.dnsever.com/index.html with login_id=$login_id login_password=$login_password" + return 1 + fi + + _H1="$(grep PHPSESSID "$HTTP_HEADER" | sed s/^Set-//)" + export _H1 + + response=$(_post "" "https://kr.dnsever.com/start.html") + if [ $? != 0 ] || [ -z "$response" ]; then + _err "dnsever_txt:$action ERROR login failed. Please check https://kr.dnsever.com/start.html after login" + return 1 + fi + +# newhref=$(echo "$response" | sed -E "s/.*\'(.*)\'<.*/\1/") + newhref=$(printf "%s\n" "$response" | _egrep_o "'.+'"|cut -d\' -f2) + + + response=$(_post "" "$newhref") + if [ $? != 0 ] || [ -z "$response" ]; then + _err "dnsever_txt:$action ERROR login failed. Please check https://kr.dnsever.com/start.html after login" + return 1 + fi + +# newhref=$(echo "$response" | sed -E "s/.*action=\"(.*)\" .*/\1/") + newhref=$(printf "%s\n" "$response" | _egrep_o "https.+\" "|cut -d\" -f1) + response=$(_post "" "$newhref") + if [ $? != 0 ] || [ -z "$response" ]; then + _err "dnsever_txt:$action ERROR login failed. Please check https://kr.dnsever.com/start.html after login" + return 1 + fi + + + response=$(_post "" "https://kr.dnsever.com/start.html") + if [ $? != 0 ] || [ -z "$response" ]; then + _err "dnsever_txt:$action ERROR login failed. Please check https://kr.dnsever.com/start.html after login" + return 1 + fi + + skey=$(printf "%s\n" "$response" | _egrep_o "name=\"skey\" value=\".+\"" | cut -f3 -d= | tr -d \") + _debug skey "$skey" + + + if [ -z "$skey" ]; then + _err "dnsever_txt:$action ERROR login failed with login_id=$login_id login_password=$login_password" + response=$(_post "skey=$skey" "https://kr.dnsever.com/logout.php") + return 1 + fi + _get_root $fulldomain + + _debug2 "domain" "$_domain" + _debug2 "subdomain" "$_sub_domain" + + if [ "$action" = "add" ]; then +##https://kr.dnsever.com/start.html?user_domain=flywithu.com&selected_menu=edittxt&skey=flywithu:f80f523d2254f1e2c56462ace327f256 +# subname=$(echo "$fulldomain" | sed "s/\.$user_domain\$//") + + + + + + response=$(_post "skey=$skey&user_domain=$_domain&selected_menu=edittxt&command=add_txt&subname=$_sub_domain&new_txt=$txt" "https://kr.dnsever.com/start.html") + + if [ $? != 0 ] || [ -z "$response" ]; then + _err "dnsever_txt:$action ERROR failed to add_text $fulldomain=$txt" + response=$(_post "skey=$skey" "https://kr.dnsever.com/logout.php") + + fi + elif [ "$action" = "del" ]; then + + response=$(_post "skey=$skey&user_domain=$_domain&selected_menu=edittxt&command=delete_txt&$check" "https://kr.dnsever.com/start.html") + if [ $? != 0 ] || [ -z "$response" ]; then + _err "dnsever_txt:$action ERROR failed to delete $fulldomain=$txt from DNSEver" + response=$(_post "skey=$skey" "https://kr.dnsever.com/logout.php") + return 1 + fi + + fi + + return 0 +} \ No newline at end of file