interactions.go 20 KB

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