-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcname_delete.go
69 lines (57 loc) · 1.9 KB
/
cname_delete.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
package main
import (
. "github.com/dirtman/sitepkg"
"strings"
)
// Implement the "delete" command.
func deleteCNAME(invokedAs []string) error {
var fields []string
var input *UserInput
var states StatesCNAME = make(StatesCNAME)
var record *RecordCNAME
var err error
duo := false
SetStringOpt("view", "V", true, "default", "Specify the the record's view")
SetStringOpt("filename", "f", true, "", "Specify an input file")
if input, err = subCommandInit(invokedAs[1], invokedAs[2], duo); err != nil {
return Error("failure initializing program and getting user input: %v", err)
} else if err = getStates(states, input.ndList, input.fields, nil, false, false); err != nil {
return Error("failure getting states: %v", err)
}
// First check if any errors occurred getting the host records. If so, abort.
if errors := checkStateErrors(states, duo, true); len(errors) != 0 {
return Error("Aborting process; no records deleted.")
}
// Loop through the user provided input (name/data) list.
space := input.maxNameLength + 8
var numNotFound, numFailed uint
for _, nameData := range input.ndList {
records := states[nameData].records
request := strings.TrimLeft(nameData, nameDataSep)
request = strings.TrimRight(request, nameDataSep)
if len(records) == 0 {
Print("%-*s NOTFOUND\n", space, "CNAME("+request+")")
numNotFound++
continue
}
record = records[0]
ref := record.Ref
_, err := deleteRecord(record.Ref, fields)
if err != nil {
Print("%-*s FAILED to delete: %v\n", space, "CNAME("+request+")", err)
numFailed++
continue
} else if ref != record.Ref {
Print("%-*s FAILED to delete: ref mismatch\n", space, "CNAME("+request+")")
numFailed++
} else {
Print("%-*s Deleted\n", space, "CNAME("+request+")")
}
}
if numFailed != 0 {
return Error("One or more updates failed")
} else if numNotFound != 0 {
return Error("One or more records not found")
}
return nil
}