-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathready.go
48 lines (41 loc) · 1.48 KB
/
ready.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package harmony
import (
"encoding/json"
"fmt"
"github.com/skwair/harmony/discord"
)
// Ready is the Event fired by the Gateway after the client sent
// a valid Identify payload.
type Ready struct {
V int `json:"v"` // Gateway version.
User *discord.User `json:"user"`
Guilds []discord.UnavailableGuild `json:"guilds"`
SessionID string `json:"session_id"`
Application discord.PartialApplication `json:"application"`
GeoOrderedRTCRegions []string `json:"geo_ordered_rtc_regions"`
Shard [2]int `json:"shard"`
}
// recvReady expects to receive a Ready payload from the Gateway and will set the
// session ID of the client if it receive it, else an error is returned.
func (c *Client) recvReady() error {
p, err := c.recvPayload()
if err != nil {
return fmt.Errorf("could not receive ready payload from gateway: %w", err)
}
if p.Op != gatewayOpcodeDispatch || p.T != eventReady {
return fmt.Errorf("expected Opcode 0 Ready; got Opcode %d %s", p.Op, p.T)
}
var rdy Ready
if err = json.Unmarshal(p.D, &rdy); err != nil {
return err
}
c.sessionID = rdy.SessionID
c.userID = rdy.User.ID
if c.withStateTracking {
c.logger.Debug("initializing state tracker")
c.State.setInitialState(&rdy)
}
// Let this event be dispatched so the user
// can get the initial state of the connection.
return c.handleEvent(p)
}