mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-12-22 05:01:40 +00:00
Make the Loopia API endpoint configurable
Loopia provides hosting in several countries. Each hosting location has it's own API endpoint, such as "https://api.loopia.<TLD>/RPCSERV", where <TLD> is one of: com, no, rs, se. The current LOOPIA_Api variable is hard-coded to ".se". This prevents using the Loopia DNS API on other hosting locations. This commit makes the LOOPIA_Api variable configurable and it falls back to ".se" TLD if LOOPIA_Api is not set. References: - https://www.loopia.com/api/authentication/ - https://www.loopia.no/api/authentication/ - https://www.loopia.rs/api/authentication/ - https://www.loopia.se/api/authentication/
This commit is contained in:
parent
85be2b85fd
commit
0daa225e26
@ -4,8 +4,10 @@
|
|||||||
#LOOPIA_User="username"
|
#LOOPIA_User="username"
|
||||||
#
|
#
|
||||||
#LOOPIA_Password="password"
|
#LOOPIA_Password="password"
|
||||||
|
#
|
||||||
|
#LOOPIA_Api="https://api.loopia.<TLD>/RPCSERV"
|
||||||
|
|
||||||
LOOPIA_Api="https://api.loopia.se/RPCSERV"
|
LOOPIA_Api_Default="https://api.loopia.se/RPCSERV"
|
||||||
|
|
||||||
######## Public functions #####################
|
######## Public functions #####################
|
||||||
|
|
||||||
@ -81,9 +83,14 @@ dns_loopia_rm() {
|
|||||||
#################### Private functions below ##################################
|
#################### Private functions below ##################################
|
||||||
|
|
||||||
_loopia_load_config() {
|
_loopia_load_config() {
|
||||||
|
LOOPIA_Api="${LOOPIA_Api:-$(_readaccountconf_mutable LOOPIA_Api)}"
|
||||||
LOOPIA_User="${LOOPIA_User:-$(_readaccountconf_mutable LOOPIA_User)}"
|
LOOPIA_User="${LOOPIA_User:-$(_readaccountconf_mutable LOOPIA_User)}"
|
||||||
LOOPIA_Password="${LOOPIA_Password:-$(_readaccountconf_mutable LOOPIA_Password)}"
|
LOOPIA_Password="${LOOPIA_Password:-$(_readaccountconf_mutable LOOPIA_Password)}"
|
||||||
|
|
||||||
|
if [ -z "$LOOPIA_Api" ]; then
|
||||||
|
LOOPIA_Api="$LOOPIA_Api_Default"
|
||||||
|
fi
|
||||||
|
|
||||||
if [ -z "$LOOPIA_User" ] || [ -z "$LOOPIA_Password" ]; then
|
if [ -z "$LOOPIA_User" ] || [ -z "$LOOPIA_Password" ]; then
|
||||||
LOOPIA_User=""
|
LOOPIA_User=""
|
||||||
LOOPIA_Password=""
|
LOOPIA_Password=""
|
||||||
@ -98,6 +105,9 @@ _loopia_load_config() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
_loopia_save_config() {
|
_loopia_save_config() {
|
||||||
|
if [ "$LOOPIA_Api" != "$LOOPIA_Api_Default" ]; then
|
||||||
|
_saveaccountconf_mutable LOOPIA_Api "$LOOPIA_Api"
|
||||||
|
fi
|
||||||
_saveaccountconf_mutable LOOPIA_User "$LOOPIA_User"
|
_saveaccountconf_mutable LOOPIA_User "$LOOPIA_User"
|
||||||
_saveaccountconf_mutable LOOPIA_Password "$LOOPIA_Password"
|
_saveaccountconf_mutable LOOPIA_Password "$LOOPIA_Password"
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user