2019-02-17 22:20:17 +00:00
#!/usr/bin/env sh
# -*- mode: sh; tab-width: 2; indent-tabs-mode: s; coding: utf-8 -*-
# one.com ui wrapper for acme.sh
# Author: github: @diseq
# Created: 2019-02-17
2019-05-20 15:40:43 +00:00
# Fixed by: @der-berni
2020-04-07 17:25:39 +00:00
# Modified: 2020-04-07
2020-08-17 14:18:20 +00:00
#
2020-04-09 10:17:08 +00:00
# Use ONECOM_KeepCnameProxy to keep the CNAME DNS record
# export ONECOM_KeepCnameProxy="1"
2020-08-17 14:18:20 +00:00
#
2019-05-23 07:39:54 +00:00
# export ONECOM_User="username"
# export ONECOM_Password="password"
2019-02-17 22:20:17 +00:00
#
# Usage:
# acme.sh --issue --dns dns_one -d example.com
#
# only single domain supported atm
dns_one_add( ) {
2019-05-20 15:40:43 +00:00
fulldomain = $1
2019-02-17 22:20:17 +00:00
txtvalue = $2
2019-05-31 06:26:48 +00:00
2019-05-24 07:44:13 +00:00
if ! _dns_one_login; then
_err "login failed"
return 1
fi
_debug "detect the root domain"
2019-05-20 15:40:43 +00:00
if ! _get_root " $fulldomain " ; then
2019-05-24 07:44:13 +00:00
_err "root domain not found"
2019-05-20 15:40:43 +00:00
return 1
fi
2020-04-09 10:17:08 +00:00
2020-04-07 17:25:39 +00:00
subdomain = " ${ _sub_domain } "
maindomain = ${ _domain }
2020-04-09 10:17:08 +00:00
2020-04-07 17:25:39 +00:00
useProxy = 0
if [ " ${ _sub_domain } " = "_acme-challenge" ] ; then
subdomain = " proxy ${ _sub_domain } "
useProxy = 1
fi
2020-04-09 10:17:08 +00:00
2020-04-07 17:25:39 +00:00
_debug subdomain " $subdomain "
_debug maindomain " $maindomain "
2020-04-09 10:17:08 +00:00
2020-04-07 17:25:39 +00:00
if [ $useProxy -eq 1 ] ; then
#Check if the CNAME exists
_dns_one_getrecord "CNAME" " $_sub_domain " " $subdomain . $maindomain "
if [ -z " $id " ] ; then
_info " $( __red " Add CNAME Proxy record: ' $( __green " \" $_sub_domain \" => \" $subdomain . $maindomain \" " ) ' " ) "
_dns_one_addrecord "CNAME" " $_sub_domain " " $subdomain . $maindomain "
2020-04-09 10:17:08 +00:00
2020-04-07 17:25:39 +00:00
_info "Not valid yet, let's wait 1 hour to take effect."
_sleep 3600
fi
fi
2020-04-09 10:17:08 +00:00
2020-04-07 17:25:39 +00:00
#Check if the TXT exists
_dns_one_getrecord "TXT" " $subdomain " " $txtvalue "
2020-04-09 10:17:08 +00:00
if [ -n " $id " ] ; then
2020-04-07 17:25:39 +00:00
_info " $( __green "Txt record with the same value found. Skip adding." ) "
return 0
fi
2020-04-09 10:17:08 +00:00
2020-04-07 17:25:39 +00:00
_dns_one_addrecord "TXT" " $subdomain " " $txtvalue "
2019-02-17 22:20:17 +00:00
if [ -z " $id " ] ; then
2020-04-09 10:17:08 +00:00
_err "Add TXT record error."
2019-02-17 22:20:17 +00:00
return 1
else
2020-04-07 17:25:39 +00:00
_info " $( __green " Added, OK ( $id ) " ) "
2019-02-17 22:20:17 +00:00
return 0
fi
}
dns_one_rm( ) {
2019-05-20 15:40:43 +00:00
fulldomain = $1
2019-02-17 22:20:17 +00:00
txtvalue = $2
2019-05-31 06:26:48 +00:00
2019-05-24 07:44:13 +00:00
if ! _dns_one_login; then
_err "login failed"
return 1
fi
_debug "detect the root domain"
2019-05-20 15:40:43 +00:00
if ! _get_root " $fulldomain " ; then
2019-05-24 07:44:13 +00:00
_err "root domain not found"
2019-05-20 15:40:43 +00:00
return 1
fi
2019-05-31 06:26:48 +00:00
2020-04-07 17:25:39 +00:00
subdomain = " ${ _sub_domain } "
maindomain = ${ _domain }
2020-04-09 10:17:08 +00:00
2020-04-07 17:25:39 +00:00
useProxy = 0
if [ " ${ _sub_domain } " = "_acme-challenge" ] ; then
subdomain = " proxy ${ _sub_domain } "
useProxy = 1
fi
2020-04-09 10:17:08 +00:00
2020-04-07 17:25:39 +00:00
_debug subdomain " $subdomain "
_debug maindomain " $maindomain "
if [ $useProxy -eq 1 ] ; then
2020-04-09 10:17:08 +00:00
if [ " $ONECOM_KeepCnameProxy " = "1" ] ; then
_info " $( __red " Keeping CNAME Proxy record: ' $( __green " \" $_sub_domain \" => \" $subdomain . $maindomain \" " ) ' " ) "
else
#Check if the CNAME exists
_dns_one_getrecord "CNAME" " $_sub_domain " " $subdomain . $maindomain "
if [ -n " $id " ] ; then
_info " $( __red " Removing CNAME Proxy record: ' $( __green " \" $_sub_domain \" => \" $subdomain . $maindomain \" " ) ' " ) "
_dns_one_delrecord " $id "
2020-04-07 17:25:39 +00:00
fi
2020-04-09 10:17:08 +00:00
fi
2020-04-07 17:25:39 +00:00
fi
2020-04-09 10:17:08 +00:00
2020-04-07 17:25:39 +00:00
#Check if the TXT exists
_dns_one_getrecord "TXT" " $subdomain " " $txtvalue "
2019-02-17 22:20:17 +00:00
if [ -z " $id " ] ; then
_err "Txt record not found."
return 1
fi
2020-04-09 10:17:08 +00:00
2019-02-17 22:20:17 +00:00
# delete entry
2020-04-07 17:25:39 +00:00
if _dns_one_delrecord " $id " ; then
2020-04-09 10:17:08 +00:00
_info " $( __green Removed, OK) "
return 0
2019-02-20 10:54:48 +00:00
else
2020-04-09 10:17:08 +00:00
_err "Removing txt record error."
return 1
2019-02-17 22:20:17 +00:00
fi
2019-02-20 08:44:25 +00:00
}
2019-05-20 15:40:43 +00:00
#_acme-challenge.www.domain.com
#returns
# _sub_domain=_acme-challenge.www
# _domain=domain.com
_get_root( ) {
2019-05-31 06:55:21 +00:00
domain = " $1 "
2019-05-20 15:40:43 +00:00
i = 2
p = 1
while true; do
h = $( printf "%s" " $domain " | cut -d . -f $i -100)
2019-05-31 06:55:21 +00:00
2019-05-20 15:40:43 +00:00
if [ -z " $h " ] ; then
#not valid
return 1
fi
2019-05-31 06:55:21 +00:00
2019-05-24 07:44:13 +00:00
response = " $( _get " https://www.one.com/admin/api/domains/ $h /dns/custom_records " ) "
2019-05-31 06:55:21 +00:00
2019-05-25 15:35:40 +00:00
if ! _contains " $response " "CRMRST_000302" ; then
2019-05-20 15:40:43 +00:00
_sub_domain = $( printf "%s" " $domain " | cut -d . -f 1-$p )
_domain = " $h "
return 0
fi
p = $i
i = $( _math " $i " + 1)
done
_err "Unable to parse this domain"
return 1
}
2019-05-24 07:44:13 +00:00
_dns_one_login( ) {
# get credentials
2020-04-07 17:25:39 +00:00
ONECOM_KeepCnameProxy = " ${ ONECOM_KeepCnameProxy :- $( _readaccountconf_mutable ONECOM_KeepCnameProxy) } "
2020-04-09 10:17:08 +00:00
ONECOM_KeepCnameProxy = " ${ ONECOM_KeepCnameProxy :- 0 } "
2019-05-24 07:44:13 +00:00
ONECOM_User = " ${ ONECOM_User :- $( _readaccountconf_mutable ONECOM_User) } "
ONECOM_Password = " ${ ONECOM_Password :- $( _readaccountconf_mutable ONECOM_Password) } "
if [ -z " $ONECOM_User " ] || [ -z " $ONECOM_Password " ] ; then
ONECOM_User = ""
ONECOM_Password = ""
_err "You didn't specify a one.com username and password yet."
_err "Please create the key and try again."
return 1
fi
#save the api key and email to the account conf file.
2020-04-09 10:17:08 +00:00
_saveaccountconf_mutable ONECOM_KeepCnameProxy " $ONECOM_KeepCnameProxy "
2019-05-24 07:44:13 +00:00
_saveaccountconf_mutable ONECOM_User " $ONECOM_User "
_saveaccountconf_mutable ONECOM_Password " $ONECOM_Password "
# Login with user and password
postdata = "loginDomain=true"
postdata = " $postdata &displayUsername= $ONECOM_User "
postdata = " $postdata &username= $ONECOM_User "
postdata = " $postdata &targetDomain= "
postdata = " $postdata &password1= $ONECOM_Password "
postdata = " $postdata &loginTarget= "
#_debug postdata "$postdata"
2019-05-31 06:55:21 +00:00
2019-05-24 07:44:13 +00:00
response = " $( _post " $postdata " "https://www.one.com/admin/login.do" "" "POST" "application/x-www-form-urlencoded" ) "
#_debug response "$response"
2019-05-31 06:55:21 +00:00
2019-05-24 07:44:13 +00:00
# Get SessionID
JSESSIONID = " $( grep "OneSIDCrmAdmin" " $HTTP_HEADER " | grep "^[Ss]et-[Cc]ookie:" | _head_n 1 | _egrep_o 'OneSIDCrmAdmin=[^;]*;' | tr -d ';' ) "
_debug jsessionid " $JSESSIONID "
2019-05-31 06:55:21 +00:00
2019-05-24 07:44:13 +00:00
if [ -z " $JSESSIONID " ] ; then
_err "error sessionid cookie not found"
return 1
fi
2019-05-31 06:55:21 +00:00
2019-05-24 07:44:13 +00:00
export _H1 = " Cookie: ${ JSESSIONID } "
2019-05-31 06:55:21 +00:00
2019-05-24 07:44:13 +00:00
return 0
2019-05-31 06:26:48 +00:00
}
2020-04-07 17:25:39 +00:00
_dns_one_getrecord( ) {
type = " $1 "
name = " $2 "
value = " $3 "
if [ -z " $type " ] ; then
2020-04-09 10:17:08 +00:00
type = "TXT"
2020-04-07 17:25:39 +00:00
fi
if [ -z " $name " ] ; then
2020-04-09 10:17:08 +00:00
_err "Record name is empty."
return 1
2020-04-07 17:25:39 +00:00
fi
2020-04-09 10:17:08 +00:00
2020-04-07 17:25:39 +00:00
response = " $( _get " https://www.one.com/admin/api/domains/ $maindomain /dns/custom_records " ) "
response = " $( echo " $response " | _normalizeJson) "
_debug response " $response "
2020-04-09 10:17:08 +00:00
2020-04-07 17:25:39 +00:00
if [ -z " ${ value } " ] ; then
id = $( printf -- "%s" " $response " | sed -n " s/.*{\"type\":\"dns_custom_records\",\"id\":\"\([^\"]*\)\",\"attributes\":{\"prefix\":\" ${ name } \",\"type\":\" ${ type } \",\"content\":\"[^\"]*\",\"priority\":0,\"ttl\":600}.*/\1/p " )
response = $( printf -- "%s" " $response " | sed -n " s/.*{\"type\":\"dns_custom_records\",\"id\":\"[^\"]*\",\"attributes\":{\"prefix\":\" ${ name } \",\"type\":\" ${ type } \",\"content\":\"\([^\"]*\)\",\"priority\":0,\"ttl\":600}.*/\1/p " )
else
id = $( printf -- "%s" " $response " | sed -n " s/.*{\"type\":\"dns_custom_records\",\"id\":\"\([^\"]*\)\",\"attributes\":{\"prefix\":\" ${ name } \",\"type\":\" ${ type } \",\"content\":\" ${ value } \",\"priority\":0,\"ttl\":600}.*/\1/p " )
fi
if [ -z " $id " ] ; then
return 1
fi
return 0
}
_dns_one_addrecord( ) {
type = " $1 "
name = " $2 "
value = " $3 "
if [ -z " $type " ] ; then
2020-04-09 10:17:08 +00:00
type = "TXT"
2020-04-07 17:25:39 +00:00
fi
if [ -z " $name " ] ; then
2020-04-09 10:17:08 +00:00
_err "Record name is empty."
return 1
2020-04-07 17:25:39 +00:00
fi
2020-04-09 10:17:08 +00:00
2020-04-07 17:25:39 +00:00
postdata = " {\"type\":\"dns_custom_records\",\"attributes\":{\"priority\":0,\"ttl\":600,\"type\":\" ${ type } \",\"prefix\":\" ${ name } \",\"content\":\" ${ value } \"}} "
_debug postdata " $postdata "
response = " $( _post " $postdata " " https://www.one.com/admin/api/domains/ $maindomain /dns/custom_records " "" "POST" "application/json" ) "
response = " $( echo " $response " | _normalizeJson) "
_debug response " $response "
id = $( echo " $response " | sed -n " s/{\"result\":{\"data\":{\"type\":\"dns_custom_records\",\"id\":\"\([^\"]*\)\",\"attributes\":{\"prefix\":\" $subdomain \",\"type\":\"TXT\",\"content\":\" $txtvalue \",\"priority\":0,\"ttl\":600}}},\"metadata\":null}/\1/p " )
if [ -z " $id " ] ; then
return 1
else
return 0
fi
}
_dns_one_delrecord( ) {
id = " $1 "
if [ -z " $id " ] ; then
2020-04-09 10:17:08 +00:00
return 1
2020-04-07 17:25:39 +00:00
fi
2020-04-09 10:17:08 +00:00
2020-04-07 17:25:39 +00:00
response = " $( _post "" " https://www.one.com/admin/api/domains/ $maindomain /dns/custom_records/ $id " "" "DELETE" "application/json" ) "
response = " $( echo " $response " | _normalizeJson) "
_debug response " $response "
if [ " $response " = '{"result":null,"metadata":null}' ] ; then
2020-04-09 10:17:08 +00:00
return 0
2020-04-07 17:25:39 +00:00
else
2020-04-09 10:17:08 +00:00
return 1
2020-04-07 17:25:39 +00:00
fi
}