-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauthzone_get.go
96 lines (81 loc) · 2.93 KB
/
authzone_get.go
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
package main
import (
"fmt"
"strings"
. "github.com/dirtman/sitepkg"
)
// Implement the "get" command.
func getZoneAuth(invokedAs []string) error {
var input *UserInput
var states StatesZoneAuth = make(StatesZoneAuth)
var err, result error
var duo, ref, inList bool
SetStringOpt("view", "V", true, "any", "Specify the the network view to which the record belongs")
SetStringOpt("fields", "F", true, "", "Specify fields to be used in the search")
SetStringOpt("rFields", "R", true, "", "Specify additional fields to show in verbose mode")
SetStringOpt("filename", "f", true, "", "Specify an input file")
SetBoolOpt("ref", "r", true, false, "Show only the object \"reference\" of each fetched object")
if input, err = subCommandInit(invokedAs[1], invokedAs[2], duo); err != nil {
return Error("failure initializing program and getting user input: %v", err)
}
// The ns_group is not returned by default, so let's force it:
if inList, _ = InList(input.rFields, "ns_group"); !inList {
input.rFields = append(input.rFields, "ns_group")
}
if err = getStates(states, input.ndList, input.fields, input.rFields, false, false); err != nil {
return Error("failure getting states: %v", err)
} else if ref, err = GetBoolOpt("ref"); err != nil {
return Error("failure getting ref option: %v", err)
}
if errors := checkStateErrors(states, false, true); len(errors) > 0 {
return Error("Aborting process; no records fetched.")
}
// Loop through the user provided input (name/data) list.
space := input.maxNameLength + 8
var numNotFound uint
for _, nameData := range input.ndList {
records := states[nameData].records
request := strings.TrimLeft(nameData, nameDataSep)
request = strings.TrimRight(request, nameDataSep)
// I prefer to keep the output short, only showing the user-specified name/data
// fields. But if the user provided no name or data, let's show the fields.
if request == "" {
request = strings.Join(input.fields, ",")
}
if err := states[nameData].err; err != nil {
Print("%-*s FAILED: %v\n", space, "ZoneAuth("+request+")", err)
result = Error("one or more errors occurred")
} else if len(records) == 0 {
if !Quiet {
Print("%-*s NOTFOUND\n", space, "ZoneAuth("+request+")")
}
numNotFound++
}
for _, record := range records {
if err = states[nameData].err; err != nil {
Print("Failure getting %s: %v\n", request, err)
} else if ref {
Print("%-*s %s\n", space, "ZoneAuth("+request+"): ", record.Ref)
} else {
data := ""
sep := " ("
end := ""
if input.view == "any" {
data += fmt.Sprintf("%s%s view", sep, record.View)
sep = ", "
end = ")"
}
if record.Disable {
data += fmt.Sprintf("%s%s", sep, "DISABLED")
end = ")"
}
data += end
Print("%-*s %s %s\n", space, "ZoneAuth("+request+"): ", record.Fqdn, data)
}
}
}
if result == nil && numNotFound != 0 {
return Error("One or more records not found.")
}
return result
}