132 lines
3.1 KiB
Go
132 lines
3.1 KiB
Go
// Code generated by "requestgen -method GET -responseType .APIResponse -responseDataField Data -url /api/v1/accounts/:accountID -type GetAccountRequest -responseDataType .Account"; DO NOT EDIT.
|
|
|
|
package kucoinapi
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
"net/url"
|
|
"regexp"
|
|
)
|
|
|
|
func (g *GetAccountRequest) AccountID(accountID string) *GetAccountRequest {
|
|
g.accountID = accountID
|
|
return g
|
|
}
|
|
|
|
// GetQueryParameters builds and checks the query parameters and returns url.Values
|
|
func (g *GetAccountRequest) GetQueryParameters() (url.Values, error) {
|
|
var params = map[string]interface{}{}
|
|
|
|
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 *GetAccountRequest) 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 *GetAccountRequest) GetParametersQuery() (url.Values, error) {
|
|
query := url.Values{}
|
|
|
|
params, err := g.GetParameters()
|
|
if err != nil {
|
|
return query, err
|
|
}
|
|
|
|
for k, v := range params {
|
|
query.Add(k, fmt.Sprintf("%v", v))
|
|
}
|
|
|
|
return query, nil
|
|
}
|
|
|
|
// GetParametersJSON converts the parameters from GetParameters into the JSON format
|
|
func (g *GetAccountRequest) 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 *GetAccountRequest) GetSlugParameters() (map[string]interface{}, error) {
|
|
var params = map[string]interface{}{}
|
|
// check accountID field -> json key accountID
|
|
accountID := g.accountID
|
|
|
|
// assign parameter of accountID
|
|
params["accountID"] = accountID
|
|
|
|
return params, nil
|
|
}
|
|
|
|
func (g *GetAccountRequest) 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 *GetAccountRequest) 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
|
|
}
|
|
|
|
func (g *GetAccountRequest) Do(ctx context.Context) (*Account, error) {
|
|
|
|
// no body params
|
|
var params interface{}
|
|
query := url.Values{}
|
|
|
|
apiURL := "/api/v1/accounts/:accountID"
|
|
slugs, err := g.GetSlugsMap()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
apiURL = g.applySlugsToUrl(apiURL, slugs)
|
|
|
|
req, err := g.client.NewAuthenticatedRequest(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
|
|
}
|
|
var data Account
|
|
if err := json.Unmarshal(apiResponse.Data, &data); err != nil {
|
|
return nil, err
|
|
}
|
|
return &data, nil
|
|
}
|