2021-06-10 23:48:32 +00:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
2021-09-28 20:19:04 +00:00
|
|
|
"context"
|
|
|
|
|
2021-06-10 23:48:32 +00:00
|
|
|
"github.com/diamondburned/arikawa/v3/discord"
|
|
|
|
"github.com/diamondburned/arikawa/v3/utils/httputil"
|
|
|
|
)
|
|
|
|
|
|
|
|
// BotData contains the GatewayURL as well as extra metadata on how to
|
|
|
|
// shard bots.
|
|
|
|
type BotData struct {
|
|
|
|
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
|
|
|
|
// used in BotData.
|
|
|
|
type SessionStartLimit struct {
|
|
|
|
Total int `json:"total"`
|
|
|
|
Remaining int `json:"remaining"`
|
|
|
|
ResetAfter discord.Milliseconds `json:"reset_after"`
|
|
|
|
MaxConcurrency int `json:"max_concurrency"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// BotURL fetches the Gateway URL along with extra metadata. The token
|
|
|
|
// passed in will NOT be prefixed with Bot.
|
|
|
|
func (c *Client) BotURL() (*BotData, error) {
|
|
|
|
var g *BotData
|
|
|
|
return g, c.RequestJSON(&g, "GET", EndpointGatewayBot)
|
|
|
|
}
|
|
|
|
|
|
|
|
// GatewayURL asks Discord for a Websocket URL to the Gateway.
|
2021-09-28 20:19:04 +00:00
|
|
|
func GatewayURL(ctx context.Context) (string, error) {
|
2021-06-10 23:48:32 +00:00
|
|
|
var g BotData
|
2021-09-28 20:19:04 +00:00
|
|
|
err := httputil.NewClient().WithContext(ctx).RequestJSON(&g, "GET", EndpointGateway)
|
|
|
|
return g.URL, err
|
2021-06-10 23:48:32 +00:00
|
|
|
}
|