2017-07-12 18:24:54 +00:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
|
|
|
|
########################################################################
|
|
|
|
# Hurricane Electric hook script for acme.sh
|
|
|
|
#
|
|
|
|
# Environment variables:
|
|
|
|
#
|
|
|
|
# - $HE_Username (your dns.he.net username)
|
|
|
|
# - $HE_Password (your dns.he.net password)
|
|
|
|
#
|
|
|
|
# Author: Ondrej Simek <me@ondrejsimek.com>
|
|
|
|
# Git repo: https://github.com/angel333/acme.sh
|
|
|
|
|
|
|
|
#-- dns_he_add() - Add TXT record --------------------------------------
|
|
|
|
# Usage: dns_he_add _acme-challenge.subdomain.domain.com "XyZ123..."
|
|
|
|
|
|
|
|
dns_he_add() {
|
|
|
|
_full_domain=$1
|
|
|
|
_txt_value=$2
|
|
|
|
_info "Using DNS-01 Hurricane Electric hook"
|
|
|
|
|
2018-02-12 12:40:24 +00:00
|
|
|
HE_Username="${HE_Username:-$(_readaccountconf_mutable HE_Username)}"
|
|
|
|
HE_Password="${HE_Password:-$(_readaccountconf_mutable HE_Password)}"
|
2017-07-23 05:31:55 +00:00
|
|
|
if [ -z "$HE_Username" ] || [ -z "$HE_Password" ]; then
|
2017-07-28 11:58:47 +00:00
|
|
|
HE_Username=
|
|
|
|
HE_Password=
|
2017-07-26 18:15:34 +00:00
|
|
|
_err "No auth details provided. Please set user credentials using the \$HE_Username and \$HE_Password envoronment variables."
|
2017-07-23 03:00:02 +00:00
|
|
|
return 1
|
|
|
|
fi
|
2018-02-12 12:40:24 +00:00
|
|
|
_saveaccountconf_mutable HE_Username "$HE_Username"
|
|
|
|
_saveaccountconf_mutable HE_Password "$HE_Password"
|
2017-07-12 18:24:54 +00:00
|
|
|
|
2017-07-29 11:52:28 +00:00
|
|
|
# Fills in the $_zone_id
|
2017-07-26 18:15:34 +00:00
|
|
|
_find_zone "$_full_domain" || return 1
|
2017-07-12 18:24:54 +00:00
|
|
|
_debug "Zone id \"$_zone_id\" will be used."
|
2018-04-02 16:26:50 +00:00
|
|
|
username_encoded="$(printf "%s" "${HE_Username}" | _url_encode)"
|
|
|
|
password_encoded="$(printf "%s" "${HE_Password}" | _url_encode)"
|
|
|
|
body="email=${username_encoded}&pass=${password_encoded}"
|
2017-07-23 03:00:02 +00:00
|
|
|
body="$body&account="
|
|
|
|
body="$body&menu=edit_zone"
|
|
|
|
body="$body&Type=TXT"
|
|
|
|
body="$body&hosted_dns_zoneid=$_zone_id"
|
|
|
|
body="$body&hosted_dns_recordid="
|
|
|
|
body="$body&hosted_dns_editzone=1"
|
|
|
|
body="$body&Priority="
|
|
|
|
body="$body&Name=$_full_domain"
|
|
|
|
body="$body&Content=$_txt_value"
|
|
|
|
body="$body&TTL=300"
|
|
|
|
body="$body&hosted_dns_editrecord=Submit"
|
2017-07-26 18:15:34 +00:00
|
|
|
response="$(_post "$body" "https://dns.he.net/")"
|
2017-07-28 16:33:25 +00:00
|
|
|
exit_code="$?"
|
|
|
|
if [ "$exit_code" -eq 0 ]; then
|
2017-08-29 20:35:11 +00:00
|
|
|
_info "TXT record added successfully."
|
2017-07-28 16:33:25 +00:00
|
|
|
else
|
|
|
|
_err "Couldn't add the TXT record."
|
|
|
|
fi
|
2017-07-23 05:31:55 +00:00
|
|
|
_debug2 response "$response"
|
2017-07-29 12:40:56 +00:00
|
|
|
return "$exit_code"
|
2017-07-12 18:24:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#-- dns_he_rm() - Remove TXT record ------------------------------------
|
|
|
|
# Usage: dns_he_rm _acme-challenge.subdomain.domain.com "XyZ123..."
|
|
|
|
|
|
|
|
dns_he_rm() {
|
|
|
|
_full_domain=$1
|
|
|
|
_txt_value=$2
|
|
|
|
_info "Cleaning up after DNS-01 Hurricane Electric hook"
|
2018-02-12 12:40:24 +00:00
|
|
|
HE_Username="${HE_Username:-$(_readaccountconf_mutable HE_Username)}"
|
|
|
|
HE_Password="${HE_Password:-$(_readaccountconf_mutable HE_Password)}"
|
2017-07-12 18:24:54 +00:00
|
|
|
# fills in the $_zone_id
|
2017-07-26 18:15:34 +00:00
|
|
|
_find_zone "$_full_domain" || return 1
|
2017-07-12 18:24:54 +00:00
|
|
|
_debug "Zone id \"$_zone_id\" will be used."
|
|
|
|
|
|
|
|
# Find the record id to clean
|
2018-04-02 16:26:50 +00:00
|
|
|
username_encoded="$(printf "%s" "${HE_Username}" | _url_encode)"
|
|
|
|
password_encoded="$(printf "%s" "${HE_Password}" | _url_encode)"
|
|
|
|
body="email=${username_encoded}&pass=${password_encoded}"
|
2017-07-23 03:00:02 +00:00
|
|
|
body="$body&hosted_dns_zoneid=$_zone_id"
|
|
|
|
body="$body&menu=edit_zone"
|
|
|
|
body="$body&hosted_dns_editzone="
|
2017-07-12 18:24:54 +00:00
|
|
|
|
2018-02-16 15:16:25 +00:00
|
|
|
response="$(_post "$body" "https://dns.he.net/")"
|
|
|
|
_debug2 "response" "$response"
|
|
|
|
if ! _contains "$response" "$_txt_value"; then
|
|
|
|
_debug "The txt record is not found, just skip"
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
_record_id="$(echo "$response" | tr -d "#" | sed "s/<tr/#<tr/g" | tr -d "\n" | tr "#" "\n" | grep "$_full_domain" | grep '"dns_tr"' | grep "$_txt_value" | cut -d '"' -f 4)"
|
|
|
|
_debug2 _record_id "$_record_id"
|
|
|
|
if [ -z "$_record_id" ]; then
|
|
|
|
_err "Can not find record id"
|
|
|
|
return 1
|
|
|
|
fi
|
2017-07-12 18:24:54 +00:00
|
|
|
# Remove the record
|
2017-07-23 03:00:02 +00:00
|
|
|
body="email=${HE_Username}&pass=${HE_Password}"
|
|
|
|
body="$body&menu=edit_zone"
|
|
|
|
body="$body&hosted_dns_zoneid=$_zone_id"
|
|
|
|
body="$body&hosted_dns_recordid=$_record_id"
|
|
|
|
body="$body&hosted_dns_editzone=1"
|
|
|
|
body="$body&hosted_dns_delrecord=1"
|
|
|
|
body="$body&hosted_dns_delconfirm=delete"
|
2017-07-26 18:15:34 +00:00
|
|
|
_post "$body" "https://dns.he.net/" \
|
2017-07-12 18:24:54 +00:00
|
|
|
| grep '<div id="dns_status" onClick="hideThis(this);">Successfully removed record.</div>' \
|
2017-07-27 16:06:19 +00:00
|
|
|
>/dev/null
|
2017-07-29 12:31:27 +00:00
|
|
|
exit_code="$?"
|
|
|
|
if [ "$exit_code" -eq 0 ]; then
|
2017-08-29 20:35:11 +00:00
|
|
|
_info "Record removed successfully."
|
2017-07-12 18:24:54 +00:00
|
|
|
else
|
2017-07-29 11:52:28 +00:00
|
|
|
_err "Could not clean (remove) up the record. Please go to HE administration interface and clean it by hand."
|
2017-07-29 12:31:27 +00:00
|
|
|
return "$exit_code"
|
2017-07-12 18:24:54 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
########################## PRIVATE FUNCTIONS ###########################
|
|
|
|
|
|
|
|
_find_zone() {
|
|
|
|
_domain="$1"
|
2018-04-02 16:26:50 +00:00
|
|
|
username_encoded="$(printf "%s" "${HE_Username}" | _url_encode)"
|
|
|
|
password_encoded="$(printf "%s" "${HE_Password}" | _url_encode)"
|
|
|
|
body="email=${username_encoded}&pass=${password_encoded}"
|
2018-02-16 15:16:25 +00:00
|
|
|
response="$(_post "$body" "https://dns.he.net/")"
|
|
|
|
_debug2 response "$response"
|
2018-04-02 16:26:50 +00:00
|
|
|
if _contains "$response" '>Incorrect<'; then
|
|
|
|
_err "Unable to login to dns.he.net please check username and password"
|
|
|
|
return 1
|
|
|
|
fi
|
2018-02-16 15:16:25 +00:00
|
|
|
_table="$(echo "$response" | tr -d "#" | sed "s/<table/#<table/g" | tr -d "\n" | tr "#" "\n" | grep 'id="domains_table"')"
|
|
|
|
_debug2 _table "$_table"
|
2018-03-01 13:59:46 +00:00
|
|
|
_matches="$(echo "$_table" | sed "s/<tr/#<tr/g" | tr "#" "\n" | grep 'alt="edit"' | tr -d " " | sed "s/<td/#<td/g" | tr "#" "\n" | grep 'hosted_dns_zoneid')"
|
2018-02-16 15:16:25 +00:00
|
|
|
_debug2 _matches "$_matches"
|
2017-07-27 16:04:53 +00:00
|
|
|
# Zone names and zone IDs are in same order
|
2018-02-16 15:16:25 +00:00
|
|
|
_zone_ids=$(echo "$_matches" | _egrep_o "hosted_dns_zoneid=[0-9]*&" | cut -d = -f 2 | tr -d '&')
|
|
|
|
_zone_names=$(echo "$_matches" | _egrep_o "name=.*onclick" | cut -d '"' -f 2)
|
2017-07-27 16:04:53 +00:00
|
|
|
_debug2 "These are the zones on this HE account:"
|
|
|
|
_debug2 "$_zone_names"
|
|
|
|
_debug2 "And these are their respective IDs:"
|
|
|
|
_debug2 "$_zone_ids"
|
2018-02-16 15:16:25 +00:00
|
|
|
if [ -z "$_zone_names" ] || [ -z "$_zone_ids" ]; then
|
|
|
|
_err "Can not get zone names."
|
|
|
|
return 1
|
|
|
|
fi
|
2017-07-27 16:04:53 +00:00
|
|
|
# Walk through all possible zone names
|
2017-07-12 18:24:54 +00:00
|
|
|
_strip_counter=1
|
2017-07-26 18:15:34 +00:00
|
|
|
while true; do
|
|
|
|
_attempted_zone=$(echo "$_domain" | cut -d . -f ${_strip_counter}-)
|
2017-07-12 18:24:54 +00:00
|
|
|
|
|
|
|
# All possible zone names have been tried
|
2017-07-26 18:15:34 +00:00
|
|
|
if [ -z "$_attempted_zone" ]; then
|
2017-07-12 18:24:54 +00:00
|
|
|
_err "No zone for domain \"$_domain\" found."
|
2017-07-27 16:04:53 +00:00
|
|
|
return 1
|
2017-07-12 18:24:54 +00:00
|
|
|
fi
|
|
|
|
|
2017-07-27 16:04:53 +00:00
|
|
|
_debug "Looking for zone \"${_attempted_zone}\""
|
2017-07-29 12:25:07 +00:00
|
|
|
|
2018-03-25 12:32:51 +00:00
|
|
|
line_num="$(echo "$_zone_names" | grep -n "^$_attempted_zone" | cut -d : -f 1)"
|
2018-02-16 15:16:25 +00:00
|
|
|
|
|
|
|
if [ "$line_num" ]; then
|
|
|
|
_zone_id=$(echo "$_zone_ids" | sed -n "${line_num}p")
|
2017-07-29 11:52:28 +00:00
|
|
|
_debug "Found relevant zone \"$_attempted_zone\" with id \"$_zone_id\" - will be used for domain \"$_domain\"."
|
2017-07-27 16:04:53 +00:00
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
2017-07-29 11:52:28 +00:00
|
|
|
_debug "Zone \"$_attempted_zone\" doesn't exist, let's try a less specific zone."
|
2017-07-27 16:44:55 +00:00
|
|
|
_strip_counter=$(_math "$_strip_counter" + 1)
|
2017-07-12 18:24:54 +00:00
|
|
|
done
|
2017-07-27 16:04:53 +00:00
|
|
|
}
|
2017-07-12 18:24:54 +00:00
|
|
|
# vim: et:ts=2:sw=2:
|