events.go 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  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. ChunkIndex int `json:"chunk_index"`
  120. ChunkCount int `json:"chunk_count"`
  121. Presences []*Presence `json:"presences,omitempty"`
  122. }
  123. // GuildIntegrationsUpdate is the data for a GuildIntegrationsUpdate event.
  124. type GuildIntegrationsUpdate struct {
  125. GuildID string `json:"guild_id"`
  126. }
  127. // MessageAck is the data for a MessageAck event.
  128. type MessageAck struct {
  129. MessageID string `json:"message_id"`
  130. ChannelID string `json:"channel_id"`
  131. }
  132. // MessageCreate is the data for a MessageCreate event.
  133. type MessageCreate struct {
  134. *Message
  135. }
  136. // MessageUpdate is the data for a MessageUpdate event.
  137. type MessageUpdate struct {
  138. *Message
  139. // BeforeUpdate will be nil if the Message was not previously cached in the state cache.
  140. BeforeUpdate *Message `json:"-"`
  141. }
  142. // MessageDelete is the data for a MessageDelete event.
  143. type MessageDelete struct {
  144. *Message
  145. BeforeDelete *Message `json:"-"`
  146. }
  147. // MessageReactionAdd is the data for a MessageReactionAdd event.
  148. type MessageReactionAdd struct {
  149. *MessageReaction
  150. }
  151. // MessageReactionRemove is the data for a MessageReactionRemove event.
  152. type MessageReactionRemove struct {
  153. *MessageReaction
  154. }
  155. // MessageReactionRemoveAll is the data for a MessageReactionRemoveAll event.
  156. type MessageReactionRemoveAll struct {
  157. *MessageReaction
  158. }
  159. // PresencesReplace is the data for a PresencesReplace event.
  160. type PresencesReplace []*Presence
  161. // PresenceUpdate is the data for a PresenceUpdate event.
  162. type PresenceUpdate struct {
  163. Presence
  164. GuildID string `json:"guild_id"`
  165. }
  166. // Resumed is the data for a Resumed event.
  167. type Resumed struct {
  168. Trace []string `json:"_trace"`
  169. }
  170. // RelationshipAdd is the data for a RelationshipAdd event.
  171. type RelationshipAdd struct {
  172. *Relationship
  173. }
  174. // RelationshipRemove is the data for a RelationshipRemove event.
  175. type RelationshipRemove struct {
  176. *Relationship
  177. }
  178. // TypingStart is the data for a TypingStart event.
  179. type TypingStart struct {
  180. UserID string `json:"user_id"`
  181. ChannelID string `json:"channel_id"`
  182. GuildID string `json:"guild_id,omitempty"`
  183. Timestamp int `json:"timestamp"`
  184. }
  185. // UserUpdate is the data for a UserUpdate event.
  186. type UserUpdate struct {
  187. *User
  188. }
  189. // UserSettingsUpdate is the data for a UserSettingsUpdate event.
  190. type UserSettingsUpdate map[string]interface{}
  191. // UserGuildSettingsUpdate is the data for a UserGuildSettingsUpdate event.
  192. type UserGuildSettingsUpdate struct {
  193. *UserGuildSettings
  194. }
  195. // UserNoteUpdate is the data for a UserNoteUpdate event.
  196. type UserNoteUpdate struct {
  197. ID string `json:"id"`
  198. Note string `json:"note"`
  199. }
  200. // VoiceServerUpdate is the data for a VoiceServerUpdate event.
  201. type VoiceServerUpdate struct {
  202. Token string `json:"token"`
  203. GuildID string `json:"guild_id"`
  204. Endpoint string `json:"endpoint"`
  205. }
  206. // VoiceStateUpdate is the data for a VoiceStateUpdate event.
  207. type VoiceStateUpdate struct {
  208. *VoiceState
  209. // BeforeUpdate will be nil if the VoiceState was not previously cached in the state cache.
  210. BeforeUpdate *VoiceState `json:"-"`
  211. }
  212. // MessageDeleteBulk is the data for a MessageDeleteBulk event
  213. type MessageDeleteBulk struct {
  214. Messages []string `json:"ids"`
  215. ChannelID string `json:"channel_id"`
  216. GuildID string `json:"guild_id"`
  217. }
  218. // WebhooksUpdate is the data for a WebhooksUpdate event
  219. type WebhooksUpdate struct {
  220. GuildID string `json:"guild_id"`
  221. ChannelID string `json:"channel_id"`
  222. }