mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-06-05 07:26:47 +00:00
* tag optional sonic and allow full library conversion * Add workflow and disallow arm and darwin usage * Add basic hotswap benchmark * linter: fix * use bash * linter: fix? * Fix whoopsie, add to make file, also add mention in features list. * test enforcement * actually read documentation see if this works * linter: fix * linter: fix * sonic: bump tagged version * encoding/json: drop build tag arch and os filters * encoding/json: consolidate tests * encoding/json: log build tag usage * rm superfluous builds * glorious/nits: add template change and regen docs * glorious/nits: update commentary on nolint directive * glorious/nits: rm init func and log results in main.go * Test to actually pull flag in * linter: fix * thrasher: nits * gk: nits 4 goflags goooooooooo! * gk: nits rn * make sonic default json implementation * screen 386 * linter: fix * Add commentary * glorious: nits Makefile not working * gk: nits * gk: nits whoops * whoopsirino * mention 32bit systems won't be sonic * gk: super-duper nit of extremes --------- Co-authored-by: Ryan O'Hara-Reid <ryan.oharareid@thrasher.io>
503 lines
13 KiB
Go
503 lines
13 KiB
Go
package btcmarkets
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"hash/crc32"
|
|
"net/http"
|
|
"strconv"
|
|
"strings"
|
|
"text/template"
|
|
"time"
|
|
|
|
"github.com/gorilla/websocket"
|
|
"github.com/thrasher-corp/gocryptotrader/common"
|
|
"github.com/thrasher-corp/gocryptotrader/common/crypto"
|
|
"github.com/thrasher-corp/gocryptotrader/currency"
|
|
"github.com/thrasher-corp/gocryptotrader/encoding/json"
|
|
"github.com/thrasher-corp/gocryptotrader/exchanges/asset"
|
|
"github.com/thrasher-corp/gocryptotrader/exchanges/order"
|
|
"github.com/thrasher-corp/gocryptotrader/exchanges/orderbook"
|
|
"github.com/thrasher-corp/gocryptotrader/exchanges/request"
|
|
"github.com/thrasher-corp/gocryptotrader/exchanges/stream"
|
|
"github.com/thrasher-corp/gocryptotrader/exchanges/subscription"
|
|
"github.com/thrasher-corp/gocryptotrader/exchanges/ticker"
|
|
"github.com/thrasher-corp/gocryptotrader/exchanges/trade"
|
|
"github.com/thrasher-corp/gocryptotrader/log"
|
|
)
|
|
|
|
const (
|
|
btcMarketsWSURL = "wss://socket.btcmarkets.net/v2"
|
|
)
|
|
|
|
var (
|
|
errTypeAssertionFailure = errors.New("type assertion failure")
|
|
errChecksumFailure = errors.New("crc32 checksum failure")
|
|
)
|
|
|
|
var defaultSubscriptions = subscription.List{
|
|
{Enabled: true, Asset: asset.Spot, Channel: subscription.TickerChannel},
|
|
{Enabled: true, Asset: asset.Spot, Channel: subscription.OrderbookChannel},
|
|
{Enabled: true, Asset: asset.Spot, Channel: subscription.AllTradesChannel},
|
|
{Enabled: true, Channel: subscription.MyOrdersChannel, Authenticated: true},
|
|
{Enabled: true, Channel: subscription.MyAccountChannel, Authenticated: true},
|
|
{Enabled: true, Channel: subscription.HeartbeatChannel},
|
|
}
|
|
|
|
var subscriptionNames = map[string]string{
|
|
subscription.OrderbookChannel: wsOrderbookUpdate,
|
|
subscription.TickerChannel: tick,
|
|
subscription.AllTradesChannel: tradeEndPoint,
|
|
subscription.MyOrdersChannel: orderChange,
|
|
subscription.MyAccountChannel: fundChange,
|
|
subscription.HeartbeatChannel: heartbeat,
|
|
}
|
|
|
|
// WsConnect connects to a websocket feed
|
|
func (b *BTCMarkets) WsConnect() error {
|
|
if !b.Websocket.IsEnabled() || !b.IsEnabled() {
|
|
return stream.ErrWebsocketNotEnabled
|
|
}
|
|
var dialer websocket.Dialer
|
|
err := b.Websocket.Conn.Dial(&dialer, http.Header{})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if b.Verbose {
|
|
log.Debugf(log.ExchangeSys, "%s Connected to Websocket.\n", b.Name)
|
|
}
|
|
|
|
b.Websocket.Wg.Add(1)
|
|
go b.wsReadData()
|
|
return nil
|
|
}
|
|
|
|
// wsReadData receives and passes on websocket messages for processing
|
|
func (b *BTCMarkets) wsReadData() {
|
|
defer b.Websocket.Wg.Done()
|
|
|
|
for {
|
|
resp := b.Websocket.Conn.ReadMessage()
|
|
if resp.Raw == nil {
|
|
return
|
|
}
|
|
err := b.wsHandleData(resp.Raw)
|
|
if err != nil {
|
|
b.Websocket.DataHandler <- err
|
|
}
|
|
}
|
|
}
|
|
|
|
// UnmarshalJSON implements the unmarshaler interface.
|
|
func (w *WebsocketOrderbook) UnmarshalJSON(data []byte) error {
|
|
resp := make([][3]interface{}, len(data))
|
|
err := json.Unmarshal(data, &resp)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
*w = WebsocketOrderbook(make(orderbook.Tranches, len(resp)))
|
|
for x := range resp {
|
|
sPrice, ok := resp[x][0].(string)
|
|
if !ok {
|
|
return fmt.Errorf("price string %w", errTypeAssertionFailure)
|
|
}
|
|
var price float64
|
|
price, err = strconv.ParseFloat(sPrice, 64)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
sAmount, ok := resp[x][1].(string)
|
|
if !ok {
|
|
return fmt.Errorf("amount string %w", errTypeAssertionFailure)
|
|
}
|
|
|
|
var amount float64
|
|
amount, err = strconv.ParseFloat(sAmount, 64)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
count, ok := resp[x][2].(float64)
|
|
if !ok {
|
|
return fmt.Errorf("count float64 %w", errTypeAssertionFailure)
|
|
}
|
|
|
|
(*w)[x] = orderbook.Tranche{
|
|
Amount: amount,
|
|
Price: price,
|
|
OrderCount: int64(count),
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (b *BTCMarkets) wsHandleData(respRaw []byte) error {
|
|
var wsResponse WsMessageType
|
|
err := json.Unmarshal(respRaw, &wsResponse)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
switch wsResponse.MessageType {
|
|
case heartbeat:
|
|
if b.Verbose {
|
|
log.Debugf(log.ExchangeSys, "%v - Websocket heartbeat received %s", b.Name, respRaw)
|
|
}
|
|
case wsOrderbookUpdate:
|
|
var ob WsOrderbook
|
|
err := json.Unmarshal(respRaw, &ob)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if ob.Snapshot {
|
|
err = b.Websocket.Orderbook.LoadSnapshot(&orderbook.Base{
|
|
Pair: ob.Currency,
|
|
Bids: orderbook.Tranches(ob.Bids),
|
|
Asks: orderbook.Tranches(ob.Asks),
|
|
LastUpdated: ob.Timestamp,
|
|
LastUpdateID: ob.SnapshotID,
|
|
Asset: asset.Spot,
|
|
Exchange: b.Name,
|
|
VerifyOrderbook: b.CanVerifyOrderbook,
|
|
})
|
|
} else {
|
|
err = b.Websocket.Orderbook.Update(&orderbook.Update{
|
|
UpdateTime: ob.Timestamp,
|
|
UpdateID: ob.SnapshotID,
|
|
Asset: asset.Spot,
|
|
Bids: orderbook.Tranches(ob.Bids),
|
|
Asks: orderbook.Tranches(ob.Asks),
|
|
Pair: ob.Currency,
|
|
Checksum: ob.Checksum,
|
|
})
|
|
}
|
|
if err != nil {
|
|
if errors.Is(err, orderbook.ErrOrderbookInvalid) {
|
|
err2 := b.ReSubscribeSpecificOrderbook(ob.Currency)
|
|
if err2 != nil {
|
|
return err2
|
|
}
|
|
}
|
|
return err
|
|
}
|
|
return nil
|
|
case tradeEndPoint:
|
|
if !b.IsSaveTradeDataEnabled() {
|
|
return nil
|
|
}
|
|
var t WsTrade
|
|
err := json.Unmarshal(respRaw, &t)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
p, err := currency.NewPairFromString(t.Currency)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
side := order.Buy
|
|
if t.Side == "Ask" {
|
|
side = order.Sell
|
|
}
|
|
|
|
return trade.AddTradesToBuffer(b.Name, trade.Data{
|
|
Timestamp: t.Timestamp,
|
|
CurrencyPair: p,
|
|
AssetType: asset.Spot,
|
|
Exchange: b.Name,
|
|
Price: t.Price,
|
|
Amount: t.Volume,
|
|
Side: side,
|
|
TID: strconv.FormatInt(t.TradeID, 10),
|
|
})
|
|
case tick:
|
|
var tick WsTick
|
|
err := json.Unmarshal(respRaw, &tick)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
p, err := currency.NewPairFromString(tick.Currency)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
b.Websocket.DataHandler <- &ticker.Price{
|
|
ExchangeName: b.Name,
|
|
Volume: tick.Volume,
|
|
High: tick.High24,
|
|
Low: tick.Low24h,
|
|
Bid: tick.Bid,
|
|
Ask: tick.Ask,
|
|
Last: tick.Last,
|
|
LastUpdated: tick.Timestamp,
|
|
AssetType: asset.Spot,
|
|
Pair: p,
|
|
}
|
|
case fundChange:
|
|
var transferData WsFundTransfer
|
|
err := json.Unmarshal(respRaw, &transferData)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
b.Websocket.DataHandler <- transferData
|
|
case orderChange:
|
|
var orderData WsOrderChange
|
|
err := json.Unmarshal(respRaw, &orderData)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
originalAmount := orderData.OpenVolume
|
|
var price float64
|
|
var trades []order.TradeHistory
|
|
var orderID = strconv.FormatInt(orderData.OrderID, 10)
|
|
for x := range orderData.Trades {
|
|
var isMaker bool
|
|
if orderData.Trades[x].LiquidityType == "Maker" {
|
|
isMaker = true
|
|
}
|
|
trades = append(trades, order.TradeHistory{
|
|
Price: orderData.Trades[x].Price,
|
|
Amount: orderData.Trades[x].Volume,
|
|
Fee: orderData.Trades[x].Fee,
|
|
Exchange: b.Name,
|
|
TID: strconv.FormatInt(orderData.Trades[x].TradeID, 10),
|
|
IsMaker: isMaker,
|
|
})
|
|
price = orderData.Trades[x].Price
|
|
originalAmount += orderData.Trades[x].Volume
|
|
}
|
|
oType, err := order.StringToOrderType(orderData.OrderType)
|
|
if err != nil {
|
|
b.Websocket.DataHandler <- order.ClassificationError{
|
|
Exchange: b.Name,
|
|
OrderID: orderID,
|
|
Err: err,
|
|
}
|
|
}
|
|
oSide, err := order.StringToOrderSide(orderData.Side)
|
|
if err != nil {
|
|
b.Websocket.DataHandler <- order.ClassificationError{
|
|
Exchange: b.Name,
|
|
OrderID: orderID,
|
|
Err: err,
|
|
}
|
|
}
|
|
oStatus, err := order.StringToOrderStatus(orderData.Status)
|
|
if err != nil {
|
|
b.Websocket.DataHandler <- order.ClassificationError{
|
|
Exchange: b.Name,
|
|
OrderID: orderID,
|
|
Err: err,
|
|
}
|
|
}
|
|
|
|
p, err := currency.NewPairFromString(orderData.MarketID)
|
|
if err != nil {
|
|
b.Websocket.DataHandler <- order.ClassificationError{
|
|
Exchange: b.Name,
|
|
OrderID: orderID,
|
|
Err: err,
|
|
}
|
|
}
|
|
|
|
creds, err := b.GetCredentials(context.TODO())
|
|
if err != nil {
|
|
b.Websocket.DataHandler <- order.ClassificationError{
|
|
Exchange: b.Name,
|
|
OrderID: orderID,
|
|
Err: err,
|
|
}
|
|
}
|
|
|
|
b.Websocket.DataHandler <- &order.Detail{
|
|
Price: price,
|
|
Amount: originalAmount,
|
|
RemainingAmount: orderData.OpenVolume,
|
|
Exchange: b.Name,
|
|
OrderID: orderID,
|
|
ClientID: creds.ClientID,
|
|
Type: oType,
|
|
Side: oSide,
|
|
Status: oStatus,
|
|
AssetType: asset.Spot,
|
|
Date: orderData.Timestamp,
|
|
Trades: trades,
|
|
Pair: p,
|
|
}
|
|
case "error":
|
|
var wsErr WsError
|
|
err := json.Unmarshal(respRaw, &wsErr)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return fmt.Errorf("%v websocket error. Code: %v Message: %v", b.Name, wsErr.Code, wsErr.Message)
|
|
default:
|
|
b.Websocket.DataHandler <- stream.UnhandledMessageWarning{Message: b.Name + stream.UnhandledMessage + string(respRaw)}
|
|
return nil
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (b *BTCMarkets) generateSubscriptions() (subscription.List, error) {
|
|
return b.Features.Subscriptions.ExpandTemplates(b)
|
|
}
|
|
|
|
// GetSubscriptionTemplate returns a subscription channel template
|
|
func (b *BTCMarkets) GetSubscriptionTemplate(_ *subscription.Subscription) (*template.Template, error) {
|
|
return template.New("master.tmpl").Funcs(template.FuncMap{"channelName": channelName}).Parse(subTplText)
|
|
}
|
|
|
|
// Subscribe sends a websocket message to receive data from the channel
|
|
func (b *BTCMarkets) Subscribe(subs subscription.List) error {
|
|
baseReq := &WsSubscribe{
|
|
MessageType: subscribe,
|
|
}
|
|
|
|
var errs error
|
|
if authed := subs.Private(); len(authed) > 0 {
|
|
if err := b.signWsReq(baseReq); err != nil {
|
|
errs = err
|
|
for _, s := range authed {
|
|
errs = common.AppendError(errs, fmt.Errorf("%w: %s", request.ErrAuthRequestFailed, s))
|
|
}
|
|
subs = subs.Public()
|
|
}
|
|
}
|
|
|
|
for _, batch := range subs.GroupByPairs() {
|
|
if baseReq.MessageType == subscribe && len(b.Websocket.GetSubscriptions()) != 0 {
|
|
baseReq.MessageType = addSubscription // After first *successful* subscription API requires addSubscription
|
|
baseReq.ClientType = clientType // Note: Only addSubscription requires/accepts clientType
|
|
}
|
|
|
|
r := baseReq
|
|
|
|
r.MarketIDs = batch[0].Pairs.Strings()
|
|
r.Channels = make([]string, len(batch))
|
|
for i, s := range batch {
|
|
r.Channels[i] = s.QualifiedChannel
|
|
}
|
|
|
|
err := b.Websocket.Conn.SendJSONMessage(context.TODO(), request.Unset, r)
|
|
if err == nil {
|
|
err = b.Websocket.AddSuccessfulSubscriptions(b.Websocket.Conn, batch...)
|
|
}
|
|
if err != nil {
|
|
errs = common.AppendError(errs, err)
|
|
}
|
|
}
|
|
|
|
return errs
|
|
}
|
|
|
|
func (b *BTCMarkets) signWsReq(r *WsSubscribe) error {
|
|
creds, err := b.GetCredentials(context.TODO())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
r.Timestamp = strconv.FormatInt(time.Now().UnixMilli(), 10)
|
|
strToSign := "/users/self/subscribe" + "\n" + r.Timestamp
|
|
tempSign, err := crypto.GetHMAC(crypto.HashSHA512, []byte(strToSign), []byte(creds.Secret))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
sign := crypto.Base64Encode(tempSign)
|
|
r.Key = creds.Key
|
|
r.Signature = sign
|
|
return nil
|
|
}
|
|
|
|
// Unsubscribe sends a websocket message to manage and remove a subscription.
|
|
func (b *BTCMarkets) Unsubscribe(subs subscription.List) error {
|
|
var errs error
|
|
for _, s := range subs {
|
|
req := WsSubscribe{
|
|
MessageType: removeSubscription,
|
|
ClientType: clientType,
|
|
Channels: []string{s.Channel},
|
|
MarketIDs: s.Pairs.Strings(),
|
|
}
|
|
|
|
err := b.Websocket.Conn.SendJSONMessage(context.TODO(), request.Unset, req)
|
|
if err == nil {
|
|
err = b.Websocket.RemoveSubscriptions(b.Websocket.Conn, s)
|
|
}
|
|
if err != nil {
|
|
errs = common.AppendError(errs, err)
|
|
}
|
|
}
|
|
return errs
|
|
}
|
|
|
|
// ReSubscribeSpecificOrderbook removes the subscription and the subscribes
|
|
// again to fetch a new snapshot in the event of a de-sync event.
|
|
func (b *BTCMarkets) ReSubscribeSpecificOrderbook(pair currency.Pair) error {
|
|
sub := subscription.List{{
|
|
Channel: wsOrderbookUpdate,
|
|
Pairs: currency.Pairs{pair},
|
|
Asset: asset.Spot,
|
|
}}
|
|
if err := b.Unsubscribe(sub); err != nil && !errors.Is(err, subscription.ErrNotFound) {
|
|
// ErrNotFound is okay, because we might be re-subscribing a single pair from a larger list
|
|
// BTC-Market handles unsub/sub of one pair gracefully and the other pairs are unaffected
|
|
return err
|
|
}
|
|
return b.Subscribe(sub)
|
|
}
|
|
|
|
// checksum provides assurance on current in memory liquidity
|
|
func checksum(ob *orderbook.Base, checksum uint32) error {
|
|
check := crc32.ChecksumIEEE([]byte(concat(ob.Bids) + concat(ob.Asks)))
|
|
if check != checksum {
|
|
return fmt.Errorf("%s %s %s ID: %v expected: %v but received: %v %w",
|
|
ob.Exchange,
|
|
ob.Pair,
|
|
ob.Asset,
|
|
ob.LastUpdateID,
|
|
checksum,
|
|
check,
|
|
errChecksumFailure)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// concat concatenates price and amounts together for checksum processing
|
|
func concat(liquidity orderbook.Tranches) string {
|
|
length := 10
|
|
if len(liquidity) < 10 {
|
|
length = len(liquidity)
|
|
}
|
|
var c string
|
|
for x := range length {
|
|
c += trim(liquidity[x].Price) + trim(liquidity[x].Amount)
|
|
}
|
|
return c
|
|
}
|
|
|
|
// trim turns value into string, removes the decimal point and all the leading zeros
|
|
func trim(value float64) string {
|
|
valstr := strconv.FormatFloat(value, 'f', -1, 64)
|
|
valstr = strings.ReplaceAll(valstr, ".", "")
|
|
valstr = strings.TrimLeft(valstr, "0")
|
|
return valstr
|
|
}
|
|
|
|
func channelName(s *subscription.Subscription) string {
|
|
if n, ok := subscriptionNames[s.Channel]; ok {
|
|
return n
|
|
}
|
|
panic(fmt.Errorf("%w: %s", subscription.ErrNotSupported, s.Channel))
|
|
}
|
|
|
|
const subTplText = `
|
|
{{ range $asset, $pairs := $.AssetPairs }}
|
|
{{- channelName $.S -}}
|
|
{{ $.AssetSeparator }}
|
|
{{- end }}
|
|
`
|