forked from SparkPost/gosparkpost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
common.go
327 lines (284 loc) · 9.2 KB
/
common.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
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
package gosparkpost
import (
"bytes"
"context"
"encoding/base64"
"encoding/json"
"io/ioutil"
"mime"
"net/http"
"net/http/httputil"
"regexp"
"strings"
"github.com/pkg/errors"
)
// Config includes all information necessary to make an API request.
type Config struct {
BaseUrl string
ApiKey string
Username string
Password string
ApiVersion int
Verbose bool
}
// Client contains connection, configuration, and authentication information.
// Specifying your own http.Client gives you lots of control over how connections are made.
// Clients are safe for concurrent (read-only) reuse by multiple goroutines.
// Headers is useful to set subaccount (X-MSYS-SUBACCOUNT header) and any other custom headers.
// All changes to Headers must happen before Client is exposed to possible concurrent use.
type Client struct {
Config *Config
Client *http.Client
Headers *http.Header
}
var nonDigit *regexp.Regexp = regexp.MustCompile(`\D`)
// NewConfig builds a Config object using the provided map.
func NewConfig(m map[string]string) (*Config, error) {
c := &Config{}
if baseurl, ok := m["baseurl"]; ok {
c.BaseUrl = baseurl
} else {
return nil, errors.New("BaseUrl is required for api config")
}
if apikey, ok := m["apikey"]; ok {
c.ApiKey = apikey
} else {
return nil, errors.New("ApiKey is required for api config")
}
return c, nil
}
// Response contains information about the last HTTP response.
// Helpful when an error message doesn't necessarily give the complete picture.
// Also contains any messages emitted as a result of the Verbose config option.
type Response struct {
HTTP *http.Response
Body []byte
Verbose map[string]string
Results interface{} `json:"results,omitempty"`
Errors SPErrors `json:"errors,omitempty"`
}
// HTTPError returns nil when the HTTP response code is in the range 200-299.
// If the API has returned a JSON error in the expected format, return that.
// Otherwise, return an error containing the HTTP code and response body.
func (res *Response) HTTPError() error {
if res == nil {
return errors.New("Internal error: Response may not be nil")
} else if res.HTTP == nil {
return errors.New("Internal error: Response.HTTP may not be nil")
}
if Is2XX(res.HTTP.StatusCode) {
return nil
} else if len(res.Errors) > 0 {
return res.Errors
}
return SPErrors{{
Code: res.HTTP.Status,
Message: string(res.Body),
Description: "HTTP/JSON Error",
}}
}
// SPErrors is the plural of SPError
type SPErrors []SPError
// SPError mirrors the error format returned by SparkPost APIs.
type SPError struct {
Message string `json:"message"`
Code string `json:"code"`
Description string `json:"description"`
Part string `json:"part,omitempty"`
Line int `json:"line,omitempty"`
}
// Error satisfies the builtin Error interface
func (e SPErrors) Error() string {
// safe to ignore errors when Marshaling a constant type
jsonb, _ := json.Marshal(e)
return string(jsonb)
}
// Init pulls together everything necessary to make an API request.
// Caller may provide their own http.Client by setting it in the provided API object.
func (c *Client) Init(cfg *Config) error {
// Set default values
if cfg.BaseUrl == "" {
cfg.BaseUrl = "https://api.sparkpost.com"
} else if !strings.HasPrefix(cfg.BaseUrl, "https://") {
return errors.New("API base url must be https!")
}
if cfg.ApiVersion == 0 {
cfg.ApiVersion = 1
}
c.Config = cfg
c.Headers = &http.Header{}
if c.Client == nil {
c.Client = http.DefaultClient
}
return nil
}
// HttpPost sends a Post request with the provided JSON payload to the specified url.
// Query params are supported via net/url - roll your own and stringify it.
// Authenticate using the configured API key.
func (c *Client) HttpPost(ctx context.Context, url string, data []byte) (*Response, error) {
return c.DoRequest(ctx, "POST", url, data)
}
// HttpGet sends a Get request to the specified url.
// Query params are supported via net/url - roll your own and stringify it.
// Authenticate using the configured API key.
func (c *Client) HttpGet(ctx context.Context, url string) (*Response, error) {
return c.DoRequest(ctx, "GET", url, nil)
}
// HttpPut sends a Put request with the provided JSON payload to the specified url.
// Query params are supported via net/url - roll your own and stringify it.
// Authenticate using the configured API key.
func (c *Client) HttpPut(ctx context.Context, url string, data []byte) (*Response, error) {
return c.DoRequest(ctx, "PUT", url, data)
}
// HttpDelete sends a Delete request to the provided url.
// Query params are supported via net/url - roll your own and stringify it.
// Authenticate using the configured API key.
func (c *Client) HttpDelete(ctx context.Context, url string) (*Response, error) {
return c.DoRequest(ctx, "DELETE", url, nil)
}
func (c *Client) DoRequest(ctx context.Context, method, urlStr string, data []byte) (*Response, error) {
if c == nil {
return nil, errors.New("Client must be non-nil!")
} else if c.Client == nil {
return nil, errors.New("Client.Client (http.Client) must be non-nil!")
} else if c.Config == nil {
return nil, errors.New("Client.Config must be non-nil!")
}
req, err := http.NewRequest(method, urlStr, bytes.NewBuffer(data))
if err != nil {
return nil, errors.Wrap(err, "building request")
}
ares := &Response{}
if c.Config.Verbose {
if ares.Verbose == nil {
ares.Verbose = map[string]string{}
}
ares.Verbose["http_method"] = method
ares.Verbose["http_uri"] = urlStr
}
if data != nil {
req.Header.Set("Content-Type", "application/json")
if c.Config.Verbose {
ares.Verbose["http_postdata"] = string(data)
}
}
// TODO: set User-Agent based on gosparkpost version and possibly git's short hash
req.Header.Set("User-Agent", "GoSparkPost v0.1")
if c.Config.ApiKey != "" {
req.Header.Set("Authorization", c.Config.ApiKey)
} else if c.Config.Username != "" {
req.Header.Add("Authorization", "Basic "+basicAuth(c.Config.Username, c.Config.Password))
}
// Forward additional headers set in client to request
if c.Headers != nil {
for header, values := range map[string][]string(*c.Headers) {
for _, value := range values {
req.Header.Add(header, value)
}
}
}
if ctx == nil {
ctx = context.Background()
}
// set any headers provided in context
if header, ok := ctx.Value("http.Header").(http.Header); ok {
for key, vals := range map[string][]string(header) {
req.Header.Del(key)
for _, val := range vals {
req.Header.Add(key, val)
}
}
}
req = req.WithContext(ctx)
if c.Config.Verbose {
reqBytes, err := httputil.DumpRequestOut(req, false)
if err != nil {
return ares, errors.Wrap(err, "saving request")
}
ares.Verbose["http_requestdump"] = string(reqBytes)
}
res, err := c.Client.Do(req)
ares.HTTP = res
if c.Config.Verbose {
ares.Verbose["http_status"] = ares.HTTP.Status
bodyBytes, dumpErr := httputil.DumpResponse(res, true)
if dumpErr != nil {
ares.Verbose["http_responsedump_err"] = dumpErr.Error()
} else {
ares.Verbose["http_responsedump"] = string(bodyBytes)
}
}
if err != nil {
return ares, errors.Wrap(err, "error response")
}
return ares, nil
}
// Is2XX returns true if the provided HTTP response code is in the range 200-299.
func Is2XX(code int) bool {
if code < 300 && code >= 200 {
return true
}
return false
}
func basicAuth(username, password string) string {
auth := username + ":" + password
return base64.StdEncoding.EncodeToString([]byte(auth))
}
// ReadBody is a convenience method that returns the http.Response body.
// The first time this function is called, the body is read from the
// http.Response. For subsequent calls, the cached version in
// Response.Body is returned.
func (r *Response) ReadBody() ([]byte, error) {
// Calls 2+ to this function for the same http.Response will now DWIM
if r.Body != nil {
return r.Body, nil
}
defer r.HTTP.Body.Close()
bodyBytes, err := ioutil.ReadAll(r.HTTP.Body)
if err != nil {
return bodyBytes, errors.Wrap(err, "reading http body")
}
r.Body = bodyBytes
return bodyBytes, nil
}
// ParseResponse pulls info from JSON http responses into api.Response object.
// It's helpful to call Response.AssertJson before calling this function.
func (r *Response) ParseResponse() error {
body, err := r.ReadBody()
if err != nil {
return err
}
// Don't try to unmarshal an empty response
if bytes.Compare(body, []byte("")) == 0 {
return nil
}
err = json.Unmarshal(body, r)
if err != nil {
return errors.Wrap(err, "parsing api response")
}
return nil
}
// AssertJson returns an error if the provided HTTP response isn't JSON.
func (r *Response) AssertJson() error {
if r.HTTP == nil {
return errors.New("AssertJson got nil http.Response")
}
body, err := r.ReadBody()
if err != nil {
return err
}
// Don't fail on an empty response
if bytes.Compare(body, []byte("")) == 0 {
return nil
}
ctype := r.HTTP.Header.Get("Content-Type")
mediaType, _, err := mime.ParseMediaType(ctype)
if err != nil {
return errors.Wrap(err, "parsing content-type")
}
// allow things like "application/json; charset=utf-8" in addition to the bare content type
if mediaType != "application/json" {
return errors.Errorf("Expected json, got [%s] with code %d", mediaType, r.HTTP.StatusCode)
}
return nil
}