interactions.go 20 KB

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