-
Notifications
You must be signed in to change notification settings - Fork 1
/
depocket.go
206 lines (172 loc) · 3.88 KB
/
depocket.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
package client
import (
"bytes"
"context"
"encoding/json"
"errors"
"fmt"
"io"
"net/http"
"net/url"
"reflect"
"strings"
"sync"
"github.com/google/go-querystring/query"
)
const (
defaultBaseURL = "https://sdk.depocket.io/"
userAgent = "DePocket-GoClient"
)
var errNonNilContext = errors.New("context must be non-nil")
type Client struct {
clientMu sync.Mutex
client *http.Client
BaseURL *url.URL
common service
Tokens *TokenService
Pools *PoolService
Prices *PriceService
UserAgent string
ApiKey string
}
type service struct {
client *Client
}
type ListOptions struct {
Chain string `url:"chain,omitempty"`
}
func (c *Client) Client() *http.Client {
c.clientMu.Lock()
defer c.clientMu.Unlock()
clientCopy := *c.client
return &clientCopy
}
func NewClient(httpClient *http.Client, baseUrl *string, apiKey string) *Client {
if httpClient == nil {
httpClient = &http.Client{}
}
bURL, _ := url.Parse(defaultBaseURL)
if baseUrl != nil {
bURL, _ = url.Parse(*baseUrl)
}
c := &Client{client: httpClient, BaseURL: bURL, UserAgent: userAgent, ApiKey: apiKey}
c.common.client = c
c.Tokens = (*TokenService)(&c.common)
c.Pools = (*PoolService)(&c.common)
c.Prices = (*PriceService)(&c.common)
return c
}
func (c *Client) NewRequest(method, urlStr string, body interface{}) (*http.Request, error) {
if !strings.HasSuffix(c.BaseURL.Path, "/") {
return nil, fmt.Errorf("BaseURL must have a trailing slash, but %q does not", c.BaseURL)
}
u, err := c.BaseURL.Parse(urlStr)
if err != nil {
return nil, err
}
var buf io.ReadWriter
if body != nil {
buf = &bytes.Buffer{}
enc := json.NewEncoder(buf)
enc.SetEscapeHTML(false)
err := enc.Encode(body)
if err != nil {
return nil, err
}
}
req, err := http.NewRequest(method, u.String(), buf)
if err != nil {
return nil, err
}
if body != nil {
req.Header.Set("Content-Type", "application/json")
}
if c.UserAgent != "" {
req.Header.Set("User-Agent", c.UserAgent)
}
req.Header.Set("api-key", c.ApiKey)
return req, nil
}
type Response struct {
*http.Response
}
type ResponseBody struct {
Data interface{} `json:"data"`
ErrorCode int `json:"error_code"`
}
func newResponse(r *http.Response) *Response {
response := &Response{Response: r}
return response
}
func (c *Client) BareDo(ctx context.Context, req *http.Request) (*Response, error) {
if ctx == nil {
return nil, errNonNilContext
}
req = req.WithContext(ctx)
resp, err := c.client.Do(req)
if err != nil {
select {
case <-ctx.Done():
return nil, ctx.Err()
default:
}
// If the error type is *url.Error, sanitize its URL before returning.
if e, ok := err.(*url.Error); ok {
if url, err := url.Parse(e.URL); err == nil {
e.URL = sanitizeURL(url).String()
return nil, e
}
}
return nil, err
}
response := newResponse(resp)
//Todo: Check response error at there
return response, err
}
func (c *Client) Do(ctx context.Context, req *http.Request, v interface{}) (*Response, error) {
resp, err := c.BareDo(ctx, req)
if err != nil {
return resp, err
}
switch v := v.(type) {
case nil:
case io.Writer:
_, err = io.Copy(v, resp.Body)
default:
decErr := json.NewDecoder(resp.Body).Decode(&v)
if decErr == io.EOF {
decErr = nil // ignore EOF errors caused by empty response body
}
if decErr != nil {
err = decErr
}
}
return resp, err
}
func sanitizeURL(uri *url.URL) *url.URL {
if uri == nil {
return nil
}
params := uri.Query()
if len(params.Get("api_key")) > 0 {
params.Set("api_key", "FILTERED")
uri.RawQuery = params.Encode()
}
return uri
}
func addOptions(s string, opts interface{}) (string, error) {
v := reflect.ValueOf(opts)
if v.Kind() == reflect.Ptr && v.IsNil() {
return s, nil
}
u, err := url.Parse(s)
if err != nil {
return s, err
}
qs, err := query.Values(opts)
if err != nil {
return s, err
}
u.RawQuery = qs.Encode()
return u.String(), nil
}