-
Notifications
You must be signed in to change notification settings - Fork 3
/
resource_dns.go
106 lines (89 loc) · 1.86 KB
/
resource_dns.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
package fly
import "context"
func (c *Client) GetDNSRecords(ctx context.Context, domainName string) ([]*DNSRecord, error) {
query := `
query($domainName: String!) {
domain(name: $domainName) {
dnsRecords {
nodes {
id
fqdn
name
type
ttl
rdata
isApex
isWildcard
isSystem
createdAt
updatedAt
}
}
}
}
`
req := c.NewRequest(query)
req.Var("domainName", domainName)
ctx = ctxWithAction(ctx, "get_dns_records")
data, err := c.RunWithContext(ctx, req)
if err != nil {
return nil, err
}
if data.Domain == nil {
return nil, ErrNotFound
}
return *data.Domain.DnsRecords.Nodes, nil
}
func (c *Client) ExportDNSRecords(ctx context.Context, domainId string) (string, error) {
query := `
mutation($input: ExportDNSZoneInput!) {
exportDnsZone(input: $input) {
contents
}
}
`
req := c.NewRequest(query)
req.Var("input", map[string]interface{}{
"domainId": domainId,
})
ctx = ctxWithAction(ctx, "export_dns_records")
data, err := c.RunWithContext(ctx, req)
if err != nil {
return "", err
}
return data.ExportDnsZone.Contents, nil
}
func (c *Client) ImportDNSRecords(ctx context.Context, domainId string, zonefile string) ([]ImportDnsWarning, []ImportDnsChange, error) {
query := `
mutation($input: ImportDNSZoneInput!) {
importDnsZone(input: $input) {
changes {
action
newText
oldText
}
warnings {
action
message
attributes {
name
rdata
ttl
type
}
}
}
}
`
req := c.NewRequest(query)
req.Var("input", map[string]interface{}{
"domainId": domainId,
"zonefile": zonefile,
})
ctx = ctxWithAction(ctx, "import_dns_records")
data, err := c.RunWithContext(ctx, req)
if err != nil {
return nil, nil, err
}
return data.ImportDnsZone.Warnings, data.ImportDnsZone.Changes, nil
}