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
5309afc3
Commit
5309afc3
authored
Feb 20, 2018
by
Boyan Peychev
Browse files
Update dns api to support v2 wildcard cert #1261
parent
41e3ecad
Changes
1
Show whitespace changes
Inline
Side-by-side
dnsapi/dns_cloudns.sh
View file @
5309afc3
...
@@ -60,22 +60,32 @@ dns_cloudns_rm() {
...
@@ -60,22 +60,32 @@ dns_cloudns_rm() {
host
=
"
$(
echo
"
$1
"
|
sed
"s/
\.
$zone
\$
//"
)
"
host
=
"
$(
echo
"
$1
"
|
sed
"s/
\.
$zone
\$
//"
)
"
record
=
$2
record
=
$2
record_id
=
$(
_dns_cloudns_get_record_id
"
$zone
"
"
$host
"
)
_dns_cloudns_http_api_call
"dns/records.json"
"domain-name=
$zone
&host=
$host
&type=TXT"
if
!
_contains
"
$response
"
"
\"
id
\"
:"
;
then
return
1
fi
for
i
in
$(
echo
$response
|
tr
'{'
"
\n
"
|
grep
$record
)
;
do
record_id
=
$(
echo
$i
|
tr
','
"
\n
"
|
grep
-E
'^"id"'
|
sed
-re
's/^\"id\"\:\"([0-9]+)\"$/\1/g'
)
;
if
[
!
-z
"
$record_id
"
]
;
then
_debug zone
"
$zone
"
_debug zone
"
$zone
"
_debug host
"
$host
"
_debug host
"
$host
"
_debug record
"
$record
"
_debug record
"
$record
"
_debug record_id
"
$record_id
"
_debug record_id
"
$record_id
"
if
[
!
-z
"
$record_id
"
]
;
then
_info
"Deleting the TXT record for
$1
"
_info
"Deleting the TXT record for
$1
"
_dns_cloudns_http_api_call
"dns/delete-record.json"
"domain-name=
$zone
&record-id=
$record_id
"
_dns_cloudns_http_api_call
"dns/delete-record.json"
"domain-name=
$zone
&record-id=
$record_id
"
if
!
_contains
"
$response
"
"
\"
status
\"
:
\"
Success
\"
"
;
then
if
!
_contains
"
$response
"
"
\"
status
\"
:
\"
Success
\"
"
;
then
_err
"The TXT record for
$1
cannot be deleted."
_err
"The TXT record for
$1
cannot be deleted."
return
1
else
fi
_info
"Deleted."
_info
"Deleted."
fi
fi
fi
done
return
0
return
0
}
}
...
@@ -114,7 +124,7 @@ _dns_cloudns_init_check() {
...
@@ -114,7 +124,7 @@ _dns_cloudns_init_check() {
return
1
return
1
fi
fi
#save the api id and password to the account conf file.
#
save the api id and password to the account conf file.
_saveaccountconf_mutable CLOUDNS_AUTH_ID
"
$CLOUDNS_AUTH_ID
"
_saveaccountconf_mutable CLOUDNS_AUTH_ID
"
$CLOUDNS_AUTH_ID
"
_saveaccountconf_mutable CLOUDNS_SUB_AUTH_ID
"
$CLOUDNS_SUB_AUTH_ID
"
_saveaccountconf_mutable CLOUDNS_SUB_AUTH_ID
"
$CLOUDNS_SUB_AUTH_ID
"
_saveaccountconf_mutable CLOUDNS_AUTH_PASSWORD
"
$CLOUDNS_AUTH_PASSWORD
"
_saveaccountconf_mutable CLOUDNS_AUTH_PASSWORD
"
$CLOUDNS_AUTH_PASSWORD
"
...
@@ -147,15 +157,6 @@ _dns_cloudns_get_zone_name() {
...
@@ -147,15 +157,6 @@ _dns_cloudns_get_zone_name() {
return
1
return
1
}
}
_dns_cloudns_get_record_id
()
{
_dns_cloudns_http_api_call
"dns/records.json"
"domain-name=
$1
&host=
$2
&type=TXT"
if
_contains
"
$response
"
"
\"
id
\"
:"
;
then
echo
"
$response
"
|
cut
-d
'"'
-f
2
return
0
fi
return
1
}
_dns_cloudns_http_api_call
()
{
_dns_cloudns_http_api_call
()
{
method
=
$1
method
=
$1
...
@@ -177,7 +178,7 @@ _dns_cloudns_http_api_call() {
...
@@ -177,7 +178,7 @@ _dns_cloudns_http_api_call() {
response
=
"
$(
_get
"
$CLOUDNS_API
/
$method
?
$data
"
)
"
response
=
"
$(
_get
"
$CLOUDNS_API
/
$method
?
$data
"
)
"
_debug
2
response
"
$response
"
_debug response
"
$response
"
return
0
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