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
f5850d0c
Commit
f5850d0c
authored
Mar 08, 2019
by
neilpang
Browse files
fix format
parent
855eb835
Changes
1
Hide whitespace changes
Inline
Side-by-side
dnsapi/dns_cn.sh
View file @
f5850d0c
...
@@ -7,7 +7,7 @@ CN_API="https://beta.api.core-networks.de"
...
@@ -7,7 +7,7 @@ CN_API="https://beta.api.core-networks.de"
######## Public functions #####################
######## Public functions #####################
dns_cn_add
(){
dns_cn_add
()
{
fulldomain
=
$1
fulldomain
=
$1
txtvalue
=
$2
txtvalue
=
$2
...
@@ -21,17 +21,17 @@ dns_cn_add(){
...
@@ -21,17 +21,17 @@ dns_cn_add(){
_err
"invalid domain"
_err
"invalid domain"
return
1
return
1
fi
fi
_debug
"_sub_domain
$_sub_domain
"
_debug
"_sub_domain
$_sub_domain
"
_debug
"_domain
$_domain
"
_debug
"_domain
$_domain
"
_info
"Adding record"
_info
"Adding record"
curData
=
"{
\"
name
\"
:
\"
$_sub_domain
\"
,
\"
ttl
\"
:120,
\"
type
\"
:
\"
TXT
\"
,
\"
data
\"
:
\"
$txtvalue
\"
}"
curData
=
"{
\"
name
\"
:
\"
$_sub_domain
\"
,
\"
ttl
\"
:120,
\"
type
\"
:
\"
TXT
\"
,
\"
data
\"
:
\"
$txtvalue
\"
}"
curResult
=
"
$(
_post
"
${
curData
}
"
"
${
CN_API
}
/dnszones/
${
_domain
}
/records/"
)
"
curResult
=
"
$(
_post
"
${
curData
}
"
"
${
CN_API
}
/dnszones/
${
_domain
}
/records/"
)
"
_debug
"curData
$curData
"
_debug
"curData
$curData
"
_debug
"curResult
$curResult
"
_debug
"curResult
$curResult
"
if
_contains
"
$curResult
"
""
;
then
if
_contains
"
$curResult
"
""
;
then
_info
"Added, OK"
_info
"Added, OK"
...
@@ -40,7 +40,7 @@ dns_cn_add(){
...
@@ -40,7 +40,7 @@ dns_cn_add(){
return
1
return
1
fi
fi
return
0
return
0
else
else
_err
"Add txt record error."
_err
"Add txt record error."
_debug
"curData is
$curData
"
_debug
"curData is
$curData
"
...
@@ -50,7 +50,7 @@ dns_cn_add(){
...
@@ -50,7 +50,7 @@ dns_cn_add(){
fi
fi
}
}
dns_cn_rm
(){
dns_cn_rm
()
{
fulldomain
=
$1
fulldomain
=
$1
txtvalue
=
$2
txtvalue
=
$2
...
@@ -64,14 +64,14 @@ dns_cn_rm(){
...
@@ -64,14 +64,14 @@ dns_cn_rm(){
_err
"invalid domain"
_err
"invalid domain"
return
1
return
1
fi
fi
_info
"Deleting record"
_info
"Deleting record"
curData
=
"{
\"
name
\"
:
\"
$_sub_domain
\"
,
\"
data
\"
:
\"
$txtvalue
\"
}"
curData
=
"{
\"
name
\"
:
\"
$_sub_domain
\"
,
\"
data
\"
:
\"
$txtvalue
\"
}"
curResult
=
"
$(
_post
"
${
curData
}
"
"
${
CN_API
}
/dnszones/
${
_domain
}
/records/delete"
)
"
curResult
=
"
$(
_post
"
${
curData
}
"
"
${
CN_API
}
/dnszones/
${
_domain
}
/records/delete"
)
"
_debug curData is
"
$curData
"
_debug curData is
"
$curData
"
_info
"commiting changes"
_info
"commiting changes"
if
!
_cn_commit
;
then
if
!
_cn_commit
;
then
_err
"commiting changes failed"
_err
"commiting changes failed"
return
1
return
1
fi
fi
...
@@ -80,7 +80,6 @@ dns_cn_rm(){
...
@@ -80,7 +80,6 @@ dns_cn_rm(){
return
0
return
0
}
}
################### Private functions below ##################################
################### Private functions below ##################################
_cn_login
()
{
_cn_login
()
{
CN_User
=
"
${
CN_User
:-
$(
_readaccountconf_mutable CN_User
)
}
"
CN_User
=
"
${
CN_User
:-
$(
_readaccountconf_mutable CN_User
)
}
"
...
@@ -100,7 +99,7 @@ _cn_login() {
...
@@ -100,7 +99,7 @@ _cn_login() {
curData
=
"{
\"
login
\"
:
\"
${
CN_User
}
\"
,
\"
password
\"
:
\"
${
CN_Password
}
\"
}"
curData
=
"{
\"
login
\"
:
\"
${
CN_User
}
\"
,
\"
password
\"
:
\"
${
CN_Password
}
\"
}"
curResult
=
"
$(
_post
"
${
curData
}
"
"
${
CN_API
}
/auth/token"
)
"
curResult
=
"
$(
_post
"
${
curData
}
"
"
${
CN_API
}
/auth/token"
)
"
_debug
"Calling _CN_login: '
${
curData
}
' '
${
CN_API
}
/auth/token'"
_debug
"Calling _CN_login: '
${
curData
}
' '
${
CN_API
}
/auth/token'"
if
_contains
"
${
curResult
}
"
'"token":"'
;
then
if
_contains
"
${
curResult
}
"
'"token":"'
;
then
authToken
=
$(
echo
"
${
curResult
}
"
|
cut
-d
":"
-f2
|
cut
-d
","
-f1
|
sed
's/^.\(.*\).$/\1/'
)
authToken
=
$(
echo
"
${
curResult
}
"
|
cut
-d
":"
-f2
|
cut
-d
","
-f1
|
sed
's/^.\(.*\).$/\1/'
)
export
_H1
=
"Authorization: Bearer
$authToken
"
export
_H1
=
"Authorization: Bearer
$authToken
"
...
@@ -114,12 +113,12 @@ _cn_login() {
...
@@ -114,12 +113,12 @@ _cn_login() {
}
}
# Commit changes
# Commit changes
_cn_commit
(){
_cn_commit
()
{
_info
"Commiting changes"
_info
"Commiting changes"
_post
""
"
${
CN_API
}
/dnszones/
$h
/records/commit"
_post
""
"
${
CN_API
}
/dnszones/
$h
/records/commit"
}
}
_cn_get_root
(){
_cn_get_root
()
{
domain
=
$1
domain
=
$1
i
=
2
i
=
2
p
=
1
p
=
1
...
...
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