Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ruanhaishen
Acme.Sh
Commits
4346139d
Unverified
Commit
4346139d
authored
Jan 09, 2022
by
Bodenhaltung
Committed by
GitHub
Jan 09, 2022
Browse files
Add dnsHome.de API (#3823)
Add dnsHome.de API
parent
c959d640
Changes
1
Show whitespace changes
Inline
Side-by-side
dnsapi/dns_dnshome.sh
0 → 100755
View file @
4346139d
#!/usr/bin/env sh
# dnsHome.de API for acme.sh
#
# This Script adds the necessary TXT record to a Subdomain
#
# Author dnsHome.de (https://github.com/dnsHome-de)
#
# Report Bugs to https://github.com/acmesh-official/acme.sh/issues/3819
#
# export DNSHOME_Subdomain=""
# export DNSHOME_SubdomainPassword=""
# Usage: add subdomain.ddnsdomain.tld "XKrxpRBosdIKFzxW_CT3KLZNf6q0HG9i01zxXp5CPBs"
# Used to add txt record
dns_dnshome_add
()
{
txtvalue
=
$2
DNSHOME_Subdomain
=
"
${
DNSHOME_Subdomain
:-
$(
_readdomainconf DNSHOME_Subdomain
)
}
"
DNSHOME_SubdomainPassword
=
"
${
DNSHOME_SubdomainPassword
:-
$(
_readdomainconf DNSHOME_SubdomainPassword
)
}
"
if
[
-z
"
$DNSHOME_Subdomain
"
]
||
[
-z
"
$DNSHOME_SubdomainPassword
"
]
;
then
DNSHOME_Subdomain
=
""
DNSHOME_SubdomainPassword
=
""
_err
"Please specify/export your dnsHome.de Subdomain and Password"
return
1
fi
#save the credentials to the account conf file.
_savedomainconf DNSHOME_Subdomain
"
$DNSHOME_Subdomain
"
_savedomainconf DNSHOME_SubdomainPassword
"
$DNSHOME_SubdomainPassword
"
DNSHOME_Api
=
"https://
$DNSHOME_Subdomain
:
$DNSHOME_SubdomainPassword
@www.dnshome.de/dyndns.php"
_DNSHOME_rest POST
"acme=add&txt=
$txtvalue
"
if
!
echo
"
$response
"
|
grep
'successfully'
>
/dev/null
;
then
_err
"Error"
_err
"
$response
"
return
1
fi
return
0
}
# Usage: txtvalue
# Used to remove the txt record after validation
dns_dnshome_rm
()
{
txtvalue
=
$2
DNSHOME_Subdomain
=
"
${
DNSHOME_Subdomain
:-
$(
_readdomainconf DNSHOME_Subdomain
)
}
"
DNSHOME_SubdomainPassword
=
"
${
DNSHOME_SubdomainPassword
:-
$(
_readdomainconf DNSHOME_SubdomainPassword
)
}
"
DNSHOME_Api
=
"https://
$DNSHOME_Subdomain
:
$DNSHOME_SubdomainPassword
@www.dnshome.de/dyndns.php"
if
[
-z
"
$DNSHOME_Subdomain
"
]
||
[
-z
"
$DNSHOME_SubdomainPassword
"
]
;
then
DNSHOME_Subdomain
=
""
DNSHOME_SubdomainPassword
=
""
_err
"Please specify/export your dnsHome.de Subdomain and Password"
return
1
fi
_DNSHOME_rest POST
"acme=rm&txt=
$txtvalue
"
if
!
echo
"
$response
"
|
grep
'successfully'
>
/dev/null
;
then
_err
"Error"
_err
"
$response
"
return
1
fi
return
0
}
#################### Private functions below ##################################
_DNSHOME_rest
()
{
method
=
$1
data
=
"
$2
"
_debug
"
$data
"
_debug data
"
$data
"
response
=
"
$(
_post
"
$data
"
"
$DNSHOME_Api
"
""
"
$method
"
)
"
if
[
"
$?
"
!=
"0"
]
;
then
_err
"error
$data
"
return
1
fi
_debug2 response
"
$response
"
return
0
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment