| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158 | 
							- #!/usr/bin/env sh
 
- NS1_Api="https://api.nsone.net/v1"
 
- dns_nsone_add() {
 
-   fulldomain=$1
 
-   txtvalue=$2
 
-   if [ -z "$NS1_Key" ]; then
 
-     NS1_Key=""
 
-     _err "You didn't specify nsone dns api key yet."
 
-     _err "Please create you key and try again."
 
-     return 1
 
-   fi
 
-   
 
-   _saveaccountconf NS1_Key "$NS1_Key"
 
-   _debug "First detect the root zone"
 
-   if ! _get_root "$fulldomain"; then
 
-     _err "invalid domain"
 
-     return 1
 
-   fi
 
-   _debug _sub_domain "$_sub_domain"
 
-   _debug _domain "$_domain"
 
-   _debug "Getting txt records"
 
-   _nsone_rest GET "zones/${_domain}"
 
-   if ! _contains "$response" "\"records\":"; then
 
-     _err "Error"
 
-     return 1
 
-   fi
 
-   count=$(printf "%s\n" "$response" | _egrep_o "\"domain\":\"$fulldomain\",[^{]*\"type\":\"TXT\"" | wc -l | tr -d " ")
 
-   _debug count "$count"
 
-   if [ "$count" = "0" ]; then
 
-     _info "Adding record"
 
-     if _nsone_rest PUT "zones/$_domain/$fulldomain/TXT" "{\"answers\":[{\"answer\":[\"$txtvalue\"]}],\"type\":\"TXT\",\"domain\":\"$fulldomain\",\"zone\":\"$_domain\"}"; then
 
-       if _contains "$response" "$fulldomain"; then
 
-         _info "Added"
 
-         
 
-         return 0
 
-       else
 
-         _err "Add txt record error."
 
-         return 1
 
-       fi
 
-     fi
 
-     _err "Add txt record error."
 
-   else
 
-     _info "Updating record"
 
-     record_id=$(printf "%s\n" "$response" | _egrep_o "\"domain\":\"$fulldomain.\",[^{]*\"type\":\"TXT\",\"id\":\"[^,]*\"" | _head_n 1 | cut -d: -f7 | cut -d, -f1)
 
-     _debug "record_id" "$record_id"
 
-     _nsone_rest POST "zones/$_domain/$fulldomain/TXT" "{\"answers\": [{\"answer\": [\"$txtvalue\"]}],\"type\": \"TXT\",\"domain\":\"$fulldomain\",\"zone\": \"$_domain\"}"
 
-     if [ "$?" = "0" ] && _contains "$response" "$fulldomain"; then
 
-       _info "Updated!"
 
-       
 
-       return 0
 
-     fi
 
-     _err "Update error"
 
-     return 1
 
-   fi
 
- }
 
- dns_nsone_rm() {
 
-   fulldomain=$1
 
-   txtvalue=$2
 
-   _debug "First detect the root zone"
 
-   if ! _get_root "$fulldomain"; then
 
-     _err "invalid domain"
 
-     return 1
 
-   fi
 
-   _debug _sub_domain "$_sub_domain"
 
-   _debug _domain "$_domain"
 
-   _debug "Getting txt records"
 
-   _nsone_rest GET "zones/${_domain}/$fulldomain/TXT"
 
-   count=$(printf "%s\n" "$response" | _egrep_o "\"domain\":\"$fulldomain\",.*\"type\":\"TXT\"" | wc -l | tr -d " ")
 
-   _debug count "$count"
 
-   if [ "$count" = "0" ]; then
 
-     _info "Don't need to remove."
 
-   else
 
-     if ! _nsone_rest DELETE "zones/${_domain}/$fulldomain/TXT"; then
 
-       _err "Delete record error."
 
-       return 1
 
-     fi
 
-     _contains "$response" ""
 
-   fi
 
- }
 
- _get_root() {
 
-   domain=$1
 
-   i=2
 
-   p=1
 
-   if ! _nsone_rest GET "zones"; then
 
-     return 1
 
-   fi
 
-   while true; do
 
-     h=$(printf "%s" "$domain" | cut -d . -f $i-100)
 
-     _debug h "$h"
 
-     if [ -z "$h" ]; then
 
-       
 
-       return 1
 
-     fi
 
-     if _contains "$response" "\"zone\":\"$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
 
- }
 
- _nsone_rest() {
 
-   m=$1
 
-   ep="$2"
 
-   data="$3"
 
-   _debug "$ep"
 
-   export _H1="Accept: application/json"
 
-   export _H2="X-NSONE-Key: $NS1_Key"
 
-   if [ "$m" != "GET" ]; then
 
-     _debug data "$data"
 
-     response="$(_post "$data" "$NS1_Api/$ep" "" "$m")"
 
-   else
 
-     response="$(_get "$NS1_Api/$ep")"
 
-   fi
 
-   if [ "$?" != "0" ]; then
 
-     _err "error $ep"
 
-     return 1
 
-   fi
 
-   _debug2 response "$response"
 
-   return 0
 
- }
 
 
  |