forked from stellar/go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
trade_aggregation_request.go
49 lines (41 loc) · 1.61 KB
/
trade_aggregation_request.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
package horizonclient
import (
"fmt"
"net/http"
"net/url"
"strconv"
"github.com/stellar/go/support/errors"
)
// BuildURL creates the endpoint to be queried based on the data in the TradeAggregationRequest struct.
func (ta TradeAggregationRequest) BuildURL() (endpoint string, err error) {
endpoint = "trade_aggregations"
// add the parameters for trade aggregations endpoint
paramMap := make(map[string]string)
paramMap["start_time"] = strconv.FormatInt((ta.StartTime.UnixNano() / 1e6), 10)
paramMap["end_time"] = strconv.FormatInt((ta.EndTime.UnixNano() / 1e6), 10)
paramMap["resolution"] = strconv.FormatInt((ta.Resolution.Nanoseconds() / 1e6), 10)
paramMap["offset"] = strconv.FormatInt((ta.Offset.Nanoseconds() / 1e6), 10)
paramMap["base_asset_type"] = string(ta.BaseAssetType)
paramMap["base_asset_code"] = ta.BaseAssetCode
paramMap["base_asset_issuer"] = ta.BaseAssetIssuer
paramMap["counter_asset_type"] = string(ta.CounterAssetType)
paramMap["counter_asset_code"] = ta.CounterAssetCode
paramMap["counter_asset_issuer"] = ta.CounterAssetIssuer
queryParams := addQueryParams(paramMap, limit(ta.Limit), ta.Order)
if queryParams != "" {
endpoint = fmt.Sprintf("%s?%s", endpoint, queryParams)
}
_, err = url.Parse(endpoint)
if err != nil {
err = errors.Wrap(err, "failed to parse endpoint")
}
return endpoint, err
}
// HTTPRequest returns the http request for the trade aggregations endpoint
func (ta TradeAggregationRequest) HTTPRequest(horizonURL string) (*http.Request, error) {
endpoint, err := ta.BuildURL()
if err != nil {
return nil, err
}
return http.NewRequest("GET", horizonURL+endpoint, nil)
}