123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- // Package implements Twitch API PubSub and automatically take care of API
- // limits. Also it will handle automatically reconnections, ping/pong and
- // maintenance requests.
- package pubsub
- import (
- "fmt"
- "net/url"
- "strings"
- "time"
- )
- // Default Twitch server API credentials.
- //
- // https://dev.twitch.tv/docs/pubsub/#connection-management
- const TwitchApiScheme = "wss"
- const TwitchApiHost = "pubsub-edge.twitch.tv"
- const TwitchApiPath = ""
- const TwitchApiMaxTopics = 50
- // PubSub is represent of API client.
- type PubSub struct {
- URL url.URL
- Connections map[int64]*Connection
- // Events
- eventOnConnect func(*Connection)
- eventOnDisconnect func(*Connection)
- eventOnError func(*Connection, error)
- eventOnInfo func(*Connection, string)
- eventOnMessage func(*Connection, *Answer)
- eventOnPing func(*Connection, time.Time)
- eventOnPong func(*Connection, time.Time, time.Time)
- }
- // New create and returns new API client.
- func New() *PubSub {
- return NewWithURL(url.URL{
- Scheme: TwitchApiScheme,
- Host: TwitchApiHost,
- Path: TwitchApiPath,
- })
- }
- // NewWithURL create and returns new API client with custom API server URL.
- // It can be useful for testing.
- func NewWithURL(url url.URL) *PubSub {
- p := PubSub{URL: url}
- return &p
- }
- // -----------------------------------------------------------------------------
- // Listen is adding topics for listening. It take care of API limits.
- // New TCP connection will be created for every 50 topics.
- //
- // https://dev.twitch.tv/docs/pubsub/#connection-management
- func (p *PubSub) Listen(topic string, params ...interface{}) {
- // TODO: ...
- }
- // Unlisten is remove topics from listening. It take care of API limits too.
- // Connection count will automatically decrease of needs.
- //
- // https://dev.twitch.tv/docs/pubsub/#connection-management
- func (p *PubSub) Unlisten(topic string, params ...interface{}) {
- // TODO: ...
- }
- // Topic generate correct topic for API.
- // Params can be as number or string.
- //
- // https://dev.twitch.tv/docs/pubsub/#topics
- func (p *PubSub) Topic(topic string, params ...interface{}) string {
- if len(params) <= 0 {
- return topic
- }
- var list []string
- for _, param := range params {
- list = append(list, fmt.Sprint(param))
- }
- return fmt.Sprintf("%s.%s", topic, strings.Join(list, "."))
- }
- // -----------------------------------------------------------------------------
- func (c *PubSub) OnConnect(fn func(*Connection)) {
- c.eventOnConnect = fn
- }
- func (c *PubSub) OnDisconnect(fn func(*Connection)) {
- c.eventOnDisconnect = fn
- }
- func (c *PubSub) OnError(fn func(*Connection, error)) {
- c.eventOnError = fn
- }
- func (c *PubSub) OnInfo(fn func(*Connection, string)) {
- c.eventOnInfo = fn
- }
- func (c *PubSub) OnMessage(fn func(*Connection, *Answer)) {
- c.eventOnMessage = fn
- }
- func (c *PubSub) OnPing(fn func(*Connection, time.Time)) {
- c.eventOnPing = fn
- }
- func (c *PubSub) OnPong(fn func(*Connection, time.Time, time.Time)) {
- c.eventOnPong = fn
- }
|