-
Notifications
You must be signed in to change notification settings - Fork 20
/
dns_show.go
120 lines (98 loc) · 2.79 KB
/
dns_show.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
package cmd
import (
"errors"
"fmt"
"strings"
exoapi "github.com/exoscale/egoscale/v2/api"
"github.com/spf13/cobra"
)
type dnsShowItemOutput struct {
ID string `json:"id"`
DomainID string `json:"domain_id" output:"-"`
Name string `json:"name"`
RecordType string `json:"record_type"`
Content string `json:"content"`
Prio int64 `json:"prio,omitempty"`
TTL int64 `json:"ttl,omitempty"`
CreatedAt string `json:"created_at,omitempty" output:"-"`
UpdatedAt string `json:"updated_at,omitempty" output:"-"`
}
type dnsShowOutput []dnsShowItemOutput
func (o *dnsShowOutput) toJSON() { outputJSON(o) }
func (o *dnsShowOutput) toText() { outputText(o) }
func (o *dnsShowOutput) toTable() { outputTable(o) }
func init() {
dnsShowCmd := &cobra.Command{
Use: "show DOMAIN-NAME|ID [RECORD-TYPE]...",
Short: "Show the domain records",
Long: fmt.Sprintf(`This command shows a DNS Domain records.
Supported output template annotations: %s`,
strings.Join(outputterTemplateAnnotations(&dnsShowOutput{}), ", ")),
RunE: func(cmd *cobra.Command, args []string) error {
if len(args) < 1 {
return errors.New("show expects one DNS domain by name or id")
}
name, err := cmd.Flags().GetString("name")
if err != nil {
return err
}
return output(showDNS(args[0], name, args[1:]))
},
}
dnsCmd.AddCommand(dnsShowCmd)
dnsShowCmd.Flags().StringP("name", "n", "", "List records by name")
}
func showDNS(ident, name string, types []string) (outputter, error) {
out := dnsShowOutput{}
tMap := map[string]struct{}{}
for _, t := range types {
tMap[t] = struct{}{}
}
domain, err := domainFromIdent(ident)
if err != nil {
return nil, err
}
ctx := exoapi.WithEndpoint(gContext, exoapi.NewReqEndpoint(gCurrentAccount.Environment, gCurrentAccount.DefaultZone))
records, err := cs.ListDNSDomainRecords(ctx, gCurrentAccount.DefaultZone, *domain.ID)
if err != nil {
return nil, err
}
for _, r := range records {
if r.Name == nil || r.Type == nil {
continue
}
if name != "" && *r.Name != name {
continue
}
if len(tMap) > 0 {
_, ok := tMap[*r.Type]
if !ok {
continue
}
}
record, err := cs.GetDNSDomainRecord(ctx, gCurrentAccount.DefaultZone, *domain.ID, *r.ID)
if err != nil {
return nil, err
}
var priority int64
if record.Priority != nil {
priority = *record.Priority
}
var ttl int64
if record.TTL != nil {
ttl = *record.TTL
}
out = append(out, dnsShowItemOutput{
ID: *record.ID,
DomainID: *domain.ID,
Name: *record.Name,
RecordType: *record.Type,
Content: StrPtrFormatOutput(record.Content),
TTL: ttl,
Prio: priority,
CreatedAt: DatePtrFormatOutput(record.CreatedAt),
UpdatedAt: DatePtrFormatOutput(record.UpdatedAt),
})
}
return &out, nil
}