diff --git a/dnsapi/dns_he.sh b/dnsapi/dns_he.sh deleted file mode 100755 index d1744dc4..00000000 --- a/dnsapi/dns_he.sh +++ /dev/null @@ -1,158 +0,0 @@ -#!/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 -# 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" - - HE_Username="${HE_Username:-$(_readaccountconf_mutable HE_Username)}" - HE_Password="${HE_Password:-$(_readaccountconf_mutable HE_Password)}" - if [ -z "$HE_Username" ] || [ -z "$HE_Password" ]; then - HE_Username= - HE_Password= - _err "No auth details provided. Please set user credentials using the \$HE_Username and \$HE_Password envoronment variables." - return 1 - fi - _saveaccountconf_mutable HE_Username "$HE_Username" - _saveaccountconf_mutable HE_Password "$HE_Password" - - # Fills in the $_zone_id - _find_zone "$_full_domain" || return 1 - _debug "Zone id \"$_zone_id\" will be used." - - body="email=${HE_Username}&pass=${HE_Password}" - 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" - response="$(_post "$body" "https://dns.he.net/")" - exit_code="$?" - if [ "$exit_code" -eq 0 ]; then - _info "TXT record added successfully." - else - _err "Couldn't add the TXT record." - fi - _debug2 response "$response" - return "$exit_code" -} - -#-- 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" - HE_Username="${HE_Username:-$(_readaccountconf_mutable HE_Username)}" - HE_Password="${HE_Password:-$(_readaccountconf_mutable HE_Password)}" - # fills in the $_zone_id - _find_zone "$_full_domain" || return 1 - _debug "Zone id \"$_zone_id\" will be used." - - # Find the record id to clean - body="email=${HE_Username}&pass=${HE_Password}" - body="$body&hosted_dns_zoneid=$_zone_id" - body="$body&menu=edit_zone" - body="$body&hosted_dns_editzone=" - - 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/Successfully removed record.' \ - >/dev/null - exit_code="$?" - if [ "$exit_code" -eq 0 ]; then - _info "Record removed successfully." - else - _err "Could not clean (remove) up the record. Please go to HE administration interface and clean it by hand." - return "$exit_code" - fi -} - -########################## PRIVATE FUNCTIONS ########################### - -_find_zone() { - _domain="$1" - body="email=${HE_Username}&pass=${HE_Password}" - response="$(_post "$body" "https://dns.he.net/")" - _debug2 response "$response" - _table="$(echo "$response" | tr -d "#" | sed "s/