-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdomains.go
281 lines (223 loc) · 6.89 KB
/
domains.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
package godo
import (
"fmt"
"net"
)
// Domain maps to the domain(s) field in the response
type Domain struct {
ID int `json:"id"`
Name string `json:"name"`
TTL int `json:"ttl"`
LiveZoneFile string `json:"live_zone_file"`
Error string `json:"error"`
ZoneFileWithError string `json:"zone_file_with_error"`
}
// PartialDomain maps to the partial domain data in the response when a new domain is created successfully
type PartialDomain struct {
ID int `json:"id"`
Name string `json:"name"`
}
// DomainRecord maps to the domain record response
type DomainRecord struct {
ID int `json:"id"`
DomainID int `json:"domain_id"`
RecordType string `json:"record_type"`
Name string `json:"name"`
Data string `json:"data"`
Priority int `json:"priority"`
Port int `json:"port"`
Weight int `json:"weight"`
}
// CreateDomain creates a new domain
func (c *Client) CreateDomain(name string, IP net.IP) (*PartialDomain, error) {
// Validate
if name == "" {
return nil, fmt.Errorf("name must be set")
}
if len(IP) == 0 {
return nil, fmt.Errorf("IP address must be set and valid")
}
s := fmt.Sprintf("/domains/new?name=%s&ip_address=%s", name, IP)
var DOResp struct {
Status Status `json:"status"`
Domain PartialDomain `json:"domain"`
Message string `json:"message"`
}
err := c.doGet(s, &DOResp)
if err != nil {
return nil, err
}
if DOResp.Status == StatusError {
return nil, fmt.Errorf("could not create domain: %v", DOResp.Message)
}
return &DOResp.Domain, nil
}
// DeleteDomainByID returns a domain by its ID
func (c *Client) DeleteDomainByID(ID interface{}) error {
var DOResp struct {
Status Status `json:"status"`
Message string `json:"message"`
}
err := c.doGet(fmt.Sprintf("/domains/%v/destroy", ID), &DOResp)
if err != nil {
return err
}
if DOResp.Status == StatusError {
return fmt.Errorf("could not delete domain with ID %v: %v", ID, DOResp.Message)
}
return nil
}
// GetAllDomains returns all current domain
func (c *Client) GetAllDomains() ([]Domain, error) {
var DOResp struct {
Status Status `json:"status"`
Domains []Domain `json:"domains"`
Message string `json:"message"`
}
err := c.doGet("/domains", &DOResp)
if err != nil {
return nil, err
}
if DOResp.Status == StatusError {
return nil, fmt.Errorf("could not get domains: %v", DOResp.Message)
}
return DOResp.Domains, nil
}
// GetDomainByID returns a domain by its ID
func (c *Client) GetDomainByID(ID int) (*Domain, error) {
var DOResp struct {
Status Status `json:"status"`
Domain Domain `json:"domain"`
Message string `json:"message"`
}
err := c.doGet(fmt.Sprintf("/domains/%d", ID), &DOResp)
if err != nil {
return nil, err
}
if DOResp.Status == StatusError {
return nil, fmt.Errorf("could not get domain with ID %d: %v", ID, DOResp.Message)
}
return &DOResp.Domain, nil
}
// CreateDomainRecord creates a record for a domain by ID, if sucessfully it will returns a new DomainRecord
func (c *Client) CreateDomainRecord(ID interface{}, r DomainRecord) (*DomainRecord, error) {
// Validate
if r.RecordType == "" {
return nil, fmt.Errorf("record type must be set")
}
if r.Data == "" {
return nil, fmt.Errorf("data value must be set")
}
s := fmt.Sprintf("/domains/%v/records/new?record_type=%s&data=%s", ID, r.RecordType, r.Data)
if r.Name != "" {
s += fmt.Sprintf("&name=%s", r.Name)
}
if r.Priority != 0 {
s += fmt.Sprintf("&priority=%d", r.Priority)
}
if r.Port != 0 {
s += fmt.Sprintf("&port=%d", r.Port)
}
if r.Weight != 0 {
s += fmt.Sprintf("&weight=%d", r.Weight)
}
var DOResp struct {
Status Status `json:"status"`
Record DomainRecord `json:"record"`
Message string `json:"message"`
}
err := c.doGet(s, &DOResp)
if err != nil {
return nil, err
}
if DOResp.Status == StatusError {
return nil, fmt.Errorf("could not create record for domain %v: %v", ID, DOResp.Message)
}
return &DOResp.Record, nil
}
// GetAllRecordsByDomain returns all current domain records for a specific domain. The domainID can be integer or string
func (c *Client) GetAllRecordsByDomain(domainID interface{}) ([]DomainRecord, error) {
var DOResp struct {
Status Status `json:"status"`
Records []DomainRecord `json:"records"`
Message string `json:"message"`
}
err := c.doGet(fmt.Sprintf("/domains/%v/records", domainID), &DOResp)
if err != nil {
return nil, err
}
if DOResp.Status == StatusError {
return nil, fmt.Errorf("could not get records for domain %v: %v", domainID, DOResp.Message)
}
return DOResp.Records, nil
}
// GetRecordByDomain return a domain record by domain ID and record ID. domainID can be integer or string
func (c *Client) GetRecordByDomain(domainID interface{}, ID int) (*DomainRecord, error) {
var DOResp struct {
Status Status `json:"status"`
Record DomainRecord `json:"record"`
Message string `json:"message"`
}
err := c.doGet(fmt.Sprintf("/domains/%v/records/%d", domainID, ID), &DOResp)
if err != nil {
return nil, err
}
if DOResp.Status == StatusError {
return nil, fmt.Errorf("could not get record for domain %v with ID %d: %v", domainID, ID, DOResp.Message)
}
return &DOResp.Record, nil
}
// UpdateRecordByDomain updates a domain record by domain ID and record ID. domainID can be integer or string
func (c *Client) UpdateRecordByDomain(domainID interface{}, r DomainRecord) (*DomainRecord, error) {
// Validate
if r.ID == 0 {
return nil, fmt.Errorf("record ID must be set")
}
if r.RecordType == "" {
return nil, fmt.Errorf("record type must be set")
}
if r.Data == "" {
return nil, fmt.Errorf("data value must be set")
}
s := fmt.Sprintf("/domains/%v/records/new?record_type=%s&data=%s", domainID, r.ID, r.RecordType, r.Data)
if r.Name != "" {
s += fmt.Sprintf("&name=%s", r.Name)
}
if r.Priority != 0 {
s += fmt.Sprintf("&priority=%d", r.Priority)
}
if r.Port != 0 {
s += fmt.Sprintf("&port=%d", r.Port)
}
if r.Weight != 0 {
s += fmt.Sprintf("&weight=%d", r.Weight)
}
var DOResp struct {
Status Status `json:"status"`
Record DomainRecord `json:"record"`
Message string `json:"message"`
}
err := c.doGet(s, &DOResp)
if err != nil {
return nil, err
}
if DOResp.Status == StatusError {
return nil, fmt.Errorf("could not create record %d for domain %v: %v", r.ID, domainID, DOResp.Message)
}
return &DOResp.Record, nil
}
// DeleteRecordByDomain delete a domain record
func (c *Client) DeleteRecordByDomain(domainID interface{}, ID int) error {
var DOResp struct {
Status Status `json:"status"`
Message string `json:"message"`
}
err := c.doGet(fmt.Sprintf("/domains/%v/records/%d/destroy", domainID, ID), &DOResp)
if err != nil {
return err
}
if DOResp.Status == StatusError {
return fmt.Errorf("could not delete record %d for domain with ID %v: %v", domainID, ID, DOResp.Message)
}
return nil
}