227 lines
5.2 KiB
Go
227 lines
5.2 KiB
Go
|
// Code generated by "requestgen -method GET -responseType .APIResponse -responseDataField Data -url /api/v5/market/candles -type GetCandlesRequest -responseDataType KLineSlice"; DO NOT EDIT.
|
||
|
|
||
|
package okexapi
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"encoding/json"
|
||
|
"fmt"
|
||
|
"net/url"
|
||
|
"reflect"
|
||
|
"regexp"
|
||
|
"strconv"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
func (g *GetCandlesRequest) InstrumentID(instrumentID string) *GetCandlesRequest {
|
||
|
g.instrumentID = instrumentID
|
||
|
return g
|
||
|
}
|
||
|
|
||
|
func (g *GetCandlesRequest) Limit(limit int) *GetCandlesRequest {
|
||
|
g.limit = &limit
|
||
|
return g
|
||
|
}
|
||
|
|
||
|
func (g *GetCandlesRequest) Bar(bar string) *GetCandlesRequest {
|
||
|
g.bar = &bar
|
||
|
return g
|
||
|
}
|
||
|
|
||
|
func (g *GetCandlesRequest) After(after time.Time) *GetCandlesRequest {
|
||
|
g.after = &after
|
||
|
return g
|
||
|
}
|
||
|
|
||
|
func (g *GetCandlesRequest) Before(before time.Time) *GetCandlesRequest {
|
||
|
g.before = &before
|
||
|
return g
|
||
|
}
|
||
|
|
||
|
// GetQueryParameters builds and checks the query parameters and returns url.Values
|
||
|
func (g *GetCandlesRequest) GetQueryParameters() (url.Values, error) {
|
||
|
var params = map[string]interface{}{}
|
||
|
// check instrumentID field -> json key instId
|
||
|
instrumentID := g.instrumentID
|
||
|
|
||
|
// assign parameter of instrumentID
|
||
|
params["instId"] = instrumentID
|
||
|
// check limit field -> json key limit
|
||
|
if g.limit != nil {
|
||
|
limit := *g.limit
|
||
|
|
||
|
// assign parameter of limit
|
||
|
params["limit"] = limit
|
||
|
} else {
|
||
|
}
|
||
|
// check bar field -> json key bar
|
||
|
if g.bar != nil {
|
||
|
bar := *g.bar
|
||
|
|
||
|
// assign parameter of bar
|
||
|
params["bar"] = bar
|
||
|
} else {
|
||
|
}
|
||
|
// check after field -> json key after
|
||
|
if g.after != nil {
|
||
|
after := *g.after
|
||
|
|
||
|
// assign parameter of after
|
||
|
// convert time.Time to milliseconds time stamp
|
||
|
params["after"] = strconv.FormatInt(after.UnixNano()/int64(time.Millisecond), 10)
|
||
|
} else {
|
||
|
}
|
||
|
// check before field -> json key before
|
||
|
if g.before != nil {
|
||
|
before := *g.before
|
||
|
|
||
|
// assign parameter of before
|
||
|
// convert time.Time to milliseconds time stamp
|
||
|
params["before"] = strconv.FormatInt(before.UnixNano()/int64(time.Millisecond), 10)
|
||
|
} else {
|
||
|
}
|
||
|
|
||
|
query := url.Values{}
|
||
|
for _k, _v := range params {
|
||
|
query.Add(_k, fmt.Sprintf("%v", _v))
|
||
|
}
|
||
|
|
||
|
return query, nil
|
||
|
}
|
||
|
|
||
|
// GetParameters builds and checks the parameters and return the result in a map object
|
||
|
func (g *GetCandlesRequest) GetParameters() (map[string]interface{}, error) {
|
||
|
var params = map[string]interface{}{}
|
||
|
|
||
|
return params, nil
|
||
|
}
|
||
|
|
||
|
// GetParametersQuery converts the parameters from GetParameters into the url.Values format
|
||
|
func (g *GetCandlesRequest) GetParametersQuery() (url.Values, error) {
|
||
|
query := url.Values{}
|
||
|
|
||
|
params, err := g.GetParameters()
|
||
|
if err != nil {
|
||
|
return query, err
|
||
|
}
|
||
|
|
||
|
for _k, _v := range params {
|
||
|
if g.isVarSlice(_v) {
|
||
|
g.iterateSlice(_v, func(it interface{}) {
|
||
|
query.Add(_k+"[]", fmt.Sprintf("%v", it))
|
||
|
})
|
||
|
} else {
|
||
|
query.Add(_k, fmt.Sprintf("%v", _v))
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return query, nil
|
||
|
}
|
||
|
|
||
|
// GetParametersJSON converts the parameters from GetParameters into the JSON format
|
||
|
func (g *GetCandlesRequest) GetParametersJSON() ([]byte, error) {
|
||
|
params, err := g.GetParameters()
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
return json.Marshal(params)
|
||
|
}
|
||
|
|
||
|
// GetSlugParameters builds and checks the slug parameters and return the result in a map object
|
||
|
func (g *GetCandlesRequest) GetSlugParameters() (map[string]interface{}, error) {
|
||
|
var params = map[string]interface{}{}
|
||
|
|
||
|
return params, nil
|
||
|
}
|
||
|
|
||
|
func (g *GetCandlesRequest) applySlugsToUrl(url string, slugs map[string]string) string {
|
||
|
for _k, _v := range slugs {
|
||
|
needleRE := regexp.MustCompile(":" + _k + "\\b")
|
||
|
url = needleRE.ReplaceAllString(url, _v)
|
||
|
}
|
||
|
|
||
|
return url
|
||
|
}
|
||
|
|
||
|
func (g *GetCandlesRequest) iterateSlice(slice interface{}, _f func(it interface{})) {
|
||
|
sliceValue := reflect.ValueOf(slice)
|
||
|
for _i := 0; _i < sliceValue.Len(); _i++ {
|
||
|
it := sliceValue.Index(_i).Interface()
|
||
|
_f(it)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (g *GetCandlesRequest) isVarSlice(_v interface{}) bool {
|
||
|
rt := reflect.TypeOf(_v)
|
||
|
switch rt.Kind() {
|
||
|
case reflect.Slice:
|
||
|
return true
|
||
|
}
|
||
|
return false
|
||
|
}
|
||
|
|
||
|
func (g *GetCandlesRequest) GetSlugsMap() (map[string]string, error) {
|
||
|
slugs := map[string]string{}
|
||
|
params, err := g.GetSlugParameters()
|
||
|
if err != nil {
|
||
|
return slugs, nil
|
||
|
}
|
||
|
|
||
|
for _k, _v := range params {
|
||
|
slugs[_k] = fmt.Sprintf("%v", _v)
|
||
|
}
|
||
|
|
||
|
return slugs, nil
|
||
|
}
|
||
|
|
||
|
// GetPath returns the request path of the API
|
||
|
func (g *GetCandlesRequest) GetPath() string {
|
||
|
return "/api/v5/market/candles"
|
||
|
}
|
||
|
|
||
|
// Do generates the request object and send the request object to the API endpoint
|
||
|
func (g *GetCandlesRequest) Do(ctx context.Context) (KLineSlice, error) {
|
||
|
|
||
|
// no body params
|
||
|
var params interface{}
|
||
|
query, err := g.GetQueryParameters()
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
var apiURL string
|
||
|
|
||
|
apiURL = g.GetPath()
|
||
|
|
||
|
req, err := g.client.NewRequest(ctx, "GET", apiURL, query, params)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
response, err := g.client.SendRequest(req)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
var apiResponse APIResponse
|
||
|
if err := response.DecodeJSON(&apiResponse); err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
type responseValidator interface {
|
||
|
Validate() error
|
||
|
}
|
||
|
validator, ok := interface{}(apiResponse).(responseValidator)
|
||
|
if ok {
|
||
|
if err := validator.Validate(); err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
}
|
||
|
var data KLineSlice
|
||
|
if err := json.Unmarshal(apiResponse.Data, &data); err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return data, nil
|
||
|
}
|