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
a8202d4b
Commit
a8202d4b
authored
Dec 07, 2017
by
speedmann
Browse files
Fix CI issues
parent
657334fb
Changes
1
Show whitespace changes
Inline
Side-by-side
dnsapi/dns_inwx.sh
View file @
a8202d4b
...
@@ -35,10 +35,8 @@ dns_inwx_add() {
...
@@ -35,10 +35,8 @@ dns_inwx_add() {
fi
fi
_debug _sub_domain
"
$_sub_domain
"
_debug _sub_domain
"
$_sub_domain
"
_debug _domain
"
$_domain
"
_debug _domain
"
$_domain
"
_debug
"Getting txt records"
_debug
"Getting txt records"
printf
-v
xml_content
'<?xml version="1.0" encoding="UTF-8"?>
printf
-v
xml_content
'<?xml version="1.0" encoding="UTF-8"?>
<methodCall>
<methodCall>
<methodName>nameserver.info</methodName>
<methodName>nameserver.info</methodName>
...
@@ -68,21 +66,21 @@ dns_inwx_add() {
...
@@ -68,21 +66,21 @@ dns_inwx_add() {
</value>
</value>
</param>
</param>
</params>
</params>
</methodCall>'
$_domain
$_sub_domain
</methodCall>'
"
$_domain
"
"
$_sub_domain
"
response
=
"
$(
_post
"
$xml_content
"
"
$INWX_Api
"
""
"POST"
)
"
response
=
"
$(
_post
"
$xml_content
"
"
$INWX_Api
"
""
"POST"
)
"
if
!
printf
"%s"
"
$response
"
|
grep
"Command completed successfully"
>
/dev/null
;
then
if
!
printf
"%s"
"
$response
"
|
grep
"Command completed successfully"
>
/dev/null
;
then
_err
"Error could net get txt records"
_err
"Error could net get txt records"
return
1
return
1
fi
fi
if
!
printf
"%s"
"
$response
"
|
grep
"count"
-q
;
then
if
!
printf
"%s"
"
$response
"
|
grep
"count"
-q
;
then
_info
"Adding record"
_info
"Adding record"
_inwx_add_record
$_domain
$_sub_domain
$txtvalue
_inwx_add_record
"
$_domain
"
"
$_sub_domain
"
"
$txtvalue
"
else
else
_record_id
=
$(
printf
'%s'
$response
|
sed
-nE
's/.*(<member><name>record){1}(.*)(<name>id<\/name><value><int>)([0-9]+){1}.*/\4/p'
)
_record_id
=
$(
printf
'%s'
"
$response
"
|
sed
-nE
's/.*(<member><name>record){1}(.*)(<name>id<\/name><value><int>)([0-9]+){1}.*/\4/p'
)
_info
"Updating record"
_info
"Updating record"
_inwx_update_record
$_record_id
$txtvalue
_inwx_update_record
"
$_record_id
"
"
$txtvalue
"
fi
fi
}
}
...
@@ -117,7 +115,6 @@ dns_inwx_rm() {
...
@@ -117,7 +115,6 @@ dns_inwx_rm() {
_debug
"Getting txt records"
_debug
"Getting txt records"
printf
-v
xml_content
'<?xml version="1.0" encoding="UTF-8"?>
printf
-v
xml_content
'<?xml version="1.0" encoding="UTF-8"?>
<methodCall>
<methodCall>
<methodName>nameserver.info</methodName>
<methodName>nameserver.info</methodName>
...
@@ -147,10 +144,10 @@ dns_inwx_rm() {
...
@@ -147,10 +144,10 @@ dns_inwx_rm() {
</value>
</value>
</param>
</param>
</params>
</params>
</methodCall>'
$_domain
$_sub_domain
</methodCall>'
"
$_domain
"
"
$_sub_domain
"
response
=
"
$(
_post
"
$xml_content
"
"
$INWX_Api
"
""
"POST"
)
"
response
=
"
$(
_post
"
$xml_content
"
"
$INWX_Api
"
""
"POST"
)
"
if
!
printf
"%s"
"
$response
"
|
grep
"Command completed successfully"
>
/dev/null
;
then
if
!
printf
"%s"
"
$response
"
|
grep
"Command completed successfully"
>
/dev/null
;
then
_err
"Error could not get txt records"
_err
"Error could not get txt records"
return
1
return
1
fi
fi
...
@@ -158,12 +155,11 @@ dns_inwx_rm() {
...
@@ -158,12 +155,11 @@ dns_inwx_rm() {
if
!
printf
"%s"
"
$response
"
|
grep
"count"
-q
;
then
if
!
printf
"%s"
"
$response
"
|
grep
"count"
-q
;
then
_info
"Do not need to delete record"
_info
"Do not need to delete record"
else
else
_record_id
=
$(
printf
'%s'
$response
|
sed
-nE
's/.*(<member><name>record){1}(.*)(<name>id<\/name><value><int>)([0-9]+){1}.*/\4/p'
)
_record_id
=
$(
printf
'%s'
"
$response
"
|
sed
-nE
's/.*(<member><name>record){1}(.*)(<name>id<\/name><value><int>)([0-9]+){1}.*/\4/p'
)
_info
"Deleting record"
_info
"Deleting record"
_inwx_delete_record
$_record_id
_inwx_delete_record
"
$_record_id
"
fi
fi
}
}
#################### Private functions below ##################################
#################### Private functions below ##################################
...
@@ -209,8 +205,8 @@ _get_root() {
...
@@ -209,8 +205,8 @@ _get_root() {
i
=
2
i
=
2
p
=
1
p
=
1
_H1
=
$(
_inwx_login
)
export
_H1
=
$(
_inwx_login
)
export
_H1
printf
-v
xml_content
'<?xml version="1.0" encoding="UTF-8"?>
printf
-v
xml_content
'<?xml version="1.0" encoding="UTF-8"?>
<methodCall>
<methodCall>
<methodName>nameserver.list</methodName>
<methodName>nameserver.list</methodName>
...
@@ -256,7 +252,7 @@ _inwx_delete_record() {
...
@@ -256,7 +252,7 @@ _inwx_delete_record() {
</value>
</value>
</param>
</param>
</params>
</params>
</methodCall>'
$record_id
</methodCall>'
"
$record_id
"
response
=
"
$(
_post
"
$xml_content
"
"
$INWX_Api
"
""
"POST"
)
"
response
=
"
$(
_post
"
$xml_content
"
"
$INWX_Api
"
""
"POST"
)
"
...
@@ -266,7 +262,6 @@ _inwx_delete_record() {
...
@@ -266,7 +262,6 @@ _inwx_delete_record() {
fi
fi
return
0
return
0
}
}
_inwx_update_record
()
{
_inwx_update_record
()
{
...
@@ -295,8 +290,7 @@ _inwx_update_record() {
...
@@ -295,8 +290,7 @@ _inwx_update_record() {
</value>
</value>
</param>
</param>
</params>
</params>
</methodCall>'
$txtval
$record_id
</methodCall>'
"
$txtval
"
"
$record_id
"
response
=
"
$(
_post
"
$xml_content
"
"
$INWX_Api
"
""
"POST"
)
"
response
=
"
$(
_post
"
$xml_content
"
"
$INWX_Api
"
""
"POST"
)
"
...
@@ -314,10 +308,6 @@ _inwx_add_record() {
...
@@ -314,10 +308,6 @@ _inwx_add_record() {
sub_domain
=
$2
sub_domain
=
$2
txtval
=
$3
txtval
=
$3
_debug domain:
$domain
_debug value:
$txtval
_debug subd:
$sub_domain
printf
-v
xml_content
'<?xml version="1.0" encoding="UTF-8"?>
printf
-v
xml_content
'<?xml version="1.0" encoding="UTF-8"?>
<methodCall>
<methodCall>
<methodName>nameserver.createRecord</methodName>
<methodName>nameserver.createRecord</methodName>
...
@@ -353,7 +343,7 @@ _inwx_add_record() {
...
@@ -353,7 +343,7 @@ _inwx_add_record() {
</value>
</value>
</param>
</param>
</params>
</params>
</methodCall>'
$domain
$txtval
$sub_domain
</methodCall>'
"
$domain
"
"
$txtval
"
"
$sub_domain
"
response
=
"
$(
_post
"
$xml_content
"
"
$INWX_Api
"
""
"POST"
)
"
response
=
"
$(
_post
"
$xml_content
"
"
$INWX_Api
"
""
"POST"
)
"
...
...
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