pubsub.go 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. // Package implements Twitch API PubSub and automatically take care of API
  2. // limits. Also it will handle automatically reconnections, ping/pong and
  3. // maintenance requests.
  4. package pubsub
  5. import (
  6. "fmt"
  7. "net/url"
  8. "strings"
  9. "time"
  10. )
  11. // Default Twitch server API credentials.
  12. //
  13. // https://dev.twitch.tv/docs/pubsub/#connection-management
  14. const TwitchApiScheme = "wss"
  15. const TwitchApiHost = "pubsub-edge.twitch.tv"
  16. const TwitchApiPath = ""
  17. const TwitchApiMaxTopics = 50
  18. // PubSub is represent of API client.
  19. type PubSub struct {
  20. URL url.URL
  21. Connections map[int64]*Connection
  22. // Events
  23. eventOnConnect func(*Connection)
  24. eventOnDisconnect func(*Connection)
  25. eventOnError func(*Connection, error)
  26. eventOnInfo func(*Connection, string)
  27. eventOnMessage func(*Connection, *Answer)
  28. eventOnPing func(*Connection, time.Time)
  29. eventOnPong func(*Connection, time.Time, time.Time)
  30. }
  31. // New create and returns new API client.
  32. func New() *PubSub {
  33. return NewWithURL(url.URL{
  34. Scheme: TwitchApiScheme,
  35. Host: TwitchApiHost,
  36. Path: TwitchApiPath,
  37. })
  38. }
  39. // NewWithURL create and returns new API client with custom API server URL.
  40. // It can be useful for testing.
  41. func NewWithURL(url url.URL) *PubSub {
  42. p := PubSub{URL: url}
  43. return &p
  44. }
  45. // -----------------------------------------------------------------------------
  46. // Listen is adding topics for listening. It take care of API limits.
  47. // New TCP connection will be created for every 50 topics.
  48. //
  49. // https://dev.twitch.tv/docs/pubsub/#connection-management
  50. func (p *PubSub) Listen(topic string, params ...interface{}) {
  51. // TODO: ...
  52. }
  53. // Unlisten is remove topics from listening. It take care of API limits too.
  54. // Connection count will automatically decrease of needs.
  55. //
  56. // https://dev.twitch.tv/docs/pubsub/#connection-management
  57. func (p *PubSub) Unlisten(topic string, params ...interface{}) {
  58. // TODO: ...
  59. }
  60. // Topic generate correct topic for API.
  61. // Params can be as number or string.
  62. //
  63. // https://dev.twitch.tv/docs/pubsub/#topics
  64. func (p *PubSub) Topic(topic string, params ...interface{}) string {
  65. if len(params) <= 0 {
  66. return topic
  67. }
  68. var list []string
  69. for _, param := range params {
  70. list = append(list, fmt.Sprint(param))
  71. }
  72. return fmt.Sprintf("%s.%s", topic, strings.Join(list, "."))
  73. }
  74. // -----------------------------------------------------------------------------
  75. func (c *PubSub) OnConnect(fn func(*Connection)) {
  76. c.eventOnConnect = fn
  77. }
  78. func (c *PubSub) OnDisconnect(fn func(*Connection)) {
  79. c.eventOnDisconnect = fn
  80. }
  81. func (c *PubSub) OnError(fn func(*Connection, error)) {
  82. c.eventOnError = fn
  83. }
  84. func (c *PubSub) OnInfo(fn func(*Connection, string)) {
  85. c.eventOnInfo = fn
  86. }
  87. func (c *PubSub) OnMessage(fn func(*Connection, *Answer)) {
  88. c.eventOnMessage = fn
  89. }
  90. func (c *PubSub) OnPing(fn func(*Connection, time.Time)) {
  91. c.eventOnPing = fn
  92. }
  93. func (c *PubSub) OnPong(fn func(*Connection, time.Time, time.Time)) {
  94. c.eventOnPong = fn
  95. }