arikawa/gateway/op.go

115 lines
2.7 KiB
Go
Raw Normal View History

2020-01-15 04:43:34 +00:00
package gateway
import (
"context"
2020-01-15 04:43:34 +00:00
"fmt"
2020-01-18 07:40:44 +00:00
"math/rand"
"time"
2020-01-15 04:43:34 +00:00
"github.com/diamondburned/arikawa/utils/json"
"github.com/diamondburned/arikawa/utils/wsutil"
2020-01-15 04:43:34 +00:00
"github.com/pkg/errors"
)
type OPCode = wsutil.OPCode
2020-01-15 04:43:34 +00:00
const (
DispatchOP OPCode = 0 // recv
HeartbeatOP OPCode = 1 // send/recv
IdentifyOP OPCode = 2 // send...
StatusUpdateOP OPCode = 3 //
VoiceStateUpdateOP OPCode = 4 //
VoiceServerPingOP OPCode = 5 //
ResumeOP OPCode = 6 //
ReconnectOP OPCode = 7 // recv
RequestGuildMembersOP OPCode = 8 // send
InvalidSessionOP OPCode = 9 // recv...
HelloOP OPCode = 10
HeartbeatAckOP OPCode = 11
CallConnectOP OPCode = 13
GuildSubscriptionsOP OPCode = 14
2020-01-15 04:43:34 +00:00
)
func (g *Gateway) HandleOP(op *wsutil.OP) error {
2020-01-15 04:43:34 +00:00
switch op.Code {
case HeartbeatAckOP:
// Heartbeat from the server?
g.PacerLoop.Echo()
2020-01-15 04:43:34 +00:00
case HeartbeatOP:
ctx, cancel := context.WithTimeout(context.Background(), g.WSTimeout)
defer cancel()
2020-01-15 04:43:34 +00:00
// Server requesting a heartbeat.
return g.PacerLoop.Pace(ctx)
2020-01-15 04:43:34 +00:00
case ReconnectOP:
// Server requests to reconnect, die and retry.
wsutil.WSDebug("ReconnectOP received.")
// We must reconnect in another goroutine, as running Reconnect
// synchronously would prevent the main event loop from exiting.
go g.Reconnect()
// Gracefully exit with a nil let the event handler take the signal from
// the pacemaker.
return nil
2020-01-15 04:43:34 +00:00
case InvalidSessionOP:
2020-01-18 07:40:44 +00:00
// Discord expects us to sleep for no reason
time.Sleep(time.Duration(rand.Intn(5)+1) * time.Second)
ctx, cancel := context.WithTimeout(context.Background(), g.WSTimeout)
defer cancel()
// Invalid session, try and Identify.
if err := g.IdentifyCtx(ctx); err != nil {
// Can't identify, reconnect.
go g.Reconnect()
}
return nil
2020-01-15 04:43:34 +00:00
case HelloOP:
// What is this OP doing here???
return nil
case DispatchOP:
2020-01-15 07:34:18 +00:00
// Set the sequence
2020-01-16 03:28:21 +00:00
if op.Sequence > 0 {
g.Sequence.Set(op.Sequence)
}
2020-01-15 07:34:18 +00:00
2020-01-15 04:43:34 +00:00
// Check if we know the event
fn, ok := EventCreator[op.EventName]
if !ok {
2020-02-16 05:29:25 +00:00
return fmt.Errorf(
"unknown event %s: %s",
2020-02-16 05:29:25 +00:00
op.EventName, string(op.Data),
)
2020-01-15 04:43:34 +00:00
}
// Make a new pointer to the event
var ev = fn()
// Try and parse the event
if err := json.Unmarshal(op.Data, ev); err != nil {
2020-05-16 21:14:49 +00:00
return errors.Wrap(err, "failed to parse event "+op.EventName)
2020-01-15 04:43:34 +00:00
}
2020-01-16 03:28:21 +00:00
// If the event is a ready, we'll want its sessionID
if ev, ok := ev.(*ReadyEvent); ok {
g.SessionID = ev.SessionID
}
2020-01-15 04:43:34 +00:00
// Throw the event into a channel, it's valid now.
g.Events <- ev
return nil
default:
2020-05-16 21:14:49 +00:00
return fmt.Errorf("unknown OP code %d (event %s)", op.Code, op.EventName)
2020-01-15 04:43:34 +00:00
}
return nil
}