mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-13 23:16:45 +00:00
* switch over to package defined const for time layout * bump appveyor playa * bumperino to latest while setting patherino * whoooops * bump VS version set GOROOT * puge build cache * Revert "puge build cache" This reverts commit 315bb578afc19529457f435e52af2172f5143bc5. * bumperino to test * purge setting of golang directory for version and allow default * purge cache state when file change * whoops * thrasher: nits * don't need to flusherino the cacherino --------- Co-authored-by: Ryan O'Hara-Reid <ryan.oharareid@thrasher.io>
223 lines
5.0 KiB
Go
223 lines
5.0 KiB
Go
package bithumb
|
|
|
|
import (
|
|
"encoding/json"
|
|
"errors"
|
|
"fmt"
|
|
"net/http"
|
|
"time"
|
|
|
|
"github.com/gorilla/websocket"
|
|
"github.com/thrasher-corp/gocryptotrader/exchanges/asset"
|
|
"github.com/thrasher-corp/gocryptotrader/exchanges/stream"
|
|
"github.com/thrasher-corp/gocryptotrader/exchanges/ticker"
|
|
"github.com/thrasher-corp/gocryptotrader/exchanges/trade"
|
|
)
|
|
|
|
const (
|
|
wsEndpoint = "wss://pubwss.bithumb.com/pub/ws"
|
|
tickerTimeLayout = "20060102150405"
|
|
tradeTimeLayout = time.DateTime + ".000000"
|
|
)
|
|
|
|
var (
|
|
wsDefaultTickTypes = []string{"30M"} // alternatives "1H", "12H", "24H", "MID"
|
|
location *time.Location
|
|
)
|
|
|
|
// WsConnect initiates a websocket connection
|
|
func (b *Bithumb) WsConnect() error {
|
|
if !b.Websocket.IsEnabled() || !b.IsEnabled() {
|
|
return errors.New(stream.WebsocketNotEnabled)
|
|
}
|
|
|
|
var dialer websocket.Dialer
|
|
dialer.HandshakeTimeout = b.Config.HTTPTimeout
|
|
dialer.Proxy = http.ProxyFromEnvironment
|
|
|
|
err := b.Websocket.Conn.Dial(&dialer, http.Header{})
|
|
if err != nil {
|
|
return fmt.Errorf("%v - Unable to connect to Websocket. Error: %w",
|
|
b.Name,
|
|
err)
|
|
}
|
|
|
|
b.Websocket.Wg.Add(1)
|
|
go b.wsReadData()
|
|
|
|
b.setupOrderbookManager()
|
|
return nil
|
|
}
|
|
|
|
// wsReadData receives and passes on websocket messages for processing
|
|
func (b *Bithumb) wsReadData() {
|
|
defer b.Websocket.Wg.Done()
|
|
|
|
for {
|
|
select {
|
|
case <-b.Websocket.ShutdownC:
|
|
return
|
|
default:
|
|
resp := b.Websocket.Conn.ReadMessage()
|
|
if resp.Raw == nil {
|
|
return
|
|
}
|
|
err := b.wsHandleData(resp.Raw)
|
|
if err != nil {
|
|
b.Websocket.DataHandler <- err
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
func (b *Bithumb) wsHandleData(respRaw []byte) error {
|
|
var resp WsResponse
|
|
err := json.Unmarshal(respRaw, &resp)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if len(resp.Status) > 0 {
|
|
if resp.Status == "0000" {
|
|
return nil
|
|
}
|
|
return fmt.Errorf("%s: %w",
|
|
resp.ResponseMessage,
|
|
stream.ErrSubscriptionFailure)
|
|
}
|
|
|
|
switch resp.Type {
|
|
case "ticker":
|
|
var tick WsTicker
|
|
err = json.Unmarshal(resp.Content, &tick)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
var lu time.Time
|
|
lu, err = time.ParseInLocation(tickerTimeLayout,
|
|
tick.Date+tick.Time,
|
|
location)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
b.Websocket.DataHandler <- &ticker.Price{
|
|
ExchangeName: b.Name,
|
|
AssetType: asset.Spot,
|
|
Last: tick.PreviousClosePrice,
|
|
Pair: tick.Symbol,
|
|
Open: tick.OpenPrice,
|
|
Close: tick.ClosePrice,
|
|
Low: tick.LowPrice,
|
|
High: tick.HighPrice,
|
|
QuoteVolume: tick.Value,
|
|
Volume: tick.Volume,
|
|
LastUpdated: lu,
|
|
}
|
|
case "transaction":
|
|
if !b.IsSaveTradeDataEnabled() {
|
|
return nil
|
|
}
|
|
|
|
var trades WsTransactions
|
|
err = json.Unmarshal(resp.Content, &trades)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
toBuffer := make([]trade.Data, len(trades.List))
|
|
var lu time.Time
|
|
for x := range trades.List {
|
|
lu, err = time.ParseInLocation(tradeTimeLayout,
|
|
trades.List[x].ContractTime,
|
|
location)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
toBuffer[x] = trade.Data{
|
|
Exchange: b.Name,
|
|
AssetType: asset.Spot,
|
|
CurrencyPair: trades.List[x].Symbol,
|
|
Timestamp: lu,
|
|
Price: trades.List[x].ContractPrice,
|
|
Amount: trades.List[x].ContractAmount,
|
|
}
|
|
}
|
|
|
|
err = b.AddTradesToBuffer(toBuffer...)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
case "orderbookdepth":
|
|
var orderbooks WsOrderbooks
|
|
err = json.Unmarshal(resp.Content, &orderbooks)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
init, err := b.UpdateLocalBuffer(&orderbooks)
|
|
if err != nil && !init {
|
|
return fmt.Errorf("%v - UpdateLocalCache error: %s", b.Name, err)
|
|
}
|
|
return nil
|
|
default:
|
|
return fmt.Errorf("unhandled response type %s", resp.Type)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// GenerateSubscriptions generates the default subscription set
|
|
func (b *Bithumb) GenerateSubscriptions() ([]stream.ChannelSubscription, error) {
|
|
var channels = []string{"ticker", "transaction", "orderbookdepth"}
|
|
var subscriptions []stream.ChannelSubscription
|
|
pairs, err := b.GetEnabledPairs(asset.Spot)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
pFmt, err := b.GetPairFormat(asset.Spot, true)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
for x := range pairs {
|
|
for y := range channels {
|
|
subscriptions = append(subscriptions, stream.ChannelSubscription{
|
|
Channel: channels[y],
|
|
Currency: pairs[x].Format(pFmt),
|
|
Asset: asset.Spot,
|
|
})
|
|
}
|
|
}
|
|
return subscriptions, nil
|
|
}
|
|
|
|
// Subscribe subscribes to a set of channels
|
|
func (b *Bithumb) Subscribe(channelsToSubscribe []stream.ChannelSubscription) error {
|
|
subs := make(map[string]*WsSubscribe)
|
|
for i := range channelsToSubscribe {
|
|
s, ok := subs[channelsToSubscribe[i].Channel]
|
|
if !ok {
|
|
s = &WsSubscribe{
|
|
Type: channelsToSubscribe[i].Channel,
|
|
}
|
|
subs[channelsToSubscribe[i].Channel] = s
|
|
}
|
|
s.Symbols = append(s.Symbols, channelsToSubscribe[i].Currency)
|
|
}
|
|
|
|
tSub, ok := subs["ticker"]
|
|
if ok {
|
|
tSub.TickTypes = wsDefaultTickTypes
|
|
}
|
|
|
|
for _, s := range subs {
|
|
err := b.Websocket.Conn.SendJSONMessage(s)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
b.Websocket.AddSuccessfulSubscriptions(channelsToSubscribe...)
|
|
return nil
|
|
}
|