-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathclient.go
124 lines (105 loc) · 2.61 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
package rest
import (
"encoding/json"
"fmt"
"time"
"github.com/google/go-querystring/query"
"github.com/iaping/go-okx/common"
"github.com/iaping/go-okx/rest/api"
"github.com/valyala/fasthttp"
)
var (
DefaultFastHttpClient = &fasthttp.Client{
Name: "go-okx",
MaxConnsPerHost: 16,
MaxIdleConnDuration: 20 * time.Second,
ReadTimeout: 10 * time.Second,
WriteTimeout: 10 * time.Second,
}
)
type Client struct {
Host string
Auth common.Auth
C *fasthttp.Client
}
// new *Client
func New(host string, auth common.Auth, c *fasthttp.Client) *Client {
if host == "" {
host = "https://www.okx.com"
}
if c == nil {
c = DefaultFastHttpClient
}
return &Client{
Host: host,
Auth: auth,
C: c,
}
}
// do request
func (c *Client) Do(req api.IRequest, resp api.IResponse) error {
data, err := c.do(req)
if err != nil {
return err
}
if err := json.Unmarshal(data, &resp); err != nil {
return err
}
if !resp.IsOk() {
return NewOKXError(resp.GetCode(), resp.GetMessage())
}
return nil
}
// do request
func (c *Client) do(r api.IRequest) ([]byte, error) {
req := c.newRequest(r)
resp := fasthttp.AcquireResponse()
defer func() {
fasthttp.ReleaseRequest(req)
fasthttp.ReleaseResponse(resp)
}()
if err := c.C.Do(req, resp); err != nil {
return nil, err
}
if resp.StatusCode() != fasthttp.StatusOK {
return nil, fmt.Errorf("http status code:%d, desc:%s", resp.StatusCode(), string(resp.Body()))
}
return resp.Body(), nil
}
// new *fasthttp.Request
func (c *Client) newRequest(r api.IRequest) *fasthttp.Request {
req := fasthttp.AcquireRequest()
sign := c.newSignature(r)
headers := map[string]string{
fasthttp.HeaderContentType: "application/json;charset=utf-8",
fasthttp.HeaderAccept: "application/json",
"OK-ACCESS-PROJECT": c.Auth.ObjectID,
"OK-ACCESS-KEY": c.Auth.ApiKey,
"OK-ACCESS-PASSPHRASE": c.Auth.Passphrase,
"OK-ACCESS-SIGN": sign.Build(),
"OK-ACCESS-TIMESTAMP": sign.Timestamp,
}
if c.Auth.Simulated {
headers["x-simulated-trading"] = "1"
}
for k, v := range headers {
req.Header.Set(k, v)
}
req.Header.SetMethod(sign.Method)
req.SetRequestURI(c.Host + sign.Path)
if sign.Body != "" {
req.SetBodyString(sign.Body)
}
return req
}
// new *Signature
func (c *Client) newSignature(r api.IRequest) *common.Signature {
var body []byte
path := r.GetPath()
if r.IsPost() {
body, _ = json.Marshal(r.GetParam())
} else if values, _ := query.Values(r.GetParam()); len(values) > 0 {
path += "?" + values.Encode()
}
return c.Auth.Signature(r.GetMethod(), path, string(body), false)
}