mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-14 07:26:47 +00:00
* Bitstamp: Add auth channel subscription handling * Bitstamp: Avoid searching for asset type We've hardcoded asset.Spot in order to find the pair. Looking the asset up from the pair makes no sense. * Bitstamp: Add type for wsOrders * Bitstamp: Working test of Generic DataHandler * Bitstamp: WS Order chan tests and remove type orderType could be derived from status == New and Buy & price == 9+e9 or Sell & price == 0 But it would only be true for the first update and it really doesn't feel worth the risk Consumers are going to have to merge to original request anyway * Bitstamp: Linter fixes * Kraken: Switch to shared fixture test * Bitstamp: Fix lint on TestFixtureToDataHandler * Engine: Add Clone for PairsManager go-vet highlighted that the mutex here is a value when we copied the PairsManager in a test. Options to fix: * Add a deep clone method to PairsManager * Add a shallow clone method with a disclaimer * Make the mutex a pointer * Make the PairsManager itself a pointer Options 3 and 4 are too invasive to justify changing at this point. There's an inherent risk of PM being passed by value, but govet should catch the copylock. There's more risk in changing everything to use a pointer at this stage. * Engine: Fix linter again, ironically * Bitstamp: Rename OHLC const * Bitstamp: Minor fixes to syntax * Bitstamp: Simplify chanSymb=>pair * Bitstamp: Still process order updates without ID If there's a ClientOrderID we'll still process the order. It doesn't seem likely we'd have this happen, but if it does we still want consumers to get something. * Bitstamp: Replace Clone with Lock methods * Engine: Expose PairsManager's Mutex Makes more sense than wrapping functions * Bitstamp: Fix linter copylock (again) * fixup! Engine: Expose PairsManager's Mutex Omit Mutex from Json * fixup! Bitstamp: Add auth channel subscription handling Remove unused wsAuthToken * Bitstamp: Simplify OrderData Unmarshal * Bitstamp: Remove unused contexts I added these following best practices, but the reality is that when/if we get context awareness in GCT, there will be a lot more to fix and this will be a drop in the ocean anyway. * Bitstamp: Only call handleWSOrder for MyOrders * Bitstamp: Avoid allocating again in handleWSOrder * CurrencyPairs: Remove public mutex Simplified to a Load method to avoid making mutex public * Tests: Improve test readability and clarity * Bitstamp: Wrap errWSPairParsingError Co-authored-by: Scott <gloriousCode@users.noreply.github.com> * Bitstamp: FetchWSAuth mock and live test --------- Co-authored-by: Scott <gloriousCode@users.noreply.github.com>
458 lines
12 KiB
Go
458 lines
12 KiB
Go
package bitstamp
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"errors"
|
|
"fmt"
|
|
"net/http"
|
|
"strconv"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/gorilla/websocket"
|
|
"github.com/thrasher-corp/gocryptotrader/common"
|
|
"github.com/thrasher-corp/gocryptotrader/currency"
|
|
exchange "github.com/thrasher-corp/gocryptotrader/exchanges"
|
|
"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/stream"
|
|
"github.com/thrasher-corp/gocryptotrader/exchanges/trade"
|
|
"github.com/thrasher-corp/gocryptotrader/log"
|
|
)
|
|
|
|
const (
|
|
bitstampWSURL = "wss://ws.bitstamp.net" //nolint // gosec false positive
|
|
hbInterval = 8 * time.Second // Connection monitor defaults to 10s inactivity
|
|
)
|
|
|
|
var (
|
|
hbMsg = []byte(`{"event":"bts:heartbeat"}`)
|
|
|
|
defaultSubChannels = []string{
|
|
bitstampAPIWSTrades,
|
|
bitstampAPIWSOrderbook,
|
|
}
|
|
|
|
defaultAuthSubChannels = []string{
|
|
bitstampAPIWSMyOrders,
|
|
bitstampAPIWSMyTrades,
|
|
}
|
|
)
|
|
|
|
// WsConnect connects to a websocket feed
|
|
func (b *Bitstamp) WsConnect() error {
|
|
if !b.Websocket.IsEnabled() || !b.IsEnabled() {
|
|
return errors.New(stream.WebsocketNotEnabled)
|
|
}
|
|
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.Conn.SetupPingHandler(stream.PingHandler{
|
|
MessageType: websocket.TextMessage,
|
|
Message: hbMsg,
|
|
Delay: hbInterval,
|
|
})
|
|
err = b.seedOrderBook(context.TODO())
|
|
if err != nil {
|
|
b.Websocket.DataHandler <- err
|
|
}
|
|
|
|
b.Websocket.Wg.Add(1)
|
|
go b.wsReadData()
|
|
|
|
return nil
|
|
}
|
|
|
|
// wsReadData receives and passes on websocket messages for processing
|
|
func (b *Bitstamp) wsReadData() {
|
|
defer b.Websocket.Wg.Done()
|
|
|
|
for {
|
|
resp := b.Websocket.Conn.ReadMessage()
|
|
if resp.Raw == nil {
|
|
return
|
|
}
|
|
if err := b.wsHandleData(resp.Raw); err != nil {
|
|
b.Websocket.DataHandler <- err
|
|
}
|
|
}
|
|
}
|
|
|
|
func (b *Bitstamp) wsHandleData(respRaw []byte) error {
|
|
wsResponse := &websocketResponse{}
|
|
if err := json.Unmarshal(respRaw, wsResponse); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := b.parseChannelName(wsResponse); err != nil {
|
|
return err
|
|
}
|
|
|
|
switch wsResponse.Event {
|
|
case "bts:heartbeat":
|
|
return nil
|
|
case "bts:subscribe", "bts:subscription_succeeded":
|
|
if b.Verbose {
|
|
log.Debugf(log.ExchangeSys, "%v - Websocket subscription acknowledgement", b.Name)
|
|
}
|
|
case "bts:unsubscribe":
|
|
if b.Verbose {
|
|
log.Debugf(log.ExchangeSys, "%v - Websocket unsubscribe acknowledgement", b.Name)
|
|
}
|
|
case "bts:request_reconnect":
|
|
if b.Verbose {
|
|
log.Debugf(log.ExchangeSys, "%v - Websocket reconnection request received", b.Name)
|
|
}
|
|
go func() {
|
|
err := b.Websocket.Shutdown()
|
|
if err != nil {
|
|
log.Errorf(log.WebsocketMgr, "%s failed to shutdown websocket: %v", b.Name, err)
|
|
}
|
|
}() // Connection monitor will reconnect
|
|
case "data":
|
|
if err := b.handleWSOrderbook(wsResponse, respRaw); err != nil {
|
|
return err
|
|
}
|
|
case "trade":
|
|
if err := b.handleWSTrade(wsResponse, respRaw); err != nil {
|
|
return err
|
|
}
|
|
case "order_created", "order_deleted", "order_changed":
|
|
// Only process MyOrders, not orders from the LiveOrder channel
|
|
if wsResponse.channelType == bitstampAPIWSMyOrders {
|
|
if err := b.handleWSOrder(wsResponse, respRaw); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
default:
|
|
b.Websocket.DataHandler <- stream.UnhandledMessageWarning{Message: b.Name + stream.UnhandledMessage + string(respRaw)}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (b *Bitstamp) handleWSOrderbook(wsResp *websocketResponse, msg []byte) error {
|
|
if wsResp.pair.IsEmpty() {
|
|
return errWSPairParsingError
|
|
}
|
|
|
|
wsOrderBookTemp := websocketOrderBookResponse{}
|
|
err := json.Unmarshal(msg, &wsOrderBookTemp)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return b.wsUpdateOrderbook(&wsOrderBookTemp.Data, wsResp.pair, asset.Spot)
|
|
}
|
|
|
|
func (b *Bitstamp) handleWSTrade(wsResp *websocketResponse, msg []byte) error {
|
|
if !b.IsSaveTradeDataEnabled() {
|
|
return nil
|
|
}
|
|
|
|
if wsResp.pair.IsEmpty() {
|
|
return errWSPairParsingError
|
|
}
|
|
|
|
wsTradeTemp := websocketTradeResponse{}
|
|
if err := json.Unmarshal(msg, &wsTradeTemp); err != nil {
|
|
return err
|
|
}
|
|
|
|
side := order.Buy
|
|
if wsTradeTemp.Data.Type == 1 {
|
|
side = order.Sell
|
|
}
|
|
return trade.AddTradesToBuffer(b.Name, trade.Data{
|
|
Timestamp: time.Unix(wsTradeTemp.Data.Timestamp, 0),
|
|
CurrencyPair: wsResp.pair,
|
|
AssetType: asset.Spot,
|
|
Exchange: b.Name,
|
|
Price: wsTradeTemp.Data.Price,
|
|
Amount: wsTradeTemp.Data.Amount,
|
|
Side: side,
|
|
TID: strconv.FormatInt(wsTradeTemp.Data.ID, 10),
|
|
})
|
|
}
|
|
|
|
func (b *Bitstamp) handleWSOrder(wsResp *websocketResponse, msg []byte) error {
|
|
r := &websocketOrderResponse{}
|
|
if err := json.Unmarshal(msg, &r); err != nil {
|
|
return err
|
|
}
|
|
|
|
if r.Order.ID == 0 && r.Order.ClientOrderID == "" {
|
|
return fmt.Errorf("unable to parse an order id from order msg: %s", msg)
|
|
}
|
|
|
|
var status order.Status
|
|
switch wsResp.Event {
|
|
case "order_created":
|
|
status = order.New
|
|
case "order_changed":
|
|
if r.Order.ExecutedAmount > 0 {
|
|
status = order.PartiallyFilled
|
|
}
|
|
case "order_deleted":
|
|
if r.Order.RemainingAmount == 0 && r.Order.Amount > 0 {
|
|
status = order.Filled
|
|
} else {
|
|
status = order.Cancelled
|
|
}
|
|
}
|
|
|
|
// r.Order.ExecutedAmount is an atomic partial fill amount; We want total
|
|
executedAmount := r.Order.Amount - r.Order.RemainingAmount
|
|
|
|
d := &order.Detail{
|
|
Price: r.Order.Price,
|
|
Amount: r.Order.Amount,
|
|
RemainingAmount: r.Order.RemainingAmount,
|
|
ExecutedAmount: executedAmount,
|
|
Exchange: b.Name,
|
|
OrderID: r.Order.IDStr,
|
|
ClientOrderID: r.Order.ClientOrderID,
|
|
Side: r.Order.Side.Side(),
|
|
Status: status,
|
|
AssetType: asset.Spot,
|
|
Date: r.Order.Microtimestamp.Time(),
|
|
Pair: wsResp.pair,
|
|
}
|
|
|
|
b.Websocket.DataHandler <- d
|
|
|
|
return nil
|
|
}
|
|
|
|
func (b *Bitstamp) generateDefaultSubscriptions() ([]stream.ChannelSubscription, error) {
|
|
enabledCurrencies, err := b.GetEnabledPairs(asset.Spot)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
var subscriptions []stream.ChannelSubscription
|
|
for i := range enabledCurrencies {
|
|
p, err := b.FormatExchangeCurrency(enabledCurrencies[i], asset.Spot)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
for j := range defaultSubChannels {
|
|
subscriptions = append(subscriptions, stream.ChannelSubscription{
|
|
Channel: defaultSubChannels[j] + "_" + p.String(),
|
|
Asset: asset.Spot,
|
|
Currency: p,
|
|
})
|
|
}
|
|
if b.Websocket.CanUseAuthenticatedEndpoints() {
|
|
for j := range defaultAuthSubChannels {
|
|
subscriptions = append(subscriptions, stream.ChannelSubscription{
|
|
Channel: defaultAuthSubChannels[j] + "_" + p.String(),
|
|
Asset: asset.Spot,
|
|
Currency: p,
|
|
Params: map[string]interface{}{
|
|
"auth": struct{}{},
|
|
},
|
|
})
|
|
}
|
|
}
|
|
}
|
|
return subscriptions, nil
|
|
}
|
|
|
|
// Subscribe sends a websocket message to receive data from the channel
|
|
func (b *Bitstamp) Subscribe(channelsToSubscribe []stream.ChannelSubscription) error {
|
|
var errs error
|
|
var auth *WebsocketAuthResponse
|
|
|
|
for i := range channelsToSubscribe {
|
|
if _, ok := channelsToSubscribe[i].Params["auth"]; ok {
|
|
var err error
|
|
auth, err = b.FetchWSAuth(context.TODO())
|
|
if err != nil {
|
|
errs = common.AppendError(errs, err)
|
|
}
|
|
break
|
|
}
|
|
}
|
|
|
|
for i := range channelsToSubscribe {
|
|
req := websocketEventRequest{
|
|
Event: "bts:subscribe",
|
|
Data: websocketData{
|
|
Channel: channelsToSubscribe[i].Channel,
|
|
},
|
|
}
|
|
if _, ok := channelsToSubscribe[i].Params["auth"]; ok && auth != nil {
|
|
req.Data.Channel = "private-" + req.Data.Channel + "-" + strconv.Itoa(int(auth.UserID))
|
|
req.Data.Auth = auth.Token
|
|
}
|
|
err := b.Websocket.Conn.SendJSONMessage(req)
|
|
if err != nil {
|
|
errs = common.AppendError(errs, err)
|
|
continue
|
|
}
|
|
b.Websocket.AddSuccessfulSubscriptions(channelsToSubscribe[i])
|
|
}
|
|
|
|
return errs
|
|
}
|
|
|
|
// Unsubscribe sends a websocket message to stop receiving data from the channel
|
|
func (b *Bitstamp) Unsubscribe(channelsToUnsubscribe []stream.ChannelSubscription) error {
|
|
var errs error
|
|
for i := range channelsToUnsubscribe {
|
|
req := websocketEventRequest{
|
|
Event: "bts:unsubscribe",
|
|
Data: websocketData{
|
|
Channel: channelsToUnsubscribe[i].Channel,
|
|
},
|
|
}
|
|
err := b.Websocket.Conn.SendJSONMessage(req)
|
|
if err != nil {
|
|
errs = common.AppendError(errs, err)
|
|
continue
|
|
}
|
|
b.Websocket.RemoveSuccessfulUnsubscriptions(channelsToUnsubscribe[i])
|
|
}
|
|
return errs
|
|
}
|
|
|
|
func (b *Bitstamp) wsUpdateOrderbook(update *websocketOrderBook, p currency.Pair, assetType asset.Item) error {
|
|
if len(update.Asks) == 0 && len(update.Bids) == 0 {
|
|
return errors.New("no orderbook data")
|
|
}
|
|
|
|
obUpdate := &orderbook.Base{
|
|
Bids: make(orderbook.Items, len(update.Bids)),
|
|
Asks: make(orderbook.Items, len(update.Asks)),
|
|
Pair: p,
|
|
LastUpdated: time.UnixMicro(update.Microtimestamp),
|
|
Asset: assetType,
|
|
Exchange: b.Name,
|
|
VerifyOrderbook: b.CanVerifyOrderbook,
|
|
}
|
|
|
|
for i := range update.Asks {
|
|
target, err := strconv.ParseFloat(update.Asks[i][0], 64)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
amount, err := strconv.ParseFloat(update.Asks[i][1], 64)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
obUpdate.Asks[i] = orderbook.Item{Price: target, Amount: amount}
|
|
}
|
|
for i := range update.Bids {
|
|
target, err := strconv.ParseFloat(update.Bids[i][0], 64)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
amount, err := strconv.ParseFloat(update.Bids[i][1], 64)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
obUpdate.Bids[i] = orderbook.Item{Price: target, Amount: amount}
|
|
}
|
|
filterOrderbookZeroBidPrice(obUpdate)
|
|
return b.Websocket.Orderbook.LoadSnapshot(obUpdate)
|
|
}
|
|
|
|
func (b *Bitstamp) seedOrderBook(ctx context.Context) error {
|
|
p, err := b.GetEnabledPairs(asset.Spot)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
for x := range p {
|
|
pairFmt, err := b.FormatExchangeCurrency(p[x], asset.Spot)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
orderbookSeed, err := b.GetOrderbook(ctx, pairFmt.String())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
newOrderBook := &orderbook.Base{
|
|
Pair: p[x],
|
|
Asset: asset.Spot,
|
|
Exchange: b.Name,
|
|
VerifyOrderbook: b.CanVerifyOrderbook,
|
|
Bids: make(orderbook.Items, len(orderbookSeed.Bids)),
|
|
Asks: make(orderbook.Items, len(orderbookSeed.Asks)),
|
|
LastUpdated: time.Unix(orderbookSeed.Timestamp, 0),
|
|
}
|
|
|
|
for i := range orderbookSeed.Asks {
|
|
newOrderBook.Asks[i] = orderbook.Item{
|
|
Price: orderbookSeed.Asks[i].Price,
|
|
Amount: orderbookSeed.Asks[i].Amount,
|
|
}
|
|
}
|
|
for i := range orderbookSeed.Bids {
|
|
newOrderBook.Bids[i] = orderbook.Item{
|
|
Price: orderbookSeed.Bids[i].Price,
|
|
Amount: orderbookSeed.Bids[i].Amount,
|
|
}
|
|
}
|
|
|
|
filterOrderbookZeroBidPrice(newOrderBook)
|
|
|
|
err = b.Websocket.Orderbook.LoadSnapshot(newOrderBook)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// FetchWSAuth Retrieves a userID and auth-token from REST for subscribing to a websocket channel
|
|
// The token life-expectancy is only about 60s; use it immediately and do not store it
|
|
func (b *Bitstamp) FetchWSAuth(ctx context.Context) (*WebsocketAuthResponse, error) {
|
|
resp := &WebsocketAuthResponse{}
|
|
err := b.SendAuthenticatedHTTPRequest(ctx, exchange.RestSpot, bitstampAPIWSAuthToken, true, nil, resp)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("error fetching auth token: %w", err)
|
|
}
|
|
return resp, nil
|
|
}
|
|
|
|
// parseChannel splits the ws response channel and sets the channel type and pair
|
|
func (b *Bitstamp) parseChannelName(r *websocketResponse) error {
|
|
if r.Channel == "" {
|
|
return nil
|
|
}
|
|
|
|
chanName := r.Channel
|
|
authParts := strings.Split(r.Channel, "-")
|
|
switch len(authParts) {
|
|
case 1:
|
|
// Not an auth channel
|
|
case 3:
|
|
chanName = authParts[1]
|
|
default:
|
|
return fmt.Errorf("channel name does not contain exactly 0 or 2 hyphens: %v", r.Channel)
|
|
}
|
|
|
|
parts := strings.Split(chanName, "_")
|
|
if len(parts) != 3 {
|
|
return fmt.Errorf("%w: channel name does not contain exactly 2 underscores: %v", errWSPairParsingError, r.Channel)
|
|
}
|
|
|
|
r.channelType = parts[0] + "_" + parts[1]
|
|
symbol := parts[2]
|
|
|
|
enabledPairs, err := b.GetEnabledPairs(asset.Spot)
|
|
if err == nil {
|
|
r.pair, err = enabledPairs.DeriveFrom(symbol)
|
|
}
|
|
|
|
return err
|
|
}
|