interactions.go 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527
  1. package discordgo
  2. import (
  3. "bytes"
  4. "crypto/ed25519"
  5. "encoding/hex"
  6. "encoding/json"
  7. "fmt"
  8. "io"
  9. "io/ioutil"
  10. "net/http"
  11. "time"
  12. )
  13. // InteractionDeadline is the time allowed to respond to an interaction.
  14. const InteractionDeadline = time.Second * 3
  15. // ApplicationCommandType represents the type of application command.
  16. type ApplicationCommandType uint8
  17. // Application command types
  18. const (
  19. // ChatApplicationCommand is default command type. They are slash commands (i.e. called directly from the chat).
  20. ChatApplicationCommand ApplicationCommandType = 1
  21. // UserApplicationCommand adds command to user context menu.
  22. UserApplicationCommand ApplicationCommandType = 2
  23. // MessageApplicationCommand adds command to message context menu.
  24. MessageApplicationCommand ApplicationCommandType = 3
  25. )
  26. // ApplicationCommand represents an application's slash command.
  27. type ApplicationCommand struct {
  28. ID string `json:"id,omitempty"`
  29. ApplicationID string `json:"application_id,omitempty"`
  30. Type ApplicationCommandType `json:"type,omitempty"`
  31. Name string `json:"name"`
  32. // NOTE: Chat commands only. Otherwise it mustn't be set.
  33. Description string `json:"description,omitempty"`
  34. Version string `json:"version,omitempty"`
  35. // NOTE: Chat commands only. Otherwise it mustn't be set.
  36. Options []*ApplicationCommandOption `json:"options"`
  37. }
  38. // ApplicationCommandOptionType indicates the type of a slash command's option.
  39. type ApplicationCommandOptionType uint8
  40. // Application command option types.
  41. const (
  42. ApplicationCommandOptionSubCommand ApplicationCommandOptionType = 1
  43. ApplicationCommandOptionSubCommandGroup ApplicationCommandOptionType = 2
  44. ApplicationCommandOptionString ApplicationCommandOptionType = 3
  45. ApplicationCommandOptionInteger ApplicationCommandOptionType = 4
  46. ApplicationCommandOptionBoolean ApplicationCommandOptionType = 5
  47. ApplicationCommandOptionUser ApplicationCommandOptionType = 6
  48. ApplicationCommandOptionChannel ApplicationCommandOptionType = 7
  49. ApplicationCommandOptionRole ApplicationCommandOptionType = 8
  50. ApplicationCommandOptionMentionable ApplicationCommandOptionType = 9
  51. )
  52. func (t ApplicationCommandOptionType) String() string {
  53. switch t {
  54. case ApplicationCommandOptionSubCommand:
  55. return "SubCommand"
  56. case ApplicationCommandOptionSubCommandGroup:
  57. return "SubCommandGroup"
  58. case ApplicationCommandOptionString:
  59. return "String"
  60. case ApplicationCommandOptionInteger:
  61. return "Integer"
  62. case ApplicationCommandOptionBoolean:
  63. return "Boolean"
  64. case ApplicationCommandOptionUser:
  65. return "User"
  66. case ApplicationCommandOptionChannel:
  67. return "Channel"
  68. case ApplicationCommandOptionRole:
  69. return "Role"
  70. case ApplicationCommandOptionMentionable:
  71. return "Mentionable"
  72. }
  73. return fmt.Sprintf("ApplicationCommandOptionType(%d)", t)
  74. }
  75. // ApplicationCommandOption represents an option/subcommand/subcommands group.
  76. type ApplicationCommandOption struct {
  77. Type ApplicationCommandOptionType `json:"type"`
  78. Name string `json:"name"`
  79. Description string `json:"description,omitempty"`
  80. // NOTE: This feature was on the API, but at some point developers decided to remove it.
  81. // So I commented it, until it will be officially on the docs.
  82. // Default bool `json:"default"`
  83. ChannelTypes []ChannelType `json:"channel_types"`
  84. Required bool `json:"required"`
  85. Options []*ApplicationCommandOption `json:"options"`
  86. // NOTE: mutually exclusive with Choices.
  87. Autocomplete bool `json:"autocomplete"`
  88. Choices []*ApplicationCommandOptionChoice `json:"choices"`
  89. }
  90. // ApplicationCommandOptionChoice represents a slash command option choice.
  91. type ApplicationCommandOptionChoice struct {
  92. Name string `json:"name"`
  93. Value interface{} `json:"value"`
  94. }
  95. // InteractionType indicates the type of an interaction event.
  96. type InteractionType uint8
  97. // Interaction types
  98. const (
  99. InteractionPing InteractionType = 1
  100. InteractionApplicationCommand InteractionType = 2
  101. InteractionMessageComponent InteractionType = 3
  102. InteractionApplicationCommandAutocomplete InteractionType = 4
  103. InteractionModalSubmit InteractionType = 5
  104. )
  105. func (t InteractionType) String() string {
  106. switch t {
  107. case InteractionPing:
  108. return "Ping"
  109. case InteractionApplicationCommand:
  110. return "ApplicationCommand"
  111. case InteractionMessageComponent:
  112. return "MessageComponent"
  113. case InteractionModalSubmit:
  114. return "ModalSubmit"
  115. }
  116. return fmt.Sprintf("InteractionType(%d)", t)
  117. }
  118. // Interaction represents data of an interaction.
  119. type Interaction struct {
  120. ID string `json:"id"`
  121. Type InteractionType `json:"type"`
  122. Data InteractionData `json:"data"`
  123. GuildID string `json:"guild_id"`
  124. ChannelID string `json:"channel_id"`
  125. // The message on which interaction was used.
  126. // NOTE: this field is only filled when a button click triggered the interaction. Otherwise it will be nil.
  127. Message *Message `json:"message"`
  128. // The member who invoked this interaction.
  129. // NOTE: this field is only filled when the slash command was invoked in a guild;
  130. // if it was invoked in a DM, the `User` field will be filled instead.
  131. // Make sure to check for `nil` before using this field.
  132. Member *Member `json:"member"`
  133. // The user who invoked this interaction.
  134. // NOTE: this field is only filled when the slash command was invoked in a DM;
  135. // if it was invoked in a guild, the `Member` field will be filled instead.
  136. // Make sure to check for `nil` before using this field.
  137. User *User `json:"user"`
  138. // The user's discord client locale.
  139. Locale Locale `json:"locale"`
  140. // The guild's locale. This defaults to EnglishUS
  141. // NOTE: this field is only filled when the interaction was invoked in a guild.
  142. GuildLocale *Locale `json:"guild_locale"`
  143. Token string `json:"token"`
  144. Version int `json:"version"`
  145. }
  146. type interaction Interaction
  147. type rawInteraction struct {
  148. interaction
  149. Data json.RawMessage `json:"data"`
  150. }
  151. // UnmarshalJSON is a method for unmarshalling JSON object to Interaction.
  152. func (i *Interaction) UnmarshalJSON(raw []byte) error {
  153. var tmp rawInteraction
  154. err := json.Unmarshal(raw, &tmp)
  155. if err != nil {
  156. return err
  157. }
  158. *i = Interaction(tmp.interaction)
  159. switch tmp.Type {
  160. case InteractionApplicationCommand, InteractionApplicationCommandAutocomplete:
  161. v := ApplicationCommandInteractionData{}
  162. err = json.Unmarshal(tmp.Data, &v)
  163. if err != nil {
  164. return err
  165. }
  166. i.Data = v
  167. case InteractionMessageComponent:
  168. v := MessageComponentInteractionData{}
  169. err = json.Unmarshal(tmp.Data, &v)
  170. if err != nil {
  171. return err
  172. }
  173. i.Data = v
  174. case InteractionModalSubmit:
  175. v := ModalSubmitInteractionData{}
  176. err = json.Unmarshal(tmp.Data, &v)
  177. if err != nil {
  178. return err
  179. }
  180. i.Data = v
  181. }
  182. return nil
  183. }
  184. // MessageComponentData is helper function to assert the inner InteractionData to MessageComponentInteractionData.
  185. // Make sure to check that the Type of the interaction is InteractionMessageComponent before calling.
  186. func (i Interaction) MessageComponentData() (data MessageComponentInteractionData) {
  187. if i.Type != InteractionMessageComponent {
  188. panic("MessageComponentData called on interaction of type " + i.Type.String())
  189. }
  190. return i.Data.(MessageComponentInteractionData)
  191. }
  192. // ApplicationCommandData is helper function to assert the inner InteractionData to ApplicationCommandInteractionData.
  193. // Make sure to check that the Type of the interaction is InteractionApplicationCommand before calling.
  194. func (i Interaction) ApplicationCommandData() (data ApplicationCommandInteractionData) {
  195. if i.Type != InteractionApplicationCommand && i.Type != InteractionApplicationCommandAutocomplete {
  196. panic("ApplicationCommandData called on interaction of type " + i.Type.String())
  197. }
  198. return i.Data.(ApplicationCommandInteractionData)
  199. }
  200. // ModalSubmitData is helper function to assert the inner InteractionData to ModalSubmitInteractionData.
  201. // Make sure to check that the Type of the interaction is InteractionModalSubmit before calling.
  202. func (i Interaction) ModalSubmitData() (data ModalSubmitInteractionData) {
  203. if i.Type != InteractionModalSubmit {
  204. panic("ModalSubmitData called on interaction of type " + i.Type.String())
  205. }
  206. return i.Data.(ModalSubmitInteractionData)
  207. }
  208. // InteractionData is a common interface for all types of interaction data.
  209. type InteractionData interface {
  210. Type() InteractionType
  211. }
  212. // ApplicationCommandInteractionData contains the data of application command interaction.
  213. type ApplicationCommandInteractionData struct {
  214. ID string `json:"id"`
  215. Name string `json:"name"`
  216. Resolved *ApplicationCommandInteractionDataResolved `json:"resolved"`
  217. // Slash command options
  218. Options []*ApplicationCommandInteractionDataOption `json:"options"`
  219. // Target (user/message) id on which context menu command was called.
  220. // The details are stored in Resolved according to command type.
  221. TargetID string `json:"target_id"`
  222. }
  223. // ApplicationCommandInteractionDataResolved contains resolved data of command execution.
  224. // Partial Member objects are missing user, deaf and mute fields.
  225. // Partial Channel objects only have id, name, type and permissions fields.
  226. type ApplicationCommandInteractionDataResolved struct {
  227. Users map[string]*User `json:"users"`
  228. Members map[string]*Member `json:"members"`
  229. Roles map[string]*Role `json:"roles"`
  230. Channels map[string]*Channel `json:"channels"`
  231. Messages map[string]*Message `json:"messages"`
  232. }
  233. // Type returns the type of interaction data.
  234. func (ApplicationCommandInteractionData) Type() InteractionType {
  235. return InteractionApplicationCommand
  236. }
  237. // MessageComponentInteractionData contains the data of message component interaction.
  238. type MessageComponentInteractionData struct {
  239. CustomID string `json:"custom_id"`
  240. ComponentType ComponentType `json:"component_type"`
  241. // NOTE: Only filled when ComponentType is SelectMenuComponent (3). Otherwise is nil.
  242. Values []string `json:"values"`
  243. }
  244. // Type returns the type of interaction data.
  245. func (MessageComponentInteractionData) Type() InteractionType {
  246. return InteractionMessageComponent
  247. }
  248. // ModalSubmitInteractionData contains the data of modal submit interaction.
  249. type ModalSubmitInteractionData struct {
  250. CustomID string `json:"custom_id"`
  251. Components []MessageComponent `json:"-"`
  252. }
  253. // Type returns the type of interaction data.
  254. func (ModalSubmitInteractionData) Type() InteractionType {
  255. return InteractionModalSubmit
  256. }
  257. // UnmarshalJSON is a helper function to correctly unmarshal Components.
  258. func (d *ModalSubmitInteractionData) UnmarshalJSON(data []byte) error {
  259. type modalSubmitInteractionData ModalSubmitInteractionData
  260. var v struct {
  261. modalSubmitInteractionData
  262. RawComponents []unmarshalableMessageComponent `json:"components"`
  263. }
  264. err := json.Unmarshal(data, &v)
  265. if err != nil {
  266. return err
  267. }
  268. *d = ModalSubmitInteractionData(v.modalSubmitInteractionData)
  269. d.Components = make([]MessageComponent, len(v.RawComponents))
  270. for i, v := range v.RawComponents {
  271. d.Components[i] = v.MessageComponent
  272. }
  273. return err
  274. }
  275. // ApplicationCommandInteractionDataOption represents an option of a slash command.
  276. type ApplicationCommandInteractionDataOption struct {
  277. Name string `json:"name"`
  278. Type ApplicationCommandOptionType `json:"type"`
  279. // NOTE: Contains the value specified by Type.
  280. Value interface{} `json:"value,omitempty"`
  281. Options []*ApplicationCommandInteractionDataOption `json:"options,omitempty"`
  282. // NOTE: autocomplete interaction only.
  283. Focused bool `json:"focused,omitempty"`
  284. }
  285. // IntValue is a utility function for casting option value to integer
  286. func (o ApplicationCommandInteractionDataOption) IntValue() int64 {
  287. if o.Type != ApplicationCommandOptionInteger {
  288. panic("IntValue called on data option of type " + o.Type.String())
  289. }
  290. return int64(o.Value.(float64))
  291. }
  292. // UintValue is a utility function for casting option value to unsigned integer
  293. func (o ApplicationCommandInteractionDataOption) UintValue() uint64 {
  294. if o.Type != ApplicationCommandOptionInteger {
  295. panic("UintValue called on data option of type " + o.Type.String())
  296. }
  297. return uint64(o.Value.(float64))
  298. }
  299. // FloatValue is a utility function for casting option value to float
  300. func (o ApplicationCommandInteractionDataOption) FloatValue() float64 {
  301. // TODO: limit calls to Number type once it is released
  302. if v, ok := o.Value.(float64); ok {
  303. return v
  304. }
  305. return 0.0
  306. }
  307. // StringValue is a utility function for casting option value to string
  308. func (o ApplicationCommandInteractionDataOption) StringValue() string {
  309. if o.Type != ApplicationCommandOptionString {
  310. panic("StringValue called on data option of type " + o.Type.String())
  311. }
  312. return o.Value.(string)
  313. }
  314. // BoolValue is a utility function for casting option value to bool
  315. func (o ApplicationCommandInteractionDataOption) BoolValue() bool {
  316. if o.Type != ApplicationCommandOptionBoolean {
  317. panic("BoolValue called on data option of type " + o.Type.String())
  318. }
  319. return o.Value.(bool)
  320. }
  321. // ChannelValue is a utility function for casting option value to channel object.
  322. // s : Session object, if not nil, function additionally fetches all channel's data
  323. func (o ApplicationCommandInteractionDataOption) ChannelValue(s *Session) *Channel {
  324. if o.Type != ApplicationCommandOptionChannel {
  325. panic("ChannelValue called on data option of type " + o.Type.String())
  326. }
  327. chanID := o.Value.(string)
  328. if s == nil {
  329. return &Channel{ID: chanID}
  330. }
  331. ch, err := s.State.Channel(chanID)
  332. if err != nil {
  333. ch, err = s.Channel(chanID)
  334. if err != nil {
  335. return &Channel{ID: chanID}
  336. }
  337. }
  338. return ch
  339. }
  340. // RoleValue is a utility function for casting option value to role object.
  341. // s : Session object, if not nil, function additionally fetches all role's data
  342. func (o ApplicationCommandInteractionDataOption) RoleValue(s *Session, gID string) *Role {
  343. if o.Type != ApplicationCommandOptionRole && o.Type != ApplicationCommandOptionMentionable {
  344. panic("RoleValue called on data option of type " + o.Type.String())
  345. }
  346. roleID := o.Value.(string)
  347. if s == nil || gID == "" {
  348. return &Role{ID: roleID}
  349. }
  350. r, err := s.State.Role(roleID, gID)
  351. if err != nil {
  352. roles, err := s.GuildRoles(gID)
  353. if err == nil {
  354. for _, r = range roles {
  355. if r.ID == roleID {
  356. return r
  357. }
  358. }
  359. }
  360. return &Role{ID: roleID}
  361. }
  362. return r
  363. }
  364. // UserValue is a utility function for casting option value to user object.
  365. // s : Session object, if not nil, function additionally fetches all user's data
  366. func (o ApplicationCommandInteractionDataOption) UserValue(s *Session) *User {
  367. if o.Type != ApplicationCommandOptionUser && o.Type != ApplicationCommandOptionMentionable {
  368. panic("UserValue called on data option of type " + o.Type.String())
  369. }
  370. userID := o.Value.(string)
  371. if s == nil {
  372. return &User{ID: userID}
  373. }
  374. u, err := s.User(userID)
  375. if err != nil {
  376. return &User{ID: userID}
  377. }
  378. return u
  379. }
  380. // InteractionResponseType is type of interaction response.
  381. type InteractionResponseType uint8
  382. // Interaction response types.
  383. const (
  384. // InteractionResponsePong is for ACK ping event.
  385. InteractionResponsePong InteractionResponseType = 1
  386. // InteractionResponseChannelMessageWithSource is for responding with a message, showing the user's input.
  387. InteractionResponseChannelMessageWithSource InteractionResponseType = 4
  388. // InteractionResponseDeferredChannelMessageWithSource acknowledges that the event was received, and that a follow-up will come later.
  389. InteractionResponseDeferredChannelMessageWithSource InteractionResponseType = 5
  390. // InteractionResponseDeferredMessageUpdate acknowledges that the message component interaction event was received, and message will be updated later.
  391. InteractionResponseDeferredMessageUpdate InteractionResponseType = 6
  392. // InteractionResponseUpdateMessage is for updating the message to which message component was attached.
  393. InteractionResponseUpdateMessage InteractionResponseType = 7
  394. // InteractionApplicationCommandAutocompleteResult shows autocompletion results. Autocomplete interaction only.
  395. InteractionApplicationCommandAutocompleteResult InteractionResponseType = 8
  396. // InteractionResponseModal is for responding to an interaction with a modal window.
  397. InteractionResponseModal InteractionResponseType = 9
  398. )
  399. // InteractionResponse represents a response for an interaction event.
  400. type InteractionResponse struct {
  401. Type InteractionResponseType `json:"type,omitempty"`
  402. Data *InteractionResponseData `json:"data,omitempty"`
  403. }
  404. // InteractionResponseData is response data for an interaction.
  405. type InteractionResponseData struct {
  406. TTS bool `json:"tts"`
  407. Content string `json:"content"`
  408. Components []MessageComponent `json:"components"`
  409. Embeds []*MessageEmbed `json:"embeds,omitempty"`
  410. AllowedMentions *MessageAllowedMentions `json:"allowed_mentions,omitempty"`
  411. Flags uint64 `json:"flags,omitempty"`
  412. Files []*File `json:"-"`
  413. // NOTE: autocomplete interaction only.
  414. Choices []*ApplicationCommandOptionChoice `json:"choices,omitempty"`
  415. // NOTE: modal interaction only.
  416. CustomID string `json:"custom_id,omitempty"`
  417. Title string `json:"title,omitempty"`
  418. }
  419. // VerifyInteraction implements message verification of the discord interactions api
  420. // signing algorithm, as documented here:
  421. // https://discord.com/developers/docs/interactions/receiving-and-responding#security-and-authorization
  422. func VerifyInteraction(r *http.Request, key ed25519.PublicKey) bool {
  423. var msg bytes.Buffer
  424. signature := r.Header.Get("X-Signature-Ed25519")
  425. if signature == "" {
  426. return false
  427. }
  428. sig, err := hex.DecodeString(signature)
  429. if err != nil {
  430. return false
  431. }
  432. if len(sig) != ed25519.SignatureSize {
  433. return false
  434. }
  435. timestamp := r.Header.Get("X-Signature-Timestamp")
  436. if timestamp == "" {
  437. return false
  438. }
  439. msg.WriteString(timestamp)
  440. defer r.Body.Close()
  441. var body bytes.Buffer
  442. // at the end of the function, copy the original body back into the request
  443. defer func() {
  444. r.Body = ioutil.NopCloser(&body)
  445. }()
  446. // copy body into buffers
  447. _, err = io.Copy(&msg, io.TeeReader(r.Body, &body))
  448. if err != nil {
  449. return false
  450. }
  451. return ed25519.Verify(key, msg.Bytes(), sig)
  452. }