2019-06-11 16:37:39 +00:00
#!/usr/bin/env sh
#
2019-06-11 16:59:02 +00:00
# REGRU_API_Username="test"
2019-06-11 16:37:39 +00:00
#
2019-06-11 16:59:02 +00:00
# REGRU_API_Password="test"
#
2019-06-11 16:37:39 +00:00
2019-06-11 16:59:02 +00:00
REGRU_API_URL = "https://api.reg.ru/api/regru2"
2019-06-11 16:37:39 +00:00
######## Public functions #####################
2019-06-11 16:59:02 +00:00
dns_regru_add( ) {
2019-06-11 16:37:39 +00:00
fulldomain = $1
txtvalue = $2
2019-06-11 16:59:02 +00:00
REGRU_API_Username = " ${ REGRU_API_Username :- $( _readaccountconf_mutable REGRU_API_Username) } "
REGRU_API_Password = " ${ REGRU_API_Password :- $( _readaccountconf_mutable REGRU_API_Password) } "
if [ -z " $REGRU_API_Username " ] || [ -z " $REGRU_API_Password " ] ; then
REGRU_API_Username = ""
REGRU_API_Password = ""
_err "You don't specify regru password or username."
2019-06-11 16:37:39 +00:00
return 1
fi
2019-06-11 16:59:02 +00:00
_saveaccountconf_mutable REGRU_API_Username " $REGRU_API_Username "
_saveaccountconf_mutable REGRU_API_Password " $REGRU_API_Password "
2019-06-11 16:37:39 +00:00
2020-07-02 08:23:46 +00:00
_debug "First detect the root zone"
if ! _get_root " $fulldomain " ; then
_err "invalid domain"
return 1
fi
_debug _domain " $_domain "
2019-06-11 16:59:02 +00:00
_info " Adding TXT record to ${ fulldomain } "
2020-07-02 08:23:46 +00:00
_regru_rest POST "zone/add_txt" " input_data={%22username%22:%22 ${ REGRU_API_Username } %22,%22password%22:%22 ${ REGRU_API_Password } %22,%22domains%22:[{%22dname%22:%22 ${ _domain } %22}],%22subdomain%22:%22_acme-challenge%22,%22text%22:%22 ${ txtvalue } %22,%22output_content_type%22:%22plain%22}&input_format=json "
2019-06-11 16:37:39 +00:00
2020-07-02 08:23:46 +00:00
if ! _contains " ${ response } " 'error' ; then
2019-06-11 16:59:02 +00:00
return 0
2019-06-11 16:37:39 +00:00
fi
2019-06-11 16:59:02 +00:00
_err "Could not create resource record, check logs"
_err " ${ response } "
2019-06-11 16:37:39 +00:00
return 1
}
2019-06-11 16:59:02 +00:00
dns_regru_rm( ) {
2019-06-11 16:37:39 +00:00
fulldomain = $1
txtvalue = $2
2019-06-11 16:59:02 +00:00
REGRU_API_Username = " ${ REGRU_API_Username :- $( _readaccountconf_mutable REGRU_API_Username) } "
REGRU_API_Password = " ${ REGRU_API_Password :- $( _readaccountconf_mutable REGRU_API_Password) } "
if [ -z " $REGRU_API_Username " ] || [ -z " $REGRU_API_Password " ] ; then
REGRU_API_Username = ""
REGRU_API_Password = ""
_err "You don't specify regru password or username."
2019-06-11 16:37:39 +00:00
return 1
fi
2020-07-02 08:23:46 +00:00
_debug "First detect the root zone"
if ! _get_root " $fulldomain " ; then
_err "invalid domain"
return 1
fi
_debug _domain " $_domain "
2019-06-11 16:59:02 +00:00
_info " Deleting resource record $fulldomain "
2020-07-02 08:23:46 +00:00
_regru_rest POST "zone/remove_record" " input_data={%22username%22:%22 ${ REGRU_API_Username } %22,%22password%22:%22 ${ REGRU_API_Password } %22,%22domains%22:[{%22dname%22:%22 ${ _domain } %22}],%22subdomain%22:%22_acme-challenge%22,%22content%22:%22 ${ txtvalue } %22,%22record_type%22:%22TXT%22,%22output_content_type%22:%22plain%22}&input_format=json "
2019-06-11 16:37:39 +00:00
2020-07-02 08:23:46 +00:00
if ! _contains " ${ response } " 'error' ; then
2019-06-11 16:59:02 +00:00
return 0
2019-06-11 16:37:39 +00:00
fi
2019-06-11 16:59:02 +00:00
_err "Could not delete resource record, check logs"
_err " ${ response } "
2019-06-11 16:37:39 +00:00
return 1
}
2020-07-02 08:23:46 +00:00
#################### Private functions below ##################################
#_acme-challenge.www.domain.com
#returns
# _domain=domain.com
_get_root( ) {
domain = $1
_regru_rest POST "service/get_list" " username= ${ REGRU_API_Username } &password= ${ REGRU_API_Password } &output_format=xml&servtype=domain "
domains_list = $( echo " ${ response } " | grep dname | sed -r "s/.*dname=\"([^\"]+)\".*/\\1/g" )
2020-07-07 12:02:48 +00:00
for ITEM in ${ domains_list } ; do
2020-07-02 08:23:46 +00:00
case " ${ domain } " in
*${ ITEM } *)
2020-07-07 11:58:02 +00:00
_domain = ${ ITEM }
_debug _domain " ${ _domain } "
return 0
; ;
2020-07-02 08:23:46 +00:00
esac
done
return 1
}
#returns
# response
_regru_rest( ) {
m = $1
ep = " $2 "
data = " $3 "
_debug " $ep "
export _H1 = "Content-Type: application/x-www-form-urlencoded"
if [ " $m " != "GET" ] ; then
_debug data " $data "
response = " $( _post " $data " " $REGRU_API_URL / $ep " "" " $m " ) "
else
2020-07-02 08:59:24 +00:00
response = " $( _get " $REGRU_API_URL / $ep ? $data " ) "
2020-07-02 08:23:46 +00:00
fi
2020-07-02 08:59:24 +00:00
_debug response " ${ response } "
2020-07-02 08:23:46 +00:00
return 0
2020-07-02 09:18:37 +00:00
}