forked from linickx/rsdns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrsdns-list.sh
executable file
·93 lines (79 loc) · 1.89 KB
/
rsdns-list.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
#!/bin/bash
#
# rsdns-list.sh - Used to list domains and 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 list -u username -a apiKey -d domain\n"
printf "\t-k Use London/UK Servers.\n"
printf "\t-h Show this.\n"
printf "\n"
}
#prints out the records for a given domain.
function print_records() {
check_domain
if [ $FOUND -eq 1 ]
then
get_records
echo $jRECORDS | jq -r '"ID | Type | Name | Data", (.records[] | "\(.id) | \(.type) | \(.name) | \(.data)")' | column -t -s ' | '
fi
}
#prints words for master rsdns script output
function words () {
printf "List domains and records hosted by rackspace \n"
}
#Get options from the command line.
while getopts "u:a:c:d::hkqw" option
do
case $option in
u ) RSUSER=$OPTARG ;;
a ) RSAPIKEY=$OPTARG ;;
c ) USERID=$OPTARG ;;
d ) DOMAIN=$OPTARG ;;
h ) usage;exit 0 ;;
q ) QUIET=1 ;;
k ) UKAUTH=1 ;;
w ) words;exit 0 ;;
esac
done
#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 a domain is given, print records, else print domaints
if [ -z "$DOMAIN" ]
then
print_domains
else
print_records
fi
#done
exit 0