mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-13 23:16:45 +00:00
* gateio: Add multi asset websocket support WIP. * meow * Add tests and shenanigans * integrate flushing and for enabling/disabling pairs from rpc shenanigans * some changes * linter: fixes strikes again. * Change name ConnectionAssociation -> ConnectionCandidate for better clarity on purpose. Change connections map to point to candidate to track subscriptions for future dynamic connections holder and drop struct ConnectionDetails. * Add subscription tests (state functional) * glorious:nits + proxy handling * Spelling * linter: fixerino * instead of nil, dont do nil. * clean up nils * cya nils * don't need to set URL or check if its running * stream match update * update tests * linter: fix * glorious: nits + handle context cancellations * stop ping handler routine leak * * Fix bug where reader routine on error that is not a disconnection error but websocket frame error or anything really makes the reader routine return and then connection never cycles and the buffer gets filled. * Handle reconnection via an errors.Is check which is simpler and in that scope allow for quick disconnect reconnect without waiting for connection cycle. * Dial now uses code from DialContext but just calls context.Background() * Don't allow reader to return on parse binary response error. Just output error and return a non nil response * Allow rollback on connect on any error across all connections * fix shadow jutsu * glorious/gk: nitters - adds in ws mock server * linter: fix * fix deadlock on connection as the previous channel had no reader and would hang connection reader for eternity. * glorious: whooops * gk: nits * Leak issue and edge case * Websocket: Add SendMessageReturnResponses * whooooooopsie * gk: nitssssss * Update exchanges/stream/stream_match.go Co-authored-by: Gareth Kirwan <gbjkirwan@gmail.com> * Update exchanges/stream/stream_match_test.go Co-authored-by: Gareth Kirwan <gbjkirwan@gmail.com> * linter: appease the linter gods * gk: nits * gk: drain brain * started * more changes before merge match pr * gateio: still building out * gateio: finish spot * fix up tests in gateio * Add tests for stream package * rm unused field * glorious: nits * rn files, specifically set function names to asset and offload routing to websocket type. * linter: fix * Add futures websocket request support * gateio: integrate with IBOTExchange (cherry pick my nose) * linter: fix * glorious: nits * add counter and update gateio * fix collision issue * Update exchanges/stream/websocket.go Co-authored-by: Scott <gloriousCode@users.noreply.github.com> * glorious: nits * add tests * linter: fix * After merge * Add error connection info * upgrade to upstream merge * Fix edge case where it does not reconnect made by an already closed connection * stream coverage * glorious: nits * glorious: nits removed asset error handling in stream package * linter: fix * rm block * Add basic readme * fix asset enabled flush cycle for multi connection * spella: fix * linter: fix * Add glorious suggestions, fix some race thing * reinstate name before any routine gets spawned * stop on error in mock tests * glorious: nits * Set correct price * glorious: nits found in CI build * Add test for drain, bumped wait times as there seems to be something happening on macos CI builds, used context.WithTimeout because its instant. * mutex across shutdown and connect for protection * lint: fix * test time withoffset, reinstate stop * fix whoops * const trafficCheckInterval; rm testmain * y * fix lint * bump time check window * stream: fix intermittant test failures while testing routines and remove code that is not needed. * spells * cant do what I did * protect race due to routine. * update testURL * use mock websocket connection instead of test URL's * linter: fix * remove url because its throwing errors on CI builds * connections drop all the time, don't need to worry about not being able to echo back ws data as it can be easily reviewed _test file side. * remove another superfluous url thats not really set up for this * spawn overwatch routine when there is no errors, inline checker instead of waiting for a time period, add sleep inline with echo handler as this is really quick and wanted to ensure that latency is handing correctly * linter: fixerino uperino * fix ID bug, why I do this, I don't know. * glorious: panix * linter: things * whoops * dont need to make consecutive Unix() calls * websocket: fix potential panic on error and no responses and adding waitForResponses * rm json parser and handle in json package instead * in favour of json package unmarshalling * linter: fix * linter: fix again * * change field name OutboundRequestSignature to WrapperDefinedConnectionSignature for agnostic inbound and outbound connections. * change method name GetOutboundConnection to GetConnection for agnostic inbound and outbound connections. * drop outbound field map for improved performance just using a range and field check (less complex as well) * change field name connections to connectionToWrapper for better clarity * spells and magic and wands * glorious: nits * comparable check for signature * mv err var * glorious: nits and stuff * attempt to fix race * glorious: nits * gk: nits; engine log cleanup * gk: nits; OCD * gk: nits; move function change file names * gk: nits; 🚀 * gk: nits; convert variadic function and message inspection to interface and include a specific function for that handling so as to not need nil on every call * gk: nits; continued * gk: engine nits; rm loaded exchange * gk: nits; drop WebsocketLoginResponse * stream: Add match method EnsureMatchWithData * gk: nits; rn Inspect to IsFinal * gk: nits; rn to MessageFilter * linter: fix * gateio: update rate limit definitions (cherry-pick) * Add test and missing * Shared REST rate limit definitions with Websocket service, set lookup item to nil for systems that do not require rate limiting; add glorious nit * integrate rate limits for websocket trading spot * conform to match upstream changes * standardise names to upstream style * fix wrapper standards test when sending a auth request through a websocket connection * whoops * Update exchanges/gateio/gateio_types.go Co-authored-by: Scott <gloriousCode@users.noreply.github.com> * glorious: nits * linter: fix * linter: overload * whoops * spelling fixes on recent merge * glorious: nits * linter: fix? * glorious: nits * gk: assert errors touched * gk: unexport derive functions * gk: nitssssssss * fix test * gk: nitters v1 * gk: http status * gk/nits: Add getAssetFromFuturesPair * gk: nits single response when submitting * gk: new pair with delimiter in tests * gk: param update slice to slice of pointers * gk: add asset type in params, includes t.Context() for tests * linter: fix * linter: fix * fix merge whoopsie * glorious: nits * gk: nit * shift over to websocket package error * internal/exchange/websocket -> exchange/websocket * PEAK OCD! * appease the OCD gods * thrasher: nits --------- Co-authored-by: shazbert <ryan.oharareid@thrasher.io> Co-authored-by: Gareth Kirwan <gbjkirwan@gmail.com> Co-authored-by: Scott <gloriousCode@users.noreply.github.com>
455 lines
13 KiB
Go
455 lines
13 KiB
Go
package bitstamp
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"net/http"
|
|
"strconv"
|
|
"strings"
|
|
"text/template"
|
|
"time"
|
|
|
|
"github.com/buger/jsonparser"
|
|
gws "github.com/gorilla/websocket"
|
|
"github.com/thrasher-corp/gocryptotrader/common"
|
|
"github.com/thrasher-corp/gocryptotrader/currency"
|
|
"github.com/thrasher-corp/gocryptotrader/encoding/json"
|
|
"github.com/thrasher-corp/gocryptotrader/exchange/websocket"
|
|
exchange "github.com/thrasher-corp/gocryptotrader/exchanges"
|
|
"github.com/thrasher-corp/gocryptotrader/exchanges/asset"
|
|
"github.com/thrasher-corp/gocryptotrader/exchanges/kline"
|
|
"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/subscription"
|
|
"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 (
|
|
errParsingWSPair = errors.New("unable to parse currency pair from wsResponse.Channel")
|
|
errChannelHyphens = errors.New("channel name does not contain exactly 0 or 2 hyphens")
|
|
errChannelUnderscores = errors.New("channel name does not contain exactly 2 underscores")
|
|
|
|
hbMsg = []byte(`{"event":"bts:heartbeat"}`)
|
|
)
|
|
|
|
var defaultSubscriptions = subscription.List{
|
|
{Enabled: true, Asset: asset.Spot, Channel: subscription.OrderbookChannel, Interval: kline.HundredMilliseconds},
|
|
{Enabled: true, Asset: asset.Spot, Channel: subscription.AllTradesChannel},
|
|
{Enabled: true, Asset: asset.Spot, Channel: subscription.MyOrdersChannel, Authenticated: true},
|
|
{Enabled: true, Asset: asset.Spot, Channel: subscription.MyTradesChannel, Authenticated: true},
|
|
}
|
|
|
|
var subscriptionNames = map[string]string{
|
|
subscription.OrderbookChannel: bitstampAPIWSOrderbook,
|
|
subscription.AllTradesChannel: bitstampAPIWSTrades,
|
|
subscription.MyOrdersChannel: bitstampAPIWSMyOrders,
|
|
subscription.MyTradesChannel: bitstampAPIWSMyTrades,
|
|
}
|
|
|
|
// WsConnect connects to a websocket feed
|
|
func (b *Bitstamp) WsConnect() error {
|
|
if !b.Websocket.IsEnabled() || !b.IsEnabled() {
|
|
return websocket.ErrWebsocketNotEnabled
|
|
}
|
|
var dialer gws.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(request.Unset, websocket.PingHandler{
|
|
MessageType: gws.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 {
|
|
event, err := jsonparser.GetUnsafeString(respRaw, "event")
|
|
if err != nil {
|
|
return fmt.Errorf("%w `event`: %w", common.ErrParsingWSField, err)
|
|
}
|
|
|
|
event = strings.TrimPrefix(event, "bts:")
|
|
switch event {
|
|
case "heartbeat":
|
|
return nil
|
|
case "subscription_succeeded", "unsubscription_succeeded":
|
|
return b.handleWSSubscription(event, respRaw)
|
|
case "data":
|
|
return b.handleWSOrderbook(respRaw)
|
|
case "trade":
|
|
return b.handleWSTrade(respRaw)
|
|
case "order_created", "order_deleted", "order_changed":
|
|
return b.handleWSOrder(event, respRaw)
|
|
case "request_reconnect":
|
|
go func() {
|
|
if err := b.Websocket.Shutdown(); err != nil { // Connection monitor will reconnect
|
|
log.Errorf(log.WebsocketMgr, "%s failed to shutdown websocket: %v", b.Name, err)
|
|
}
|
|
}()
|
|
default:
|
|
b.Websocket.DataHandler <- websocket.UnhandledMessageWarning{Message: b.Name + websocket.UnhandledMessage + string(respRaw)}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (b *Bitstamp) handleWSSubscription(event string, respRaw []byte) error {
|
|
channel, err := jsonparser.GetUnsafeString(respRaw, "channel")
|
|
if err != nil {
|
|
return fmt.Errorf("%w `channel`: %w", common.ErrParsingWSField, err)
|
|
}
|
|
event = strings.TrimSuffix(event, "scription_succeeded")
|
|
return b.Websocket.Match.RequireMatchWithData(event+":"+channel, respRaw)
|
|
}
|
|
|
|
func (b *Bitstamp) handleWSTrade(msg []byte) error {
|
|
if !b.IsSaveTradeDataEnabled() {
|
|
return nil
|
|
}
|
|
|
|
_, p, err := b.parseChannelName(msg)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
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(trade.Data{
|
|
Timestamp: time.Unix(wsTradeTemp.Data.Timestamp, 0),
|
|
CurrencyPair: p,
|
|
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(event string, msg []byte) error {
|
|
channel, p, err := b.parseChannelName(msg)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if channel != bitstampAPIWSMyOrders {
|
|
return nil // Only process MyOrders, not orders from the LiveOrder channel
|
|
}
|
|
|
|
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 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: p,
|
|
}
|
|
|
|
b.Websocket.DataHandler <- d
|
|
|
|
return nil
|
|
}
|
|
|
|
func (b *Bitstamp) generateSubscriptions() (subscription.List, error) {
|
|
return b.Features.Subscriptions.ExpandTemplates(b)
|
|
}
|
|
|
|
// GetSubscriptionTemplate returns a subscription channel template
|
|
func (b *Bitstamp) 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 a list of channels
|
|
func (b *Bitstamp) Subscribe(subs subscription.List) error {
|
|
return b.manageSubsWithCreds(subs, "sub")
|
|
}
|
|
|
|
// Unsubscribe sends a websocket message to stop receiving data from a list of channels
|
|
func (b *Bitstamp) Unsubscribe(subs subscription.List) error {
|
|
return b.manageSubsWithCreds(subs, "unsub")
|
|
}
|
|
|
|
func (b *Bitstamp) manageSubsWithCreds(subs subscription.List, op string) error {
|
|
var errs error
|
|
var creds *WebsocketAuthResponse
|
|
if authed := subs.Private(); len(authed) > 0 {
|
|
creds, errs = b.FetchWSAuth(context.TODO())
|
|
}
|
|
return common.AppendError(errs, b.ParallelChanOp(subs, func(s subscription.List) error { return b.manageSubs(s, op, creds) }, 1))
|
|
}
|
|
|
|
func (b *Bitstamp) manageSubs(subs subscription.List, op string, creds *WebsocketAuthResponse) error {
|
|
subs, errs := subs.ExpandTemplates(b)
|
|
for _, s := range subs {
|
|
req := websocketEventRequest{
|
|
Event: "bts:" + op + "scribe",
|
|
Data: websocketData{
|
|
Channel: s.QualifiedChannel,
|
|
},
|
|
}
|
|
if s.Authenticated {
|
|
if creds == nil {
|
|
return request.ErrAuthRequestFailed
|
|
}
|
|
req.Data.Channel = "private-" + req.Data.Channel + "-" + strconv.Itoa(int(creds.UserID))
|
|
req.Data.Auth = creds.Token
|
|
}
|
|
_, err := b.Websocket.Conn.SendMessageReturnResponse(context.TODO(), request.Unset, op+":"+req.Data.Channel, req)
|
|
if err == nil {
|
|
if op == "sub" {
|
|
err = b.Websocket.AddSuccessfulSubscriptions(b.Websocket.Conn, s)
|
|
} else {
|
|
err = b.Websocket.RemoveSubscriptions(b.Websocket.Conn, s)
|
|
}
|
|
}
|
|
if err != nil {
|
|
errs = common.AppendError(errs, err)
|
|
}
|
|
}
|
|
|
|
return errs
|
|
}
|
|
|
|
func (b *Bitstamp) handleWSOrderbook(msg []byte) error {
|
|
_, p, err := b.parseChannelName(msg)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
wsOrderBookResp := websocketOrderBookResponse{}
|
|
if err := json.Unmarshal(msg, &wsOrderBookResp); err != nil {
|
|
return err
|
|
}
|
|
update := &wsOrderBookResp.Data
|
|
|
|
if len(update.Asks) == 0 && len(update.Bids) == 0 {
|
|
return errors.New("no orderbook data")
|
|
}
|
|
|
|
obUpdate := &orderbook.Base{
|
|
Bids: make(orderbook.Tranches, len(update.Bids)),
|
|
Asks: make(orderbook.Tranches, len(update.Asks)),
|
|
Pair: p,
|
|
LastUpdated: time.UnixMicro(update.Microtimestamp),
|
|
Asset: asset.Spot,
|
|
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.Tranche{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.Tranche{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.Tranches, len(orderbookSeed.Bids)),
|
|
Asks: make(orderbook.Tranches, len(orderbookSeed.Asks)),
|
|
LastUpdated: time.Unix(orderbookSeed.Timestamp, 0),
|
|
}
|
|
|
|
for i := range orderbookSeed.Asks {
|
|
newOrderBook.Asks[i] = orderbook.Tranche{
|
|
Price: orderbookSeed.Asks[i].Price,
|
|
Amount: orderbookSeed.Asks[i].Amount,
|
|
}
|
|
}
|
|
for i := range orderbookSeed.Bids {
|
|
newOrderBook.Bids[i] = orderbook.Tranche{
|
|
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
|
|
}
|
|
|
|
// parseChannelName splits the ws message channel and returns the channel name and pair
|
|
func (b *Bitstamp) parseChannelName(respRaw []byte) (string, currency.Pair, error) {
|
|
channel, err := jsonparser.GetUnsafeString(respRaw, "channel")
|
|
if err != nil {
|
|
return "", currency.EMPTYPAIR, fmt.Errorf("%w `channel`: %w", common.ErrParsingWSField, err)
|
|
}
|
|
|
|
authParts := strings.Split(channel, "-")
|
|
switch len(authParts) {
|
|
case 1:
|
|
// Not an auth channel
|
|
case 3:
|
|
channel = authParts[1]
|
|
default:
|
|
return "", currency.EMPTYPAIR, fmt.Errorf("%w: %s", errChannelHyphens, channel)
|
|
}
|
|
|
|
parts := strings.Split(channel, "_")
|
|
if len(parts) != 3 {
|
|
return "", currency.EMPTYPAIR, fmt.Errorf("%w: %s", errChannelUnderscores, channel)
|
|
}
|
|
|
|
enabledPairs, err := b.GetEnabledPairs(asset.Spot)
|
|
if err != nil {
|
|
return "", currency.EMPTYPAIR, err
|
|
}
|
|
|
|
pair, err := enabledPairs.DeriveFrom(parts[2])
|
|
if err != nil {
|
|
return "", currency.EMPTYPAIR, fmt.Errorf("%w: %s", errParsingWSPair, err)
|
|
}
|
|
|
|
return parts[0] + "_" + parts[1], pair, nil
|
|
}
|
|
|
|
// channelName converts global channel Names to exchange specific ones
|
|
// panics if name is not supported, so should be called within a recover chain
|
|
func channelName(s *subscription.Subscription) string {
|
|
if s, ok := subscriptionNames[s.Channel]; ok {
|
|
return s
|
|
}
|
|
panic(fmt.Errorf("%w: %s", subscription.ErrNotSupported, s.Channel))
|
|
}
|
|
|
|
const subTplText = `
|
|
{{ range $asset, $pairs := $.AssetPairs }}
|
|
{{- with $name := channelName $.S }}
|
|
{{- range $p := $pairs -}}
|
|
{{- $name -}} _ {{- $p -}}
|
|
{{ $.PairSeparator }}
|
|
{{- end -}}
|
|
{{- end }}
|
|
{{ $.AssetSeparator }}
|
|
{{- end }}
|
|
`
|