2020-01-15 04:56:50 +00:00
|
|
|
// Package gateway handles the Discord gateway (or Websocket) connection, its
|
|
|
|
// events, and everything related to it. This includes logging into the
|
|
|
|
// Websocket.
|
|
|
|
//
|
|
|
|
// This package does not abstract events and function handlers; instead, it
|
|
|
|
// leaves that to the session package. This package exposes only a single Events
|
|
|
|
// channel.
|
2020-01-15 04:43:34 +00:00
|
|
|
package gateway
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2020-04-19 16:17:04 +00:00
|
|
|
"net/http"
|
2020-01-15 04:43:34 +00:00
|
|
|
"net/url"
|
2020-02-08 06:17:27 +00:00
|
|
|
"sync"
|
2020-01-15 04:43:34 +00:00
|
|
|
"time"
|
|
|
|
|
2020-10-28 22:39:59 +00:00
|
|
|
"github.com/diamondburned/arikawa/v2/api"
|
|
|
|
"github.com/diamondburned/arikawa/v2/discord"
|
2020-11-29 01:22:03 +00:00
|
|
|
"github.com/diamondburned/arikawa/v2/internal/moreatomic"
|
2020-10-28 22:39:59 +00:00
|
|
|
"github.com/diamondburned/arikawa/v2/utils/httputil"
|
|
|
|
"github.com/diamondburned/arikawa/v2/utils/json"
|
|
|
|
"github.com/diamondburned/arikawa/v2/utils/wsutil"
|
2020-01-15 04:43:34 +00:00
|
|
|
"github.com/pkg/errors"
|
|
|
|
)
|
|
|
|
|
2020-04-19 16:30:12 +00:00
|
|
|
var (
|
2020-01-15 04:43:34 +00:00
|
|
|
EndpointGateway = api.Endpoint + "gateway"
|
|
|
|
EndpointGatewayBot = api.EndpointGateway + "/bot"
|
|
|
|
|
2020-10-30 18:24:10 +00:00
|
|
|
Version = api.Version
|
2020-01-15 04:43:34 +00:00
|
|
|
Encoding = "json"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2020-04-19 16:17:04 +00:00
|
|
|
ErrMissingForResume = errors.New("missing session ID or sequence for resuming")
|
|
|
|
ErrWSMaxTries = errors.New("max tries reached")
|
2020-01-15 04:43:34 +00:00
|
|
|
)
|
|
|
|
|
2020-07-29 23:29:01 +00:00
|
|
|
// BotData contains the GatewayURL as well as extra metadata on how to
|
2020-04-19 16:17:04 +00:00
|
|
|
// shard bots.
|
2020-07-29 23:29:01 +00:00
|
|
|
type BotData struct {
|
2020-04-19 16:17:04 +00:00
|
|
|
URL string `json:"url"`
|
|
|
|
Shards int `json:"shards,omitempty"`
|
|
|
|
StartLimit *SessionStartLimit `json:"session_start_limit"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// SessionStartLimit is the information on the current session start limit. It's
|
2020-07-29 23:29:01 +00:00
|
|
|
// used in BotData.
|
2020-04-19 16:17:04 +00:00
|
|
|
type SessionStartLimit struct {
|
|
|
|
Total int `json:"total"`
|
|
|
|
Remaining int `json:"remaining"`
|
|
|
|
ResetAfter discord.Milliseconds `json:"reset_after"`
|
|
|
|
}
|
|
|
|
|
2020-04-19 21:53:53 +00:00
|
|
|
// URL asks Discord for a Websocket URL to the Gateway.
|
|
|
|
func URL() (string, error) {
|
2020-07-29 23:29:01 +00:00
|
|
|
var g BotData
|
2020-04-19 16:17:04 +00:00
|
|
|
|
2020-04-19 21:53:53 +00:00
|
|
|
return g.URL, httputil.NewClient().RequestJSON(
|
2020-04-19 16:17:04 +00:00
|
|
|
&g, "GET",
|
|
|
|
EndpointGateway,
|
|
|
|
)
|
|
|
|
}
|
2020-01-15 04:43:34 +00:00
|
|
|
|
2020-04-19 21:53:53 +00:00
|
|
|
// BotURL fetches the Gateway URL along with extra metadata. The token
|
2020-04-19 16:17:04 +00:00
|
|
|
// passed in will NOT be prefixed with Bot.
|
2020-07-29 23:29:01 +00:00
|
|
|
func BotURL(token string) (*BotData, error) {
|
|
|
|
var g *BotData
|
2020-04-19 16:17:04 +00:00
|
|
|
|
2020-04-19 21:53:53 +00:00
|
|
|
return g, httputil.NewClient().RequestJSON(
|
2020-04-19 16:17:04 +00:00
|
|
|
&g, "GET",
|
|
|
|
EndpointGatewayBot,
|
|
|
|
httputil.WithHeaders(http.Header{
|
|
|
|
"Authorization": {token},
|
|
|
|
}),
|
|
|
|
)
|
2020-01-15 04:43:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type Gateway struct {
|
2020-11-29 01:22:03 +00:00
|
|
|
WS *wsutil.Websocket
|
|
|
|
|
|
|
|
// WSTimeout is a timeout for an arbitrary action. An example of this is the
|
|
|
|
// timeout for Start and the timeout for sending each Gateway command
|
|
|
|
// independently.
|
2020-01-15 04:43:34 +00:00
|
|
|
WSTimeout time.Duration
|
2020-10-30 20:41:04 +00:00
|
|
|
// ReconnectTimeout is the timeout used during reconnection.
|
|
|
|
// If the a connection to the gateway can't be established before the
|
|
|
|
// duration passes, the Gateway will be closed and FatalErrorCallback will
|
|
|
|
// be called.
|
|
|
|
//
|
|
|
|
// Setting this to 0 is equivalent to no timeout.
|
|
|
|
ReconnectTimeout time.Duration
|
2020-01-15 04:43:34 +00:00
|
|
|
|
2020-01-15 04:56:50 +00:00
|
|
|
// All events sent over are pointers to Event structs (structs suffixed with
|
2020-01-19 21:54:16 +00:00
|
|
|
// "Event"). This shouldn't be accessed if the Gateway is created with a
|
|
|
|
// Session.
|
2020-01-15 04:56:50 +00:00
|
|
|
Events chan Event
|
2020-01-15 04:43:34 +00:00
|
|
|
|
2020-08-20 03:48:55 +00:00
|
|
|
// SessionID is used to store the session ID received after Ready. It is not
|
|
|
|
// thread-safe.
|
2020-01-15 04:56:50 +00:00
|
|
|
SessionID string
|
2020-01-15 04:43:34 +00:00
|
|
|
|
2020-01-15 07:34:18 +00:00
|
|
|
Identifier *Identifier
|
2020-11-29 01:22:03 +00:00
|
|
|
Sequence *moreatomic.Int64
|
2020-08-20 03:48:55 +00:00
|
|
|
|
|
|
|
PacerLoop wsutil.PacemakerLoop
|
2020-01-15 04:43:34 +00:00
|
|
|
|
|
|
|
ErrorLog func(err error) // default to log.Println
|
2020-10-30 20:41:04 +00:00
|
|
|
// FatalErrorCallback is called, if the Gateway exits fatally. At the point
|
|
|
|
// of calling, the gateway will be already closed.
|
|
|
|
//
|
|
|
|
// Currently this will only be called, if the ReconnectTimeout was changed
|
|
|
|
// to a definite timeout, and connection could not be established during
|
|
|
|
// that time.
|
|
|
|
// err will be ErrWSMaxTries in that case.
|
|
|
|
//
|
|
|
|
// Defaults to noop.
|
|
|
|
FatalErrorCallback func(err error)
|
2020-03-01 02:13:58 +00:00
|
|
|
|
2020-04-07 02:36:06 +00:00
|
|
|
// AfterClose is called after each close. Error can be non-nil, as this is
|
|
|
|
// called even when the Gateway is gracefully closed. It's used mainly for
|
|
|
|
// reconnections or any type of connection interruptions.
|
|
|
|
AfterClose func(err error) // noop by default
|
|
|
|
|
2020-10-30 18:02:37 +00:00
|
|
|
waitGroup sync.WaitGroup
|
2020-01-15 04:43:34 +00:00
|
|
|
}
|
|
|
|
|
2020-07-11 19:50:32 +00:00
|
|
|
// NewGatewayWithIntents creates a new Gateway with the given intents and the
|
|
|
|
// default stdlib JSON driver. Refer to NewGatewayWithDriver and AddIntents.
|
|
|
|
func NewGatewayWithIntents(token string, intents ...Intents) (*Gateway, error) {
|
|
|
|
g, err := NewGateway(token)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, intent := range intents {
|
2020-10-29 05:49:18 +00:00
|
|
|
g.AddIntents(intent)
|
2020-07-11 19:50:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return g, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewGateway creates a new Gateway with the default stdlib JSON driver. For
|
|
|
|
// more information, refer to NewGatewayWithDriver.
|
2020-01-15 04:43:34 +00:00
|
|
|
func NewGateway(token string) (*Gateway, error) {
|
2020-04-19 21:53:53 +00:00
|
|
|
URL, err := URL()
|
2020-01-15 04:43:34 +00:00
|
|
|
if err != nil {
|
2020-05-16 21:14:49 +00:00
|
|
|
return nil, errors.Wrap(err, "failed to get gateway endpoint")
|
2020-01-15 04:43:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Parameters for the gateway
|
2020-04-06 19:03:42 +00:00
|
|
|
param := url.Values{
|
|
|
|
"v": {Version},
|
|
|
|
"encoding": {Encoding},
|
|
|
|
}
|
|
|
|
|
2020-01-15 04:43:34 +00:00
|
|
|
// Append the form to the URL
|
|
|
|
URL += "?" + param.Encode()
|
|
|
|
|
2020-04-24 06:34:08 +00:00
|
|
|
return NewCustomGateway(URL, token), nil
|
2020-04-19 16:17:04 +00:00
|
|
|
}
|
2020-01-15 04:43:34 +00:00
|
|
|
|
2020-04-24 06:34:08 +00:00
|
|
|
func NewCustomGateway(gatewayURL, token string) *Gateway {
|
2020-04-19 16:17:04 +00:00
|
|
|
return &Gateway{
|
2020-04-24 22:30:15 +00:00
|
|
|
WS: wsutil.NewCustom(wsutil.NewConn(), gatewayURL),
|
|
|
|
WSTimeout: wsutil.WSTimeout,
|
|
|
|
|
2020-04-24 06:34:08 +00:00
|
|
|
Events: make(chan Event, wsutil.WSBuffer),
|
2020-04-19 16:17:04 +00:00
|
|
|
Identifier: DefaultIdentifier(token),
|
2020-11-29 01:22:03 +00:00
|
|
|
Sequence: moreatomic.NewInt64(0),
|
2020-04-24 22:30:15 +00:00
|
|
|
|
2020-04-24 06:34:08 +00:00
|
|
|
ErrorLog: wsutil.WSError,
|
2020-04-19 16:17:04 +00:00
|
|
|
AfterClose: func(error) {},
|
|
|
|
}
|
2020-01-15 04:43:34 +00:00
|
|
|
}
|
|
|
|
|
2020-10-29 05:49:18 +00:00
|
|
|
// AddIntents adds a Gateway Intent before connecting to the Gateway. As such,
|
|
|
|
// this function will only work before Open() is called.
|
|
|
|
func (g *Gateway) AddIntents(i Intents) {
|
2020-07-11 19:50:32 +00:00
|
|
|
g.Identifier.Intents |= i
|
|
|
|
}
|
|
|
|
|
2020-11-19 18:43:31 +00:00
|
|
|
// HasIntents reports if the Gateway has the passed Intents.
|
2020-12-08 19:46:49 +00:00
|
|
|
//
|
|
|
|
// If no intents are set, i.e. if using a user account HasIntents will always
|
|
|
|
// return true.
|
2020-11-19 18:43:31 +00:00
|
|
|
func (g *Gateway) HasIntents(intents Intents) bool {
|
2020-12-08 19:46:49 +00:00
|
|
|
if g.Identifier.Intents == 0 {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2020-11-19 18:43:31 +00:00
|
|
|
return g.Identifier.Intents.Has(intents)
|
|
|
|
}
|
|
|
|
|
2020-01-15 04:43:34 +00:00
|
|
|
// Close closes the underlying Websocket connection.
|
2020-10-30 18:02:37 +00:00
|
|
|
func (g *Gateway) Close() error {
|
|
|
|
wsutil.WSDebug("Trying to close. Pacemaker check skipped.")
|
2020-04-25 07:13:07 +00:00
|
|
|
|
2020-10-30 18:02:37 +00:00
|
|
|
wsutil.WSDebug("Closing the Websocket...")
|
|
|
|
err := g.WS.Close()
|
2020-03-07 19:50:30 +00:00
|
|
|
|
2020-10-30 18:02:37 +00:00
|
|
|
if errors.Is(err, wsutil.ErrWebsocketClosed) {
|
|
|
|
wsutil.WSDebug("Websocket already closed.")
|
|
|
|
return nil
|
2020-03-07 19:50:30 +00:00
|
|
|
}
|
|
|
|
|
2020-10-30 18:02:37 +00:00
|
|
|
wsutil.WSDebug("Websocket closed; error:", err)
|
2020-02-08 06:17:27 +00:00
|
|
|
|
2020-10-30 18:02:37 +00:00
|
|
|
wsutil.WSDebug("Waiting for the Pacemaker loop to exit.")
|
2020-02-08 06:17:27 +00:00
|
|
|
g.waitGroup.Wait()
|
2020-10-30 18:02:37 +00:00
|
|
|
wsutil.WSDebug("Pacemaker loop exited.")
|
|
|
|
|
|
|
|
g.AfterClose(err)
|
|
|
|
wsutil.WSDebug("AfterClose callback finished.")
|
2020-02-08 06:17:27 +00:00
|
|
|
|
2020-04-07 02:36:06 +00:00
|
|
|
return err
|
2020-01-15 04:43:34 +00:00
|
|
|
}
|
|
|
|
|
2020-10-30 20:41:04 +00:00
|
|
|
// Reconnect tries to reconnect until the ReconnectTimeout is reached, or if
|
|
|
|
// set to 0 reconnects indefinitely.
|
2020-07-15 23:32:53 +00:00
|
|
|
func (g *Gateway) Reconnect() {
|
2020-10-30 20:41:04 +00:00
|
|
|
ctx := context.Background()
|
|
|
|
|
|
|
|
if g.ReconnectTimeout > 0 {
|
|
|
|
var cancel func()
|
|
|
|
ctx, cancel = context.WithTimeout(context.Background(), g.WSTimeout)
|
|
|
|
|
|
|
|
defer cancel()
|
2020-07-19 01:33:07 +00:00
|
|
|
}
|
2020-10-30 20:41:04 +00:00
|
|
|
|
|
|
|
// ignore the error, it is already logged and FatalErrorCallback was called
|
|
|
|
g.ReconnectCtx(ctx)
|
2020-04-24 06:34:08 +00:00
|
|
|
}
|
|
|
|
|
2020-10-30 20:41:04 +00:00
|
|
|
// ReconnectCtx attempts to reconnect until context expires.
|
|
|
|
// If the context expires FatalErrorCallback will be called with ErrWSMaxTries,
|
|
|
|
// and the last error returned by Open will be returned.
|
2020-07-29 23:29:01 +00:00
|
|
|
func (g *Gateway) ReconnectCtx(ctx context.Context) (err error) {
|
2020-04-24 06:34:08 +00:00
|
|
|
wsutil.WSDebug("Reconnecting...")
|
2020-02-08 06:17:27 +00:00
|
|
|
|
2020-04-12 18:06:43 +00:00
|
|
|
// Guarantee the gateway is already closed. Ignore its error, as we're
|
|
|
|
// redialing anyway.
|
|
|
|
g.Close()
|
2020-01-29 03:54:22 +00:00
|
|
|
|
2020-04-12 18:06:43 +00:00
|
|
|
for i := 1; ; i++ {
|
2020-07-29 23:29:01 +00:00
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
2020-10-30 20:41:04 +00:00
|
|
|
g.FatalErrorCallback(ErrWSMaxTries)
|
2020-07-29 23:29:01 +00:00
|
|
|
return err
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
|
2020-04-24 06:34:08 +00:00
|
|
|
wsutil.WSDebug("Trying to dial, attempt", i)
|
2020-01-17 22:29:13 +00:00
|
|
|
|
2020-02-20 03:36:00 +00:00
|
|
|
// Condition: err == ErrInvalidSession:
|
|
|
|
// If the connection is rate limited (documented behavior):
|
2020-11-03 17:16:42 +00:00
|
|
|
// https://discord.com/developers/docs/topics/gateway#rate-limiting
|
2020-01-19 06:34:52 +00:00
|
|
|
|
2020-07-29 23:29:01 +00:00
|
|
|
// make sure we don't overwrite our last error
|
|
|
|
if err = g.OpenContext(ctx); err != nil {
|
|
|
|
g.ErrorLog(err)
|
|
|
|
continue
|
2020-01-17 22:29:13 +00:00
|
|
|
}
|
|
|
|
|
2020-04-24 06:34:08 +00:00
|
|
|
wsutil.WSDebug("Started after attempt:", i)
|
2020-07-29 23:29:01 +00:00
|
|
|
|
|
|
|
return
|
2020-02-20 03:36:00 +00:00
|
|
|
}
|
|
|
|
}
|
2020-01-17 22:29:13 +00:00
|
|
|
|
2020-04-06 19:03:42 +00:00
|
|
|
// Open connects to the Websocket and authenticate it. You should usually use
|
|
|
|
// this function over Start().
|
2020-02-20 03:36:00 +00:00
|
|
|
func (g *Gateway) Open() error {
|
2020-07-11 19:50:32 +00:00
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), g.WSTimeout)
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
return g.OpenContext(ctx)
|
2020-04-24 06:34:08 +00:00
|
|
|
}
|
2020-02-08 06:17:27 +00:00
|
|
|
|
2020-07-29 23:29:01 +00:00
|
|
|
// OpenContext connects to the Websocket and authenticates it. You should
|
2020-07-11 19:50:32 +00:00
|
|
|
// usually use this function over Start(). The given context provides
|
|
|
|
// cancellation and timeout.
|
2020-04-24 06:34:08 +00:00
|
|
|
func (g *Gateway) OpenContext(ctx context.Context) error {
|
2020-02-20 03:36:00 +00:00
|
|
|
// Reconnect to the Gateway
|
|
|
|
if err := g.WS.Dial(ctx); err != nil {
|
2020-05-16 21:14:49 +00:00
|
|
|
return errors.Wrap(err, "failed to reconnect")
|
2020-02-20 03:36:00 +00:00
|
|
|
}
|
2020-01-17 22:29:13 +00:00
|
|
|
|
2020-04-24 06:34:08 +00:00
|
|
|
wsutil.WSDebug("Trying to start...")
|
2020-01-17 22:29:13 +00:00
|
|
|
|
2020-02-20 03:36:00 +00:00
|
|
|
// Try to resume the connection
|
2020-07-11 19:50:32 +00:00
|
|
|
if err := g.StartCtx(ctx); err != nil {
|
2020-02-20 03:36:00 +00:00
|
|
|
return err
|
2020-01-17 22:29:13 +00:00
|
|
|
}
|
2020-02-20 03:36:00 +00:00
|
|
|
|
|
|
|
// Started successfully, return
|
|
|
|
return nil
|
2020-01-15 04:43:34 +00:00
|
|
|
}
|
|
|
|
|
2020-07-11 19:50:32 +00:00
|
|
|
// Start calls StartCtx with a background context. You wouldn't usually use this
|
2020-04-06 19:03:42 +00:00
|
|
|
// function, but Open() instead.
|
2020-01-15 04:43:34 +00:00
|
|
|
func (g *Gateway) Start() error {
|
2020-07-11 19:50:32 +00:00
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), g.WSTimeout)
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
return g.StartCtx(ctx)
|
|
|
|
}
|
2020-03-01 02:13:58 +00:00
|
|
|
|
2020-07-11 19:50:32 +00:00
|
|
|
// StartCtx authenticates with the websocket, or resume from a dead Websocket
|
|
|
|
// connection. You wouldn't usually use this function, but OpenCtx() instead.
|
|
|
|
func (g *Gateway) StartCtx(ctx context.Context) error {
|
|
|
|
if err := g.start(ctx); err != nil {
|
2020-04-24 06:34:08 +00:00
|
|
|
wsutil.WSDebug("Start failed:", err)
|
2020-04-06 19:03:42 +00:00
|
|
|
|
|
|
|
// Close can be called with the mutex still acquired here, as the
|
|
|
|
// pacemaker hasn't started yet.
|
2020-02-08 06:17:27 +00:00
|
|
|
if err := g.Close(); err != nil {
|
2020-04-24 06:34:08 +00:00
|
|
|
wsutil.WSDebug("Failed to close after start fail:", err)
|
2020-02-08 06:17:27 +00:00
|
|
|
}
|
2020-01-20 11:06:20 +00:00
|
|
|
return err
|
|
|
|
}
|
2020-07-11 19:50:32 +00:00
|
|
|
|
2020-01-20 11:06:20 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-07-11 19:50:32 +00:00
|
|
|
func (g *Gateway) start(ctx context.Context) error {
|
2020-01-15 04:43:34 +00:00
|
|
|
// This is where we'll get our events
|
|
|
|
ch := g.WS.Listen()
|
|
|
|
|
2020-07-11 19:50:32 +00:00
|
|
|
// Create a new Hello event and wait for it.
|
2020-01-15 04:43:34 +00:00
|
|
|
var hello HelloEvent
|
2020-07-11 19:50:32 +00:00
|
|
|
// Wait for an OP 10 Hello.
|
|
|
|
select {
|
|
|
|
case e, ok := <-ch:
|
|
|
|
if !ok {
|
|
|
|
return errors.New("unexpected ws close while waiting for Hello")
|
|
|
|
}
|
|
|
|
if _, err := wsutil.AssertEvent(e, HelloOP, &hello); err != nil {
|
|
|
|
return errors.Wrap(err, "error at Hello")
|
|
|
|
}
|
|
|
|
case <-ctx.Done():
|
|
|
|
return errors.Wrap(ctx.Err(), "failed to wait for Hello event")
|
2020-01-15 04:43:34 +00:00
|
|
|
}
|
|
|
|
|
2020-10-31 22:52:55 +00:00
|
|
|
wsutil.WSDebug("Hello received; duration:", hello.HeartbeatInterval)
|
|
|
|
|
2020-01-15 04:43:34 +00:00
|
|
|
// Send Discord either the Identify packet (if it's a fresh connection), or
|
|
|
|
// a Resume packet (if it's a dead connection).
|
|
|
|
if g.SessionID == "" {
|
|
|
|
// SessionID is empty, so this is a completely new session.
|
2020-07-11 19:50:32 +00:00
|
|
|
if err := g.IdentifyCtx(ctx); err != nil {
|
2020-05-16 21:14:49 +00:00
|
|
|
return errors.Wrap(err, "failed to identify")
|
2020-01-15 04:43:34 +00:00
|
|
|
}
|
|
|
|
} else {
|
2020-07-11 19:50:32 +00:00
|
|
|
if err := g.ResumeCtx(ctx); err != nil {
|
2020-05-16 21:14:49 +00:00
|
|
|
return errors.Wrap(err, "failed to resume")
|
2020-01-15 04:43:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-06 20:26:00 +00:00
|
|
|
// Expect either READY or RESUMED before continuing.
|
2020-04-24 06:34:08 +00:00
|
|
|
wsutil.WSDebug("Waiting for either READY or RESUMED.")
|
2020-04-06 20:26:00 +00:00
|
|
|
|
2020-04-19 16:17:04 +00:00
|
|
|
// WaitForEvent should
|
2020-07-11 19:50:32 +00:00
|
|
|
err := wsutil.WaitForEvent(ctx, g, ch, func(op *wsutil.OP) bool {
|
2020-04-06 20:26:00 +00:00
|
|
|
switch op.EventName {
|
|
|
|
case "READY":
|
2020-04-24 06:34:08 +00:00
|
|
|
wsutil.WSDebug("Found READY event.")
|
2020-04-06 20:26:00 +00:00
|
|
|
return true
|
|
|
|
case "RESUMED":
|
2020-04-24 06:34:08 +00:00
|
|
|
wsutil.WSDebug("Found RESUMED event.")
|
2020-04-06 20:26:00 +00:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
})
|
2020-01-19 21:54:16 +00:00
|
|
|
|
2020-04-06 20:26:00 +00:00
|
|
|
if err != nil {
|
2020-05-16 21:14:49 +00:00
|
|
|
return errors.Wrap(err, "first error")
|
2020-01-19 21:54:16 +00:00
|
|
|
}
|
|
|
|
|
2020-04-12 18:06:43 +00:00
|
|
|
// Start the event handler, which also handles the pacemaker death signal.
|
2020-02-08 06:17:27 +00:00
|
|
|
g.waitGroup.Add(1)
|
2020-01-15 04:43:34 +00:00
|
|
|
|
2020-08-20 03:48:55 +00:00
|
|
|
// Use the pacemaker loop.
|
|
|
|
g.PacerLoop.RunAsync(hello.HeartbeatInterval.Duration(), ch, g, func(err error) {
|
2020-04-25 07:13:07 +00:00
|
|
|
g.waitGroup.Done() // mark so Close() can exit.
|
|
|
|
wsutil.WSDebug("Event loop stopped with error:", err)
|
2020-02-08 06:17:27 +00:00
|
|
|
|
2020-04-25 07:13:07 +00:00
|
|
|
if err != nil {
|
|
|
|
g.ErrorLog(err)
|
|
|
|
g.Reconnect()
|
|
|
|
}
|
|
|
|
})
|
2020-01-15 04:43:34 +00:00
|
|
|
|
2020-04-25 07:13:07 +00:00
|
|
|
wsutil.WSDebug("Started successfully.")
|
2020-02-08 06:17:27 +00:00
|
|
|
|
2020-04-25 07:13:07 +00:00
|
|
|
return nil
|
2020-02-08 06:17:27 +00:00
|
|
|
}
|
2020-01-15 04:43:34 +00:00
|
|
|
|
2020-07-11 19:50:32 +00:00
|
|
|
// SendCtx is a low-level function to send an OP payload to the Gateway. Most
|
|
|
|
// users shouldn't touch this, unless they know what they're doing.
|
|
|
|
func (g *Gateway) SendCtx(ctx context.Context, code OPCode, v interface{}) error {
|
2020-04-24 22:09:05 +00:00
|
|
|
var op = wsutil.OP{
|
2020-01-15 04:43:34 +00:00
|
|
|
Code: code,
|
|
|
|
}
|
|
|
|
|
|
|
|
if v != nil {
|
2020-04-24 06:34:08 +00:00
|
|
|
b, err := json.Marshal(v)
|
2020-01-15 04:43:34 +00:00
|
|
|
if err != nil {
|
2020-05-16 21:14:49 +00:00
|
|
|
return errors.Wrap(err, "failed to encode v")
|
2020-01-15 04:43:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
op.Data = b
|
|
|
|
}
|
|
|
|
|
2020-04-24 06:34:08 +00:00
|
|
|
b, err := json.Marshal(op)
|
2020-01-15 04:43:34 +00:00
|
|
|
if err != nil {
|
2020-05-16 21:14:49 +00:00
|
|
|
return errors.Wrap(err, "failed to encode payload")
|
2020-01-15 04:43:34 +00:00
|
|
|
}
|
|
|
|
|
2020-04-06 19:03:42 +00:00
|
|
|
// WS should already be thread-safe.
|
2020-07-11 19:50:32 +00:00
|
|
|
return g.WS.SendCtx(ctx, b)
|
2020-01-15 04:43:34 +00:00
|
|
|
}
|