-
-
Notifications
You must be signed in to change notification settings - Fork 1k
/
client.go
137 lines (111 loc) · 2.72 KB
/
client.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
package internal
import (
"bytes"
"encoding/json"
"fmt"
"net/http"
"time"
)
const apiEndpoint = "https://njal.la/api/1/"
// Client is a Njalla API client.
type Client struct {
HTTPClient *http.Client
apiEndpoint string
token string
}
// NewClient creates a new Client.
func NewClient(token string) *Client {
return &Client{
HTTPClient: &http.Client{Timeout: 5 * time.Second},
apiEndpoint: apiEndpoint,
token: token,
}
}
// AddRecord adds a record.
func (c *Client) AddRecord(record Record) (*Record, error) {
data := APIRequest{
Method: "add-record",
Params: record,
}
result, err := c.do(data)
if err != nil {
return nil, err
}
var rcd Record
err = json.Unmarshal(result, &rcd)
if err != nil {
return nil, fmt.Errorf("failed to unmarshal response result: %w", err)
}
return &rcd, nil
}
// RemoveRecord removes a record.
func (c *Client) RemoveRecord(id int, domain string) error {
data := APIRequest{
Method: "remove-record",
Params: Record{
ID: id,
Domain: domain,
},
}
_, err := c.do(data)
if err != nil {
return err
}
return nil
}
// ListRecords list the records for one domain.
func (c *Client) ListRecords(domain string) ([]Record, error) {
data := APIRequest{
Method: "list-records",
Params: Record{
Domain: domain,
},
}
result, err := c.do(data)
if err != nil {
return nil, err
}
var rcds Records
err = json.Unmarshal(result, &rcds)
if err != nil {
return nil, fmt.Errorf("failed to unmarshal response result: %w", err)
}
return rcds.Records, nil
}
func (c *Client) do(data APIRequest) (json.RawMessage, error) {
req, err := c.createRequest(data)
if err != nil {
return nil, err
}
resp, err := c.HTTPClient.Do(req)
if err != nil {
return nil, fmt.Errorf("failed to perform request: %w", err)
}
defer func() { _ = resp.Body.Close() }()
if resp.StatusCode != http.StatusOK {
return nil, fmt.Errorf("unexpected error: %d", resp.StatusCode)
}
apiResponse := APIResponse{}
err = json.NewDecoder(resp.Body).Decode(&apiResponse)
if err != nil {
return nil, fmt.Errorf("failed to unmarshal response: %w", err)
}
if apiResponse.Error != nil {
return nil, apiResponse.Error
}
return apiResponse.Result, nil
}
func (c *Client) createRequest(data APIRequest) (*http.Request, error) {
reqBody, err := json.Marshal(data)
if err != nil {
return nil, fmt.Errorf("failed to marshall request body: %w", err)
}
req, err := http.NewRequest(http.MethodPost, c.apiEndpoint, bytes.NewReader(reqBody))
if err != nil {
return nil, fmt.Errorf("failed to create request: %w", err)
}
req.Header.Set("Accept", "application/json")
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Authorization", "Njalla "+c.token)
return req, nil
}