events.go 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  1. package discordgo
  2. import (
  3. "encoding/json"
  4. )
  5. // This file contains all the possible structs that can be
  6. // handled by AddHandler/EventHandler.
  7. // DO NOT ADD ANYTHING BUT EVENT HANDLER STRUCTS TO THIS FILE.
  8. //go:generate go run tools/cmd/eventhandlers/main.go
  9. // Connect is the data for a Connect event.
  10. // This is a synthetic event and is not dispatched by Discord.
  11. type Connect struct{}
  12. // Disconnect is the data for a Disconnect event.
  13. // This is a synthetic event and is not dispatched by Discord.
  14. type Disconnect struct{}
  15. // RateLimit is the data for a RateLimit event.
  16. // This is a synthetic event and is not dispatched by Discord.
  17. type RateLimit struct {
  18. *TooManyRequests
  19. URL string
  20. }
  21. // Event provides a basic initial struct for all websocket events.
  22. type Event struct {
  23. Operation int `json:"op"`
  24. Sequence int64 `json:"s"`
  25. Type string `json:"t"`
  26. RawData json.RawMessage `json:"d"`
  27. // Struct contains one of the other types in this file.
  28. Struct interface{} `json:"-"`
  29. }
  30. // A Ready stores all data for the websocket READY event.
  31. type Ready struct {
  32. Version int `json:"v"`
  33. SessionID string `json:"session_id"`
  34. User *User `json:"user"`
  35. ReadState []*ReadState `json:"read_state"`
  36. PrivateChannels []*Channel `json:"private_channels"`
  37. Guilds []*Guild `json:"guilds"`
  38. // Undocumented fields
  39. Settings *Settings `json:"user_settings"`
  40. UserGuildSettings []*UserGuildSettings `json:"user_guild_settings"`
  41. Relationships []*Relationship `json:"relationships"`
  42. Presences []*Presence `json:"presences"`
  43. Notes map[string]string `json:"notes"`
  44. }
  45. // ChannelCreate is the data for a ChannelCreate event.
  46. type ChannelCreate struct {
  47. *Channel
  48. }
  49. // ChannelUpdate is the data for a ChannelUpdate event.
  50. type ChannelUpdate struct {
  51. *Channel
  52. }
  53. // ChannelDelete is the data for a ChannelDelete event.
  54. type ChannelDelete struct {
  55. *Channel
  56. }
  57. // ChannelPinsUpdate stores data for a ChannelPinsUpdate event.
  58. type ChannelPinsUpdate struct {
  59. LastPinTimestamp string `json:"last_pin_timestamp"`
  60. ChannelID string `json:"channel_id"`
  61. GuildID string `json:"guild_id,omitempty"`
  62. }
  63. // GuildCreate is the data for a GuildCreate event.
  64. type GuildCreate struct {
  65. *Guild
  66. }
  67. // GuildUpdate is the data for a GuildUpdate event.
  68. type GuildUpdate struct {
  69. *Guild
  70. }
  71. // GuildDelete is the data for a GuildDelete event.
  72. type GuildDelete struct {
  73. *Guild
  74. }
  75. // GuildBanAdd is the data for a GuildBanAdd event.
  76. type GuildBanAdd struct {
  77. User *User `json:"user"`
  78. GuildID string `json:"guild_id"`
  79. }
  80. // GuildBanRemove is the data for a GuildBanRemove event.
  81. type GuildBanRemove struct {
  82. User *User `json:"user"`
  83. GuildID string `json:"guild_id"`
  84. }
  85. // GuildMemberAdd is the data for a GuildMemberAdd event.
  86. type GuildMemberAdd struct {
  87. *Member
  88. }
  89. // GuildMemberUpdate is the data for a GuildMemberUpdate event.
  90. type GuildMemberUpdate struct {
  91. *Member
  92. }
  93. // GuildMemberRemove is the data for a GuildMemberRemove event.
  94. type GuildMemberRemove struct {
  95. *Member
  96. }
  97. // GuildRoleCreate is the data for a GuildRoleCreate event.
  98. type GuildRoleCreate struct {
  99. *GuildRole
  100. }
  101. // GuildRoleUpdate is the data for a GuildRoleUpdate event.
  102. type GuildRoleUpdate struct {
  103. *GuildRole
  104. }
  105. // A GuildRoleDelete is the data for a GuildRoleDelete event.
  106. type GuildRoleDelete struct {
  107. RoleID string `json:"role_id"`
  108. GuildID string `json:"guild_id"`
  109. }
  110. // A GuildEmojisUpdate is the data for a guild emoji update event.
  111. type GuildEmojisUpdate struct {
  112. GuildID string `json:"guild_id"`
  113. Emojis []*Emoji `json:"emojis"`
  114. }
  115. // A GuildMembersChunk is the data for a GuildMembersChunk event.
  116. type GuildMembersChunk struct {
  117. GuildID string `json:"guild_id"`
  118. Members []*Member `json:"members"`
  119. }
  120. // GuildIntegrationsUpdate is the data for a GuildIntegrationsUpdate event.
  121. type GuildIntegrationsUpdate struct {
  122. GuildID string `json:"guild_id"`
  123. }
  124. // MessageAck is the data for a MessageAck event.
  125. type MessageAck struct {
  126. MessageID string `json:"message_id"`
  127. ChannelID string `json:"channel_id"`
  128. }
  129. // MessageCreate is the data for a MessageCreate event.
  130. type MessageCreate struct {
  131. *Message
  132. }
  133. // MessageUpdate is the data for a MessageUpdate event.
  134. type MessageUpdate struct {
  135. *Message
  136. // BeforeUpdate will be nil if the Message was not previously cached in the state cache.
  137. BeforeUpdate *Message `json:"-"`
  138. }
  139. // MessageDelete is the data for a MessageDelete event.
  140. type MessageDelete struct {
  141. *Message
  142. }
  143. // MessageReactionAdd is the data for a MessageReactionAdd event.
  144. type MessageReactionAdd struct {
  145. *MessageReaction
  146. }
  147. // MessageReactionRemove is the data for a MessageReactionRemove event.
  148. type MessageReactionRemove struct {
  149. *MessageReaction
  150. }
  151. // MessageReactionRemoveAll is the data for a MessageReactionRemoveAll event.
  152. type MessageReactionRemoveAll struct {
  153. *MessageReaction
  154. }
  155. // PresencesReplace is the data for a PresencesReplace event.
  156. type PresencesReplace []*Presence
  157. // PresenceUpdate is the data for a PresenceUpdate event.
  158. type PresenceUpdate struct {
  159. Presence
  160. GuildID string `json:"guild_id"`
  161. Roles []string `json:"roles"`
  162. }
  163. // Resumed is the data for a Resumed event.
  164. type Resumed struct {
  165. Trace []string `json:"_trace"`
  166. }
  167. // RelationshipAdd is the data for a RelationshipAdd event.
  168. type RelationshipAdd struct {
  169. *Relationship
  170. }
  171. // RelationshipRemove is the data for a RelationshipRemove event.
  172. type RelationshipRemove struct {
  173. *Relationship
  174. }
  175. // TypingStart is the data for a TypingStart event.
  176. type TypingStart struct {
  177. UserID string `json:"user_id"`
  178. ChannelID string `json:"channel_id"`
  179. GuildID string `json:"guild_id,omitempty"`
  180. Timestamp int `json:"timestamp"`
  181. }
  182. // UserUpdate is the data for a UserUpdate event.
  183. type UserUpdate struct {
  184. *User
  185. }
  186. // UserSettingsUpdate is the data for a UserSettingsUpdate event.
  187. type UserSettingsUpdate map[string]interface{}
  188. // UserGuildSettingsUpdate is the data for a UserGuildSettingsUpdate event.
  189. type UserGuildSettingsUpdate struct {
  190. *UserGuildSettings
  191. }
  192. // UserNoteUpdate is the data for a UserNoteUpdate event.
  193. type UserNoteUpdate struct {
  194. ID string `json:"id"`
  195. Note string `json:"note"`
  196. }
  197. // VoiceServerUpdate is the data for a VoiceServerUpdate event.
  198. type VoiceServerUpdate struct {
  199. Token string `json:"token"`
  200. GuildID string `json:"guild_id"`
  201. Endpoint string `json:"endpoint"`
  202. }
  203. // VoiceStateUpdate is the data for a VoiceStateUpdate event.
  204. type VoiceStateUpdate struct {
  205. *VoiceState
  206. }
  207. // MessageDeleteBulk is the data for a MessageDeleteBulk event
  208. type MessageDeleteBulk struct {
  209. Messages []string `json:"ids"`
  210. ChannelID string `json:"channel_id"`
  211. GuildID string `json:"guild_id"`
  212. }
  213. // WebhooksUpdate is the data for a WebhooksUpdate event
  214. type WebhooksUpdate struct {
  215. GuildID string `json:"guild_id"`
  216. ChannelID string `json:"channel_id"`
  217. }