-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathclient.go
More file actions
419 lines (342 loc) · 11.1 KB
/
client.go
File metadata and controls
419 lines (342 loc) · 11.1 KB
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
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
// Copyright (c) 2017, 2019 Tim Heckman
// Use of this source code is governed by the MIT License that can be found in
// the LICENSE file at the root of this repository.
package ipdata
import (
"bytes"
"context"
"encoding/json"
"fmt"
"io"
"net"
"net/http"
"net/url"
"runtime"
"strings"
"time"
"github.com/pkg/errors"
)
// Version is the package version
const Version = "0.8.0"
// fqpn is the Fully Qualified Package Name for use in the client's User-Agent
const fqpn = "github.com/theckman/go-ipdata"
const (
apiEndpoint = "https://api.ipdata.co/"
euAPIEndpoint = "https://eu-api.ipdata.co/"
apiAuthParam = "api-key"
)
var userAgent = fmt.Sprintf(
"go-ipdata/%s (%s) Go-http-client/%s (%s %s)",
Version, fqpn, runtime.Version(), runtime.GOOS, runtime.GOARCH,
)
var errAPIKey = errors.New("apiKey cannot be an empty string")
// Option is a functional option for configuring the Client.
type Option func(*Client)
// WithHTTPClient sets the underlying *http.Client used by the Client. This
// allows callers to configure custom timeouts, proxies, transports, or
// instrument the client with tracing (e.g. OpenTelemetry).
func WithHTTPClient(httpClient *http.Client) Option {
return func(c *Client) {
c.c = httpClient
}
}
// Client is the struct to represent the functionality presented by the
// https://ipdata.co API.
type Client struct {
c *http.Client // http client
e string // api endpoint
k string // api key
}
// NewClient takes an API key and optional Options, and returns a Client that
// uses the default endpoint (https://api.ipdata.co/).
func NewClient(apiKey string, opts ...Option) (Client, error) {
if len(apiKey) == 0 {
return Client{}, errAPIKey
}
c := Client{
c: newHTTPClient(),
e: apiEndpoint,
k: apiKey,
}
for _, opt := range opts {
opt(&c)
}
return c, nil
}
// NewEUClient takes an API key and optional Options, and returns a Client that
// uses the EU endpoint (https://eu-api.ipdata.co/). This ensures that all
// requests are routed through EU data centers only (Frankfurt, Paris, Ireland),
// which can be useful for GDPR compliance.
func NewEUClient(apiKey string, opts ...Option) (Client, error) {
if len(apiKey) == 0 {
return Client{}, errAPIKey
}
c := Client{
c: newHTTPClient(),
e: euAPIEndpoint,
k: apiKey,
}
for _, opt := range opts {
opt(&c)
}
return c, nil
}
type apiErr struct {
Message string `json:"message"`
}
// RawLookup uses the internal mechanics to make an HTTP request to the API and
// returns the HTTP response. This allows consumers of the API to implement
// their own behaviors. If an API error occurs, the error value will be of type
// Error.
func (c Client) RawLookup(ip string) (*http.Response, error) {
return c.RawLookupWithContext(context.Background(), ip)
}
// RawLookupWithContext is a RawLookup that uses a provided context.Context.
func (c Client) RawLookupWithContext(ctx context.Context, ip string) (*http.Response, error) {
// build request
req, err := newGetRequestWithContext(ctx, c.e+ip, c.k)
if err != nil {
return nil, errors.Wrapf(err, "error building request to look up %s", ip)
}
// action request
resp, err := c.c.Do(req)
if err != nil {
return nil, errors.Wrapf(err, "http request to %q failed", req.URL.Scheme+"://"+req.URL.Host+req.URL.Path)
}
switch resp.StatusCode {
case http.StatusOK: // 200
// we can try and parse
return resp, nil
default:
// provide response body as error to consumer
body, err := io.ReadAll(resp.Body)
if err != nil {
return nil, errors.Wrapf(err, "failed to read body from response with status code %q: %s", resp.Status, err)
}
var a apiErr
if err := json.Unmarshal(body, &a); err != nil {
return nil, errors.Errorf("request for %q failed (unexpected response): %s: %v", ip, resp.Status, err)
}
return nil, newError(a.Message, resp.StatusCode)
}
}
func decodeIP(r io.Reader) (IP, error) {
body, err := io.ReadAll(r)
if err != nil {
return IP{}, err
}
ip := IP{}
if err := json.Unmarshal(body, &ip); err != nil {
return IP{}, fmt.Errorf("failed to parse JSON: %s", err)
}
return ip, nil
}
// Lookup takes an IP address to look up the details for. An empty string means
// you want the information about the current node's pubilc IP address. If an
// API error occurs, the error value will be of type Error.
func (c Client) Lookup(ip string) (IP, error) {
return c.LookupWithContext(context.Background(), ip)
}
// LookupWithContext is a Lookup that uses a provided context.Context.
func (c Client) LookupWithContext(ctx context.Context, ip string) (IP, error) {
resp, err := c.RawLookupWithContext(ctx, ip)
if err != nil {
return IP{}, err
}
defer func() {
_, _ = io.Copy(io.Discard, resp.Body)
_ = resp.Body.Close()
}()
pip, err := decodeIP(resp.Body)
if err != nil {
return IP{}, err
}
return pip, nil
}
// LookupFields takes an IP address and a list of fields to return. Only the
// specified fields will be populated in the response. If an API error occurs,
// the error value will be of type Error.
func (c Client) LookupFields(ip string, fields []string) (IP, error) {
return c.LookupFieldsWithContext(context.Background(), ip, fields)
}
// LookupFieldsWithContext is a LookupFields that uses a provided context.Context.
func (c Client) LookupFieldsWithContext(ctx context.Context, ip string, fields []string) (IP, error) {
reqURL := c.e + ip
if len(fields) > 0 {
reqURL += "?fields=" + strings.Join(fields, ",")
}
req, err := newGetRequestWithContext(ctx, reqURL, c.k)
if err != nil {
return IP{}, errors.Wrapf(err, "error building request to look up %s", ip)
}
resp, err := c.c.Do(req)
if err != nil {
return IP{}, errors.Wrapf(err, "http request to %q failed", req.URL.Scheme+"://"+req.URL.Host+req.URL.Path)
}
defer func() {
_, _ = io.Copy(io.Discard, resp.Body)
_ = resp.Body.Close()
}()
switch resp.StatusCode {
case http.StatusOK:
pip, err := decodeIP(resp.Body)
if err != nil {
return IP{}, err
}
return pip, nil
default:
body, err := io.ReadAll(resp.Body)
if err != nil {
return IP{}, errors.Wrapf(err, "failed to read body from response with status code %q: %s", resp.Status, err)
}
var a apiErr
if err := json.Unmarshal(body, &a); err != nil {
return IP{}, errors.Errorf("request for %q failed (unexpected response): %s: %v", ip, resp.Status, err)
}
return IP{}, newError(a.Message, resp.StatusCode)
}
}
func newGetRequestWithContext(ctx context.Context, urlStr, apiKey string) (*http.Request, error) {
if len(urlStr) == 0 {
return nil, errors.New("url cannot be an empty string")
}
if len(apiKey) == 0 {
return nil, errAPIKey
}
req, err := http.NewRequestWithContext(ctx, http.MethodGet, urlStr, nil)
if err != nil {
return nil, err
}
req.Header.Set("User-Agent", userAgent)
req.Header.Set("Accept", "application/json")
q := url.Values{apiAuthParam: []string{apiKey}}
req.URL.RawQuery = q.Encode()
return req, nil
}
// RawBulkLookup takes a set of IP addresses, and returns the response from the
// API.
func (c *Client) RawBulkLookup(ips []string) (*http.Response, error) {
return c.RawBulkLookupWithContext(context.Background(), ips)
}
// RawBulkLookupWithContext is a RawBulkLookup with a provided context.Context.
func (c *Client) RawBulkLookupWithContext(ctx context.Context, ips []string) (*http.Response, error) {
// build request
req, err := newBulkPostRequestWithContext(ctx, c.e+"bulk", c.k, ips)
if err != nil {
return nil, errors.Wrap(err, "error building bulk lookup request")
}
// action request
resp, err := c.c.Do(req)
if err != nil {
return nil, errors.Wrapf(err, "http request to %q failed", req.URL.Scheme+"://"+req.URL.Host+req.URL.Path)
}
switch resp.StatusCode {
case http.StatusOK: // 200
// we can try and parse
return resp, nil
default:
// provide response body as error to consumer
body, err := io.ReadAll(resp.Body)
if err != nil {
return nil, errors.Wrapf(err, "failed to read body from response with status code %q: %s", resp.Status, err)
}
var a apiErr
if err := json.Unmarshal(body, &a); err != nil {
return nil, errors.Errorf("request failed (unexpected response): %s: %v", resp.Status, err)
}
return nil, newError(a.Message, resp.StatusCode)
}
}
func newBulkPostRequestWithContext(ctx context.Context, urlStr, apiKey string, ips []string) (*http.Request, error) {
if len(urlStr) == 0 {
return nil, errors.New("url cannot be an empty string")
}
if len(apiKey) == 0 {
return nil, errAPIKey
}
if len(ips) == 0 {
return nil, errors.New("must provide at least one IP")
}
if err := ctx.Err(); err != nil {
return nil, err
}
buf := &bytes.Buffer{}
if err := json.NewEncoder(buf).Encode(ips); err != nil {
return nil, errors.Wrap(err, "failed to encode JSON")
}
req, err := http.NewRequestWithContext(ctx, http.MethodPost, urlStr, buf)
if err != nil {
return nil, err
}
req.Header.Set("User-Agent", userAgent)
req.Header.Set("Accept", "application/json")
req.Header.Set("Content-Type", "application/json")
q := url.Values{apiAuthParam: []string{apiKey}}
req.URL.RawQuery = q.Encode()
return req, nil
}
// BulkLookup takes a set of IP addresses, and returns a set of results from the
// API. If the request failed, or something was wrong with one of the inputs,
// the error value will be of type Error. If err is non-nil, the []*IP slice may
// contain data (if it was able to process some of the inputs). The error value
// will contain the index of the first error in the bulk response.
//
// Please note, any IPs that had a failed lookup will be a nil entry in the
// slice when an error is returned. So if you start to use the []*IP when err !=
// nil, you will need to add explicit nil checks to avoid pointer derefence
// panics.
func (c *Client) BulkLookup(ips []string) ([]*IP, error) {
return c.BulkLookupWithContext(context.Background(), ips)
}
// BulkLookupWithContext is a BulkLookup with a provided context.Context.
func (c *Client) BulkLookupWithContext(ctx context.Context, ips []string) ([]*IP, error) {
resp, err := c.RawBulkLookupWithContext(ctx, ips)
if err != nil {
return nil, err
}
defer func() {
_, _ = io.Copy(io.Discard, resp.Body)
_ = resp.Body.Close()
}()
body, err := io.ReadAll(resp.Body)
if err != nil {
return nil, errors.Wrap(err, "failed to read response body")
}
var bip []bulkIP
if err := json.Unmarshal(body, &bip); err != nil {
return nil, errors.Wrap(err, "failed to parse JSON")
}
res := make([]*IP, len(bip))
var retErr error
for i, ip := range bip {
if len(ip.Message) > 0 && retErr == nil {
retErr = Error{
m: ip.Message,
c: resp.StatusCode,
i: i,
}
continue
}
res[i] = bulkToIP(ip)
}
if retErr != nil {
return res, retErr
}
return res, nil // avoid nil interface check problem
}
func newHTTPClient() *http.Client {
return &http.Client{
Transport: &http.Transport{
Proxy: http.ProxyFromEnvironment,
DialContext: (&net.Dialer{
Timeout: 30 * time.Second,
KeepAlive: 30 * time.Second,
}).DialContext,
MaxIdleConns: 100,
IdleConnTimeout: 60 * time.Second,
TLSHandshakeTimeout: 10 * time.Second,
ExpectContinueTimeout: 2 * time.Second,
MaxIdleConnsPerHost: runtime.GOMAXPROCS(0) + 1,
},
}
}