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
7316bf7b
You need to sign in or sign up before continuing.
Commit
7316bf7b
authored
Dec 04, 2016
by
neil
Committed by
GitHub
Dec 04, 2016
Browse files
Merge pull request #437 from Neilpang/dev
Dev
parents
c572ce94
3747b7d9
Changes
1
Hide whitespace changes
Inline
Side-by-side
dnsapi/dns_cx.sh
View file @
7316bf7b
...
@@ -74,7 +74,7 @@ existing_records() {
...
@@ -74,7 +74,7 @@ existing_records() {
return
1
return
1
fi
fi
seg
=
$(
printf
"%s
\n
"
"
$response
"
| _egrep_o
"
{[^
\
{
]*host
\
"
:
\
"
$_sub_domain
\
"
[^
\
}
]*
\}
"
)
seg
=
$(
printf
"%s
\n
"
"
$response
"
| _egrep_o
'
{[^{]*host":
"'
"
$_sub_domain
"
'
"[^}]*\}
'
)
_debug seg
"
$seg
"
_debug seg
"
$seg
"
if
[
-z
"
$seg
"
]
;
then
if
[
-z
"
$seg
"
]
;
then
return
0
return
0
...
@@ -82,7 +82,7 @@ existing_records() {
...
@@ -82,7 +82,7 @@ existing_records() {
if
printf
"%s"
"
$response
"
|
grep
'"type":"TXT"'
>
/dev/null
;
then
if
printf
"%s"
"
$response
"
|
grep
'"type":"TXT"'
>
/dev/null
;
then
count
=
1
count
=
1
record_id
=
$(
printf
"%s
\n
"
"
$seg
"
| _egrep_o
"
\
"
record_id
\
"
:
\
"
[^
\
"
]*
\"
"
|
cut
-d
:
-f
2 |
tr
-d
\"
)
record_id
=
$(
printf
"%s
\n
"
"
$seg
"
| _egrep_o
'
"record_id":"[^"]*"
'
|
cut
-d
:
-f
2 |
tr
-d
\"
| _head_n 1
)
_debug record_id
"
$record_id
"
_debug record_id
"
$record_id
"
return
0
return
0
fi
fi
...
@@ -147,7 +147,7 @@ _get_root() {
...
@@ -147,7 +147,7 @@ _get_root() {
fi
fi
if
_contains
"
$response
"
"
$h
."
;
then
if
_contains
"
$response
"
"
$h
."
;
then
seg
=
$(
printf
"%s"
"
$response
"
| _egrep_o
"
\
{
[^
\
{
]*
\
"
$h
\.\
"
[^
\
}
]*
\}
"
)
seg
=
$(
printf
"%s"
"
$response
"
| _egrep_o
'
{[^{]*
"'
"
$h
"
'.
"[^}]*
}'
)
_debug seg
"
$seg
"
_debug seg
"
$seg
"
_domain_id
=
$(
printf
"%s"
"
$seg
"
| _egrep_o
"
\"
id
\"
:
\"
[^
\"
]*
\"
"
|
cut
-d
:
-f
2 |
tr
-d
\"
)
_domain_id
=
$(
printf
"%s"
"
$seg
"
| _egrep_o
"
\"
id
\"
:
\"
[^
\"
]*
\"
"
|
cut
-d
:
-f
2 |
tr
-d
\"
)
_debug _domain_id
"
$_domain_id
"
_debug _domain_id
"
$_domain_id
"
...
@@ -170,7 +170,7 @@ _get_root() {
...
@@ -170,7 +170,7 @@ _get_root() {
_rest
()
{
_rest
()
{
m
=
$1
m
=
$1
ep
=
"
$2
"
ep
=
"
$2
"
_debug
"
$ep
"
_debug
ep
"
$ep
"
url
=
"
$REST_API
/
$ep
"
url
=
"
$REST_API
/
$ep
"
_debug url
"
$url
"
_debug url
"
$url
"
...
...
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