-
Notifications
You must be signed in to change notification settings - Fork 0
/
dns.go
116 lines (96 loc) · 2.39 KB
/
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
107
108
109
110
111
112
113
114
115
116
package zeit
import (
"bytes"
"encoding/json"
"errors"
"fmt"
"log"
"net/http"
"strings"
)
func (c Client) ListDNSRecords(domain string) ([]Record, error) {
endpoint := fmt.Sprintf("v2/domains/%s/records", domain)
resp, err := c.makeAndDoRequest(http.MethodGet, endpoint, nil)
if err != nil {
return nil, err
}
defer closeResponseBody(resp)
if resp.StatusCode != http.StatusOK {
return nil, errors.New(resp.Status)
}
var records []Record
err = json.NewDecoder(resp.Body).Decode(&struct {
Records *[]Record
}{&records})
if err != nil {
return nil, err
}
return records, nil
}
func (c Client) CreateDNSRecord(domain string, record *Record) (string, error) {
if record == nil {
return "", errors.New(ErrorNilRecord)
}
if record.Name == "@" {
return "", errors.New(ErrorOrigin)
}
parameters := struct {
Name string `json:"name"`
RecordType string `json:"type"`
Value string `json:"value"`
}{record.Name, record.Type, strings.TrimSuffix(record.GetValue(), ".")}
body, err := json.Marshal(parameters)
if err != nil {
return "", err
}
endpoint := fmt.Sprintf("v2/domains/%s/records", domain)
resp, err := c.makeAndDoRequest(http.MethodPost, endpoint, bytes.NewBuffer(body))
defer closeResponseBody(resp)
if err != nil {
return "", err
}
if resp.StatusCode == http.StatusBadRequest {
requestError := BasicError{}
err = json.NewDecoder(resp.Body).Decode(&struct {
Error BasicError
}{requestError})
if err != nil {
return "", err
}
return "", requestError
}
if resp.StatusCode == http.StatusConflict {
conflictError := ConflictError{}
err = json.NewDecoder(resp.Body).Decode(&struct {
Error ConflictError
}{conflictError})
if err != nil {
return "", err
}
log.Println(resp.Status, record.Name, record.Type, record.GetValue())
return "", conflictError
}
if resp.StatusCode != http.StatusOK {
return "", errors.New(resp.Status)
}
var uid string
err = json.NewDecoder(resp.Body).Decode(&struct {
Uid *string
}{&uid})
if err != nil {
return "", err
}
return uid, nil
}
func (c Client) RemoveDNSRecord(domain, recId string) error {
endpoint := fmt.Sprintf("v2/domains/%s/records/%s", domain, recId)
resp, err := c.makeAndDoRequest(http.MethodDelete, endpoint, nil)
defer closeResponseBody(resp)
if err != nil {
return err
}
if resp.StatusCode != http.StatusOK {
return errors.New(resp.Status)
}
return nil
}