Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
Acme.Sh
Commits
2961a90e
Unverified
Commit
2961a90e
authored
Jul 05, 2023
by
Martin Arndt
Committed by
GitHub
Jul 05, 2023
Browse files
Make ShellCheck & ShellFormat happy
parent
db8a2d0c
Changes
1
Hide whitespace changes
Inline
Side-by-side
dnsapi/dns_artfiles.sh
View file @
2961a90e
...
@@ -24,8 +24,7 @@ AF_URL_DOMAINS=${AF_URL_DCP}'domain/get_domains.html'
...
@@ -24,8 +24,7 @@ AF_URL_DOMAINS=${AF_URL_DCP}'domain/get_domains.html'
# Adds a new TXT record for given ACME challenge value & domain.
# Adds a new TXT record for given ACME challenge value & domain.
# Usage: dns_artfiles_add _acme-challenge.www.example.com "ACME challenge value"
# Usage: dns_artfiles_add _acme-challenge.www.example.com "ACME challenge value"
dns_artfiles_add
()
dns_artfiles_add
()
{
{
domain
=
"
$1
"
domain
=
"
$1
"
txtValue
=
"
$2
"
txtValue
=
"
$2
"
_info
'Using ArtFiles.de DNS addition API…'
_info
'Using ArtFiles.de DNS addition API…'
...
@@ -56,8 +55,7 @@ dns_artfiles_add()
...
@@ -56,8 +55,7 @@ dns_artfiles_add()
# Removes the existing TXT record for given ACME challenge value & domain.
# Removes the existing TXT record for given ACME challenge value & domain.
# Usage: dns_artfiles_rm _acme-challenge.www.example.com "ACME challenge value"
# Usage: dns_artfiles_rm _acme-challenge.www.example.com "ACME challenge value"
dns_artfiles_rm
()
dns_artfiles_rm
()
{
{
domain
=
"
$1
"
domain
=
"
$1
"
txtValue
=
"
$2
"
txtValue
=
"
$2
"
_info
'Using ArtFiles.de DNS removal API…'
_info
'Using ArtFiles.de DNS removal API…'
...
@@ -91,15 +89,13 @@ dns_artfiles_rm()
...
@@ -91,15 +89,13 @@ dns_artfiles_rm()
# Cleans awful TXT records response of ArtFiles's API & pretty prints it.
# Cleans awful TXT records response of ArtFiles's API & pretty prints it.
# Usage: _clean_records
# Usage: _clean_records
_clean_records
()
_clean_records
()
{
{
_info
'Cleaning TXT records…'
_info
'Cleaning TXT records…'
# Extract TXT part, strip trailing quote sign (ACME.sh API guidelines forbid
# Extract TXT part, strip trailing quote sign (ACME.sh API guidelines forbid
# usage of SED's GNU extensions, hence couldn't omit it via regex), strip '\'
# usage of SED's GNU extensions, hence couldn't omit it via regex), strip '\'
# from '\"' & turn '\n' into real LF characters.
# from '\"' & turn '\n' into real LF characters.
# Yup, awful API to use - but that's all we got to get this working, so… ;)
# Yup, awful API to use - but that's all we got to get this working, so… ;)
_debug2
'Raw '
"
$response
"
_debug2
'Raw '
"
$response
"
response
=
"
$(
printf
--
'%s'
"
$response
"
|
sed
's/^.*TXT":"\([^}]*\).*$/\1/;s/,".*$//;s/.$//;s/\\"/"/g;s/\\n/\n/g'
)
"
response
=
"
$(
printf
--
'%s'
"
$response
"
|
sed
's/^.*TXT":"\([^}]*\).*$/\1/;s/,".*$//;s/.$//;s/\\"/"/g;s/\\n/\n/g'
)
"
_debug2
'Clean'
"
$response
"
_debug2
'Clean'
"
$response
"
}
}
...
@@ -107,8 +103,7 @@ _clean_records()
...
@@ -107,8 +103,7 @@ _clean_records()
# Executes an HTTP GET or POST request for getting or setting DNS records,
# Executes an HTTP GET or POST request for getting or setting DNS records,
# containing given payload upon POST.
# containing given payload upon POST.
# Usage: _dns [GET | SET] [payload]
# Usage: _dns [GET | SET] [payload]
_dns
()
_dns
()
{
{
_info
'Executing HTTP request…'
_info
'Executing HTTP request…'
action
=
"
$1
"
action
=
"
$1
"
payload
=
"
$(
printf
--
'%s'
"
$2
"
| _url_encode
)
"
payload
=
"
$(
printf
--
'%s'
"
$2
"
| _url_encode
)
"
...
@@ -134,8 +129,7 @@ _dns()
...
@@ -134,8 +129,7 @@ _dns()
# Gets the root domain zone for given domain.
# Gets the root domain zone for given domain.
# Usage: _get_zone _acme-challenge.www.example.com
# Usage: _get_zone _acme-challenge.www.example.com
_get_zone
()
_get_zone
()
{
{
fqdn
=
"
$1
"
fqdn
=
"
$1
"
domains
=
"
$(
_get
"
$AF_URL_DOMAINS
"
''
10
)
"
domains
=
"
$(
_get
"
$AF_URL_DOMAINS
"
''
10
)
"
_info
'Getting domain zone…'
_info
'Getting domain zone…'
...
@@ -164,8 +158,7 @@ _get_zone()
...
@@ -164,8 +158,7 @@ _get_zone()
# Sets the credentials for accessing ArtFiles's API
# Sets the credentials for accessing ArtFiles's API
# Usage: _set_credentials
# Usage: _set_credentials
_set_credentials
()
_set_credentials
()
{
{
_info
'Setting credentials…'
_info
'Setting credentials…'
AF_API_USERNAME
=
"
${
AF_API_USERNAME
:-
$(
_readaccountconf_mutable AF_API_USERNAME
)
}
"
AF_API_USERNAME
=
"
${
AF_API_USERNAME
:-
$(
_readaccountconf_mutable AF_API_USERNAME
)
}
"
AF_API_PASSWORD
=
"
${
AF_API_PASSWORD
:-
$(
_readaccountconf_mutable AF_API_PASSWORD
)
}
"
AF_API_PASSWORD
=
"
${
AF_API_PASSWORD
:-
$(
_readaccountconf_mutable AF_API_PASSWORD
)
}
"
...
@@ -179,9 +172,9 @@ _set_credentials()
...
@@ -179,9 +172,9 @@ _set_credentials()
# Adds the HTTP Authorization & Content-Type headers to a follow-up request.
# Adds the HTTP Authorization & Content-Type headers to a follow-up request.
# Usage: _set_headers
# Usage: _set_headers
_set_headers
()
_set_headers
()
{
{
_info
'Setting headers…'
_info
'Setting headers…'
export
_H1
=
"
$(
printf
--
'Authorization: Basic %s:%s'
"
$AF_API_USERNAME
"
"
$AF_API_PASSWORD
"
| _base64
)
"
encoded
=
"
$(
printf
--
'%s:%s'
"
$AF_API_USERNAME
"
"
$AF_API_PASSWORD
"
| _base64
)
"
export
_H1
=
"Authorization: Basic
$encoded
"
export
_H2
=
'Content-Type: application/json'
export
_H2
=
'Content-Type: application/json'
}
}
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