-
Notifications
You must be signed in to change notification settings - Fork 22
/
rsdns-aaaa.sh
executable file
·162 lines (128 loc) · 3.22 KB
/
rsdns-aaaa.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
#!/bin/bash
#
# rsdns-aaaa.sh - Used to create/delete AAAA records hosted on rackspace cloud dns
#
# config file for variables.
if [ -e ~/.rsdns_config ]
then
. ~/.rsdns_config
fi
# load up our auth & funct library
if [ -n "$RSPATH" ]
then
. $RSPATH/lib/auth.sh
. $RSPATH/lib/func.sh
else
. lib/auth.sh
. lib/func.sh
fi
#prints out the usage information on error or request.
function usage () {
printf "\n"
printf "rsdns aaaa -u username -a apiKey -n name -i IP -t TTL\n"
printf "\t-d Set the domain name manually"
printf "\t-k Use London/UK Servers.\n"
printf "\t-x Delete record.\n"
printf "\t-U Update existing record.\n"
printf "\t-J Output in JSON (raw RS API data)\n"
printf "\t-h Show this.\n"
printf "\n"
}
function create_aaaa () {
# { "id" : "AAAA-123", "type" : "AAAA", "name" : "example.foo.com", "data" : "4321:0:1:2:3:4:567:89ab", "ttl" : 3600 }
if [ -z $IP ]
then
usage
exit 1
fi
get_domain $NAME
check_domain
if [ $FOUND -eq 1 ]
then
#RSPOST='{"records":[{ "type" : "AAAA", "name" : "b.test.linickx.co.uk", "data" : "4321:0:1:2:3:4:567:89ab", "ttl" : 86400 }]}'
RSPOST=`echo '{"records":[{ "type" : "AAAA", "name" : "'$NAME'", "data" : "'$IP'", "ttl" : '$TTL' }]}'`
create_record
fi
}
function update_aaaa() {
if [ -z $IP ]
then
usage
exit 1
fi
get_domain $NAME
RECORDTYPE="AAAA"
get_recordid
RSPOST=`echo '{ "name" : "'$NAME'", "data" : "'$IP'", "ttl" : '$TTL' }'`
RC=`curl -A "rsdns/$RSDNS_VERSION (https://github.com/linickx/rsdns)" -k -s -X PUT -H X-Auth-Token:\ $TOKEN -H Content-Type:\ application/json -H Accept:\ application/json $DNSSVR/$USERID/domains/$DOMAINID/records/$RECORDID --data "$RSPOST" |tr -s '[:cntrl:]' "\n"`
rackspace_cloud
}
function delete_aaaa () {
get_domain $NAME
RECORDTYPE="AAAA"
delete_record
}
#prints words for master rsdns script output
function words () {
printf "Manage AAAA records, host records for IPv6 \n"
}
#Get options from the command line.
while getopts "u:a:c:d:n:i:t::hkqxUwJ" option
do
case $option in
u ) RSUSER=$OPTARG ;;
a ) RSAPIKEY=$OPTARG ;;
c ) USERID=$OPTARG ;;
n ) NAME=$OPTARG ;;
d ) DOMAIN=$OPTARG ;;
i ) IP=$OPTARG ;;
t ) TTL=$OPTARG ;;
h ) usage;exit 0 ;;
q ) QUIET=1 ;;
k ) UKAUTH=1 ;;
x ) DEL=1 ;;
U ) UPDATE=1 ;;
w ) words;exit 0 ;;
J ) RSJSON=1 ;;
esac
done
#Check for enough variables, print usage if not enough.
if [ $# -lt 2 ]
then
usage
exit 1
fi
if [ -z $NAME ]
then
usage
exit 1
fi
#All actions require authentication, get it done first.
#If the authentication works this will return $TOKEN and $MGMTSVR for use by everything else.
get_auth $RSUSER $RSAPIKEY
if test -z $TOKEN
then
if [[ $QUIET -eq 0 ]]; then
echo Auth Token does not exist.
fi
exit 98
fi
if test -z "$MGMTSVR"
then
if [[ $QUIET -eq 0 ]]; then
echo Management Server does not exist.
fi
exit 97
fi
if [ -n "$UPDATE" ]
then
update_aaaa
fi
if [ -n "$DEL" ]
then
delete_aaaa
else
create_aaaa
fi
#done
exit 0