-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi.go
213 lines (185 loc) · 5.42 KB
/
api.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
package moexiss
import (
"bytes"
"context"
"encoding/json"
"fmt"
"io"
"net/http"
"net/url"
"runtime"
"strings"
)
// Global constants.
const (
libraryName = "MoEx ISS"
libraryVersion = "v0.0.1"
defaultBaseURL = "https://iss.moex.com/iss/"
)
// User Agent should always following the below style.
//
// MoExIss (OS; ARCH) LIB/VER APP/VER
const (
libraryUserAgentPrefix = "MoExIss (" + runtime.GOOS + "; " + runtime.GOARCH + ") "
libraryUserAgent = libraryUserAgentPrefix + libraryName + "/" + libraryVersion
)
// Response represent a response of BareDo an Do functions
type Response struct {
*http.Response
}
type service struct {
client *Client
}
// Client structure represents a client of MoEx ISS API
type Client struct {
client *http.Client
// Base URL for API requests.
BaseURL *url.URL
// User agent used when communicating with the MoEx Iss API.
UserAgent string
common service // Reuse a single struct instead of allocating one for each service on the heap.
Securities *SecuritiesService
Index *IndexService
Turnovers *TurnoverService
Aggregates *AggregateService
Indices *IndicesService
HistoryListing *HistoryListingService
Stats *StatsService
}
// NewClient creates an instance of Client
func NewClient(httpClient *http.Client) *Client {
if httpClient == nil {
httpClient = &http.Client{}
}
baseURL, _ := url.Parse(defaultBaseURL)
c := &Client{client: httpClient, BaseURL: baseURL, UserAgent: libraryUserAgent}
c.common.client = c
c.Securities = (*SecuritiesService)(&c.common)
c.Index = (*IndexService)(&c.common)
c.Turnovers = (*TurnoverService)(&c.common)
c.Aggregates = (*AggregateService)(&c.common)
c.Indices = (*IndicesService)(&c.common)
c.HistoryListing = (*HistoryListingService)(&c.common)
c.Stats = (*StatsService)(&c.common)
return c
}
// NewRequest creates an API request. A relative URL can be provided in urlStr,
// in which case it is resolved relative to the BaseURL of the Client.
// Relative URLs should always be specified without a preceding slash. If
// specified, the value pointed to by body is JSON encoded and included as the
// request body.
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)
}
return req, nil
}
// Do sends an API request and returns the API response. The API response is
// JSON decoded and stored in the value pointed to by v, or returned as an
// error if an API error has occurred. If v implements the io.Writer interface,
// the raw response body will be written to v, without attempting to first
// decode it. If v is nil, and no error happens, the response is returned as is.
//
// The provided ctx must be non-nil, if it is nil an error is returned. If it
// is canceled or times out, ctx.Err() will be returned.
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:
var b []byte
b, err = io.ReadAll(resp.Body)
if err != nil {
return nil, err
}
decErr := json.Unmarshal(b, &v)
if decErr == io.EOF {
decErr = nil // ignore EOF errors caused by empty response body
}
if decErr != nil {
err = decErr
}
}
if err != nil {
return nil, err
}
err = resp.Body.Close()
if err != nil {
return nil, err
}
return resp, err
}
// BareDo sends an API request and lets you handle the api response. If an error
// or API Error occurs, the error will contain more information. Otherwise you
// are supposed to read and close the response's Body.
//
// The provided ctx must be non-nil, if it is nil an error is returned. If it is
// canceled or times out, ctx.Err() will be returned.
func (c *Client) BareDo(ctx context.Context, req *http.Request) (*Response, error) {
if ctx == nil {
return nil, ErrNonNilContext
}
resp, err := c.client.Do(req)
if err != nil {
// If we got an error, and the context has been canceled,
// the context's error is probably more useful.
select {
case <-ctx.Done():
return nil, ctx.Err()
default:
}
// returning *url.Error.
if e, ok := err.(*url.Error); ok {
return nil, e
}
return nil, err
}
response := &Response{resp}
err = CheckResponse(resp)
if err != nil {
clErr := resp.Body.Close()
if clErr != nil {
return nil, fmt.Errorf("got some errors: \n%s \nand \n%s", err.Error(), clErr.Error())
}
return nil, err
}
return response, err
}
// CheckResponse checks the API response for errors, and returns them if
// present. A response is considered an error if it has a status code outside
// the 200 range
func CheckResponse(r *http.Response) error {
if c := r.StatusCode; 200 <= c && c <= 299 {
return nil
}
return fmt.Errorf("status:[%d] %s", r.StatusCode, r.Status)
}