message.go 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557
  1. // Discordgo - Discord bindings for Go
  2. // Available at https://github.com/bwmarrin/discordgo
  3. // Copyright 2015-2016 Bruce Marriner <bruce@sqls.net>. All rights reserved.
  4. // Use of this source code is governed by a BSD-style
  5. // license that can be found in the LICENSE file.
  6. // This file contains code related to the Message struct
  7. package discordgo
  8. import (
  9. "encoding/json"
  10. "io"
  11. "regexp"
  12. "strings"
  13. "time"
  14. )
  15. // MessageType is the type of Message
  16. // https://discord.com/developers/docs/resources/channel#message-object-message-types
  17. type MessageType int
  18. // Block contains the valid known MessageType values
  19. const (
  20. MessageTypeDefault MessageType = 0
  21. MessageTypeRecipientAdd MessageType = 1
  22. MessageTypeRecipientRemove MessageType = 2
  23. MessageTypeCall MessageType = 3
  24. MessageTypeChannelNameChange MessageType = 4
  25. MessageTypeChannelIconChange MessageType = 5
  26. MessageTypeChannelPinnedMessage MessageType = 6
  27. MessageTypeGuildMemberJoin MessageType = 7
  28. MessageTypeUserPremiumGuildSubscription MessageType = 8
  29. MessageTypeUserPremiumGuildSubscriptionTierOne MessageType = 9
  30. MessageTypeUserPremiumGuildSubscriptionTierTwo MessageType = 10
  31. MessageTypeUserPremiumGuildSubscriptionTierThree MessageType = 11
  32. MessageTypeChannelFollowAdd MessageType = 12
  33. MessageTypeGuildDiscoveryDisqualified MessageType = 14
  34. MessageTypeGuildDiscoveryRequalified MessageType = 15
  35. MessageTypeReply MessageType = 19
  36. MessageTypeChatInputCommand MessageType = 20
  37. MessageTypeContextMenuCommand MessageType = 23
  38. )
  39. // A Message stores all data related to a specific Discord message.
  40. type Message struct {
  41. // The ID of the message.
  42. ID string `json:"id"`
  43. // The ID of the channel in which the message was sent.
  44. ChannelID string `json:"channel_id"`
  45. // The ID of the guild in which the message was sent.
  46. GuildID string `json:"guild_id,omitempty"`
  47. // The content of the message.
  48. Content string `json:"content"`
  49. // The time at which the messsage was sent.
  50. // CAUTION: this field may be removed in a
  51. // future API version; it is safer to calculate
  52. // the creation time via the ID.
  53. Timestamp time.Time `json:"timestamp"`
  54. // The time at which the last edit of the message
  55. // occurred, if it has been edited.
  56. EditedTimestamp *time.Time `json:"edited_timestamp"`
  57. // The roles mentioned in the message.
  58. MentionRoles []string `json:"mention_roles"`
  59. // Whether the message is text-to-speech.
  60. TTS bool `json:"tts"`
  61. // Whether the message mentions everyone.
  62. MentionEveryone bool `json:"mention_everyone"`
  63. // The author of the message. This is not guaranteed to be a
  64. // valid user (webhook-sent messages do not possess a full author).
  65. Author *User `json:"author"`
  66. // A list of attachments present in the message.
  67. Attachments []*MessageAttachment `json:"attachments"`
  68. // A list of components attached to the message.
  69. Components []MessageComponent `json:"-"`
  70. // A list of embeds present in the message.
  71. Embeds []*MessageEmbed `json:"embeds"`
  72. // A list of users mentioned in the message.
  73. Mentions []*User `json:"mentions"`
  74. // A list of reactions to the message.
  75. Reactions []*MessageReactions `json:"reactions"`
  76. // Whether the message is pinned or not.
  77. Pinned bool `json:"pinned"`
  78. // The type of the message.
  79. Type MessageType `json:"type"`
  80. // The webhook ID of the message, if it was generated by a webhook
  81. WebhookID string `json:"webhook_id"`
  82. // Member properties for this message's author,
  83. // contains only partial information
  84. Member *Member `json:"member"`
  85. // Channels specifically mentioned in this message
  86. // Not all channel mentions in a message will appear in mention_channels.
  87. // Only textual channels that are visible to everyone in a lurkable guild will ever be included.
  88. // Only crossposted messages (via Channel Following) currently include mention_channels at all.
  89. // If no mentions in the message meet these requirements, this field will not be sent.
  90. MentionChannels []*Channel `json:"mention_channels"`
  91. // Is sent with Rich Presence-related chat embeds
  92. Activity *MessageActivity `json:"activity"`
  93. // Is sent with Rich Presence-related chat embeds
  94. Application *MessageApplication `json:"application"`
  95. // MessageReference contains reference data sent with crossposted or reply messages.
  96. // This does not contain the reference *to* this message; this is for when *this* message references another.
  97. // To generate a reference to this message, use (*Message).Reference().
  98. MessageReference *MessageReference `json:"message_reference"`
  99. // The flags of the message, which describe extra features of a message.
  100. // This is a combination of bit masks; the presence of a certain permission can
  101. // be checked by performing a bitwise AND between this int and the flag.
  102. Flags MessageFlags `json:"flags"`
  103. // An array of Sticker objects, if any were sent.
  104. StickerItems []*Sticker `json:"sticker_items"`
  105. }
  106. // UnmarshalJSON is a helper function to unmarshal the Message.
  107. func (m *Message) UnmarshalJSON(data []byte) error {
  108. type message Message
  109. var v struct {
  110. message
  111. RawComponents []unmarshalableMessageComponent `json:"components"`
  112. }
  113. err := json.Unmarshal(data, &v)
  114. if err != nil {
  115. return err
  116. }
  117. *m = Message(v.message)
  118. m.Components = make([]MessageComponent, len(v.RawComponents))
  119. for i, v := range v.RawComponents {
  120. m.Components[i] = v.MessageComponent
  121. }
  122. return err
  123. }
  124. // GetCustomEmojis pulls out all the custom (Non-unicode) emojis from a message and returns a Slice of the Emoji struct.
  125. func (m *Message) GetCustomEmojis() []*Emoji {
  126. var toReturn []*Emoji
  127. emojis := EmojiRegex.FindAllString(m.Content, -1)
  128. if len(emojis) < 1 {
  129. return toReturn
  130. }
  131. for _, em := range emojis {
  132. parts := strings.Split(em, ":")
  133. toReturn = append(toReturn, &Emoji{
  134. ID: parts[2][:len(parts[2])-1],
  135. Name: parts[1],
  136. Animated: strings.HasPrefix(em, "<a:"),
  137. })
  138. }
  139. return toReturn
  140. }
  141. // MessageFlags is the flags of "message" (see MessageFlags* consts)
  142. // https://discord.com/developers/docs/resources/channel#message-object-message-flags
  143. type MessageFlags int
  144. // Valid MessageFlags values
  145. const (
  146. // MessageFlagsCrossPosted This message has been published to subscribed channels (via Channel Following).
  147. MessageFlagsCrossPosted MessageFlags = 1 << 0
  148. // MessageFlagsIsCrossPosted this message originated from a message in another channel (via Channel Following).
  149. MessageFlagsIsCrossPosted MessageFlags = 1 << 1
  150. // MessageFlagsSupressEmbeds do not include any embeds when serializing this message.
  151. MessageFlagsSupressEmbeds MessageFlags = 1 << 2
  152. // MessageFlagsSourceMessageDeleted the source message for this crosspost has been deleted (via Channel Following).
  153. MessageFlagsSourceMessageDeleted MessageFlags = 1 << 3
  154. // MessageFlagsUrgent this message came from the urgent message system.
  155. MessageFlagsUrgent MessageFlags = 1 << 4
  156. // MessageFlagsHasThread this message has an associated thread, with the same id as the message.
  157. MessageFlagsHasThread MessageFlags = 1 << 5
  158. // MessageFlagsEphemeral this message is only visible to the user who invoked the Interaction.
  159. MessageFlagsEphemeral MessageFlags = 1 << 6
  160. // MessageFlagsLoading this message is an Interaction Response and the bot is "thinking".
  161. MessageFlagsLoading MessageFlags = 1 << 7
  162. // MessageFlagsFailedToMentionSomeRolesInThread this message failed to mention some roles and add their members to the thread.
  163. MessageFlagsFailedToMentionSomeRolesInThread MessageFlags = 1 << 8
  164. )
  165. // File stores info about files you e.g. send in messages.
  166. type File struct {
  167. Name string
  168. ContentType string
  169. Reader io.Reader
  170. }
  171. // StickerFormat is the file format of the Sticker.
  172. type StickerFormat int
  173. // Defines all known Sticker types.
  174. const (
  175. StickerFormatTypePNG StickerFormat = 1
  176. StickerFormatTypeAPNG StickerFormat = 2
  177. StickerFormatTypeLottie StickerFormat = 3
  178. )
  179. // StickerType is the type of sticker.
  180. type StickerType int
  181. // Defines Sticker types.
  182. const (
  183. StickerTypeStandard StickerType = 1
  184. StickerTypeGuild StickerType = 2
  185. )
  186. // Sticker represents a sticker object that can be sent in a Message.
  187. type Sticker struct {
  188. ID string `json:"id"`
  189. PackID string `json:"pack_id"`
  190. Name string `json:"name"`
  191. Description string `json:"description"`
  192. Tags string `json:"tags"`
  193. Type StickerType `json:"type"`
  194. FormatType StickerFormat `json:"format_type"`
  195. Available bool `json:"available"`
  196. GuildID string `json:"guild_id"`
  197. User *User `json:"user"`
  198. SortValue int `json:"sort_value"`
  199. }
  200. // StickerPack represents a pack of standard stickers.
  201. type StickerPack struct {
  202. ID string `json:"id"`
  203. Stickers []Sticker `json:"stickers"`
  204. Name string `json:"name"`
  205. SKUID string `json:"sku_id"`
  206. CoverStickerID string `json:"cover_sticker_id"`
  207. Description string `json:"description"`
  208. BannerAssetID string `json:"banner_asset_id"`
  209. }
  210. // MessageSend stores all parameters you can send with ChannelMessageSendComplex.
  211. type MessageSend struct {
  212. Content string `json:"content,omitempty"`
  213. Embeds []*MessageEmbed `json:"embeds,omitempty"`
  214. TTS bool `json:"tts"`
  215. Components []MessageComponent `json:"components"`
  216. Files []*File `json:"-"`
  217. AllowedMentions *MessageAllowedMentions `json:"allowed_mentions,omitempty"`
  218. Reference *MessageReference `json:"message_reference,omitempty"`
  219. // TODO: Remove this when compatibility is not required.
  220. File *File `json:"-"`
  221. // TODO: Remove this when compatibility is not required.
  222. Embed *MessageEmbed `json:"-"`
  223. }
  224. // MessageEdit is used to chain parameters via ChannelMessageEditComplex, which
  225. // is also where you should get the instance from.
  226. type MessageEdit struct {
  227. Content *string `json:"content,omitempty"`
  228. Components []MessageComponent `json:"components"`
  229. Embeds []*MessageEmbed `json:"embeds,omitempty"`
  230. AllowedMentions *MessageAllowedMentions `json:"allowed_mentions,omitempty"`
  231. ID string
  232. Channel string
  233. // TODO: Remove this when compatibility is not required.
  234. Embed *MessageEmbed `json:"-"`
  235. }
  236. // NewMessageEdit returns a MessageEdit struct, initialized
  237. // with the Channel and ID.
  238. func NewMessageEdit(channelID string, messageID string) *MessageEdit {
  239. return &MessageEdit{
  240. Channel: channelID,
  241. ID: messageID,
  242. }
  243. }
  244. // SetContent is the same as setting the variable Content,
  245. // except it doesn't take a pointer.
  246. func (m *MessageEdit) SetContent(str string) *MessageEdit {
  247. m.Content = &str
  248. return m
  249. }
  250. // SetEmbed is a convenience function for setting the embed,
  251. // so you can chain commands.
  252. func (m *MessageEdit) SetEmbed(embed *MessageEmbed) *MessageEdit {
  253. m.Embeds = []*MessageEmbed{embed}
  254. return m
  255. }
  256. // SetEmbeds is a convenience function for setting the embeds,
  257. // so you can chain commands.
  258. func (m *MessageEdit) SetEmbeds(embeds []*MessageEmbed) *MessageEdit {
  259. m.Embeds = embeds
  260. return m
  261. }
  262. // AllowedMentionType describes the types of mentions used
  263. // in the MessageAllowedMentions type.
  264. type AllowedMentionType string
  265. // The types of mentions used in MessageAllowedMentions.
  266. const (
  267. AllowedMentionTypeRoles AllowedMentionType = "roles"
  268. AllowedMentionTypeUsers AllowedMentionType = "users"
  269. AllowedMentionTypeEveryone AllowedMentionType = "everyone"
  270. )
  271. // MessageAllowedMentions allows the user to specify which mentions
  272. // Discord is allowed to parse in this message. This is useful when
  273. // sending user input as a message, as it prevents unwanted mentions.
  274. // If this type is used, all mentions must be explicitly whitelisted,
  275. // either by putting an AllowedMentionType in the Parse slice
  276. // (allowing all mentions of that type) or, in the case of roles and
  277. // users, explicitly allowing those mentions on an ID-by-ID basis.
  278. // For more information on this functionality, see:
  279. // https://discordapp.com/developers/docs/resources/channel#allowed-mentions-object-allowed-mentions-reference
  280. type MessageAllowedMentions struct {
  281. // The mention types that are allowed to be parsed in this message.
  282. // Please note that this is purposely **not** marked as omitempty,
  283. // so if a zero-value MessageAllowedMentions object is provided no
  284. // mentions will be allowed.
  285. Parse []AllowedMentionType `json:"parse"`
  286. // A list of role IDs to allow. This cannot be used when specifying
  287. // AllowedMentionTypeRoles in the Parse slice.
  288. Roles []string `json:"roles,omitempty"`
  289. // A list of user IDs to allow. This cannot be used when specifying
  290. // AllowedMentionTypeUsers in the Parse slice.
  291. Users []string `json:"users,omitempty"`
  292. }
  293. // A MessageAttachment stores data for message attachments.
  294. type MessageAttachment struct {
  295. ID string `json:"id"`
  296. URL string `json:"url"`
  297. ProxyURL string `json:"proxy_url"`
  298. Filename string `json:"filename"`
  299. Width int `json:"width"`
  300. Height int `json:"height"`
  301. Size int `json:"size"`
  302. Ephemeral bool `json:"ephemeral"`
  303. }
  304. // MessageEmbedFooter is a part of a MessageEmbed struct.
  305. type MessageEmbedFooter struct {
  306. Text string `json:"text,omitempty"`
  307. IconURL string `json:"icon_url,omitempty"`
  308. ProxyIconURL string `json:"proxy_icon_url,omitempty"`
  309. }
  310. // MessageEmbedImage is a part of a MessageEmbed struct.
  311. type MessageEmbedImage struct {
  312. URL string `json:"url,omitempty"`
  313. ProxyURL string `json:"proxy_url,omitempty"`
  314. Width int `json:"width,omitempty"`
  315. Height int `json:"height,omitempty"`
  316. }
  317. // MessageEmbedThumbnail is a part of a MessageEmbed struct.
  318. type MessageEmbedThumbnail struct {
  319. URL string `json:"url,omitempty"`
  320. ProxyURL string `json:"proxy_url,omitempty"`
  321. Width int `json:"width,omitempty"`
  322. Height int `json:"height,omitempty"`
  323. }
  324. // MessageEmbedVideo is a part of a MessageEmbed struct.
  325. type MessageEmbedVideo struct {
  326. URL string `json:"url,omitempty"`
  327. Width int `json:"width,omitempty"`
  328. Height int `json:"height,omitempty"`
  329. }
  330. // MessageEmbedProvider is a part of a MessageEmbed struct.
  331. type MessageEmbedProvider struct {
  332. URL string `json:"url,omitempty"`
  333. Name string `json:"name,omitempty"`
  334. }
  335. // MessageEmbedAuthor is a part of a MessageEmbed struct.
  336. type MessageEmbedAuthor struct {
  337. URL string `json:"url,omitempty"`
  338. Name string `json:"name,omitempty"`
  339. IconURL string `json:"icon_url,omitempty"`
  340. ProxyIconURL string `json:"proxy_icon_url,omitempty"`
  341. }
  342. // MessageEmbedField is a part of a MessageEmbed struct.
  343. type MessageEmbedField struct {
  344. Name string `json:"name,omitempty"`
  345. Value string `json:"value,omitempty"`
  346. Inline bool `json:"inline,omitempty"`
  347. }
  348. // An MessageEmbed stores data for message embeds.
  349. type MessageEmbed struct {
  350. URL string `json:"url,omitempty"`
  351. Type EmbedType `json:"type,omitempty"`
  352. Title string `json:"title,omitempty"`
  353. Description string `json:"description,omitempty"`
  354. Timestamp string `json:"timestamp,omitempty"`
  355. Color int `json:"color,omitempty"`
  356. Footer *MessageEmbedFooter `json:"footer,omitempty"`
  357. Image *MessageEmbedImage `json:"image,omitempty"`
  358. Thumbnail *MessageEmbedThumbnail `json:"thumbnail,omitempty"`
  359. Video *MessageEmbedVideo `json:"video,omitempty"`
  360. Provider *MessageEmbedProvider `json:"provider,omitempty"`
  361. Author *MessageEmbedAuthor `json:"author,omitempty"`
  362. Fields []*MessageEmbedField `json:"fields,omitempty"`
  363. }
  364. // EmbedType is the type of embed
  365. // https://discord.com/developers/docs/resources/channel#embed-object-embed-types
  366. type EmbedType string
  367. // Block of valid EmbedTypes
  368. const (
  369. EmbedTypeRich EmbedType = "rich"
  370. EmbedTypeImage EmbedType = "image"
  371. EmbedTypeVideo EmbedType = "video"
  372. EmbedTypeGifv EmbedType = "gifv"
  373. EmbedTypeArticle EmbedType = "article"
  374. EmbedTypeLink EmbedType = "link"
  375. )
  376. // MessageReactions holds a reactions object for a message.
  377. type MessageReactions struct {
  378. Count int `json:"count"`
  379. Me bool `json:"me"`
  380. Emoji *Emoji `json:"emoji"`
  381. }
  382. // MessageActivity is sent with Rich Presence-related chat embeds
  383. type MessageActivity struct {
  384. Type MessageActivityType `json:"type"`
  385. PartyID string `json:"party_id"`
  386. }
  387. // MessageActivityType is the type of message activity
  388. type MessageActivityType int
  389. // Constants for the different types of Message Activity
  390. const (
  391. MessageActivityTypeJoin MessageActivityType = 1
  392. MessageActivityTypeSpectate MessageActivityType = 2
  393. MessageActivityTypeListen MessageActivityType = 3
  394. MessageActivityTypeJoinRequest MessageActivityType = 5
  395. )
  396. // MessageApplication is sent with Rich Presence-related chat embeds
  397. type MessageApplication struct {
  398. ID string `json:"id"`
  399. CoverImage string `json:"cover_image"`
  400. Description string `json:"description"`
  401. Icon string `json:"icon"`
  402. Name string `json:"name"`
  403. }
  404. // MessageReference contains reference data sent with crossposted messages
  405. type MessageReference struct {
  406. MessageID string `json:"message_id"`
  407. ChannelID string `json:"channel_id"`
  408. GuildID string `json:"guild_id,omitempty"`
  409. }
  410. // Reference returns MessageReference of given message
  411. func (m *Message) Reference() *MessageReference {
  412. return &MessageReference{
  413. GuildID: m.GuildID,
  414. ChannelID: m.ChannelID,
  415. MessageID: m.ID,
  416. }
  417. }
  418. // ContentWithMentionsReplaced will replace all @<id> mentions with the
  419. // username of the mention.
  420. func (m *Message) ContentWithMentionsReplaced() (content string) {
  421. content = m.Content
  422. for _, user := range m.Mentions {
  423. content = strings.NewReplacer(
  424. "<@"+user.ID+">", "@"+user.Username,
  425. "<@!"+user.ID+">", "@"+user.Username,
  426. ).Replace(content)
  427. }
  428. return
  429. }
  430. var patternChannels = regexp.MustCompile("<#[^>]*>")
  431. // ContentWithMoreMentionsReplaced will replace all @<id> mentions with the
  432. // username of the mention, but also role IDs and more.
  433. func (m *Message) ContentWithMoreMentionsReplaced(s *Session) (content string, err error) {
  434. content = m.Content
  435. if !s.StateEnabled {
  436. content = m.ContentWithMentionsReplaced()
  437. return
  438. }
  439. channel, err := s.State.Channel(m.ChannelID)
  440. if err != nil {
  441. content = m.ContentWithMentionsReplaced()
  442. return
  443. }
  444. for _, user := range m.Mentions {
  445. nick := user.Username
  446. member, err := s.State.Member(channel.GuildID, user.ID)
  447. if err == nil && member.Nick != "" {
  448. nick = member.Nick
  449. }
  450. content = strings.NewReplacer(
  451. "<@"+user.ID+">", "@"+user.Username,
  452. "<@!"+user.ID+">", "@"+nick,
  453. ).Replace(content)
  454. }
  455. for _, roleID := range m.MentionRoles {
  456. role, err := s.State.Role(channel.GuildID, roleID)
  457. if err != nil || !role.Mentionable {
  458. continue
  459. }
  460. content = strings.Replace(content, "<@&"+role.ID+">", "@"+role.Name, -1)
  461. }
  462. content = patternChannels.ReplaceAllStringFunc(content, func(mention string) string {
  463. channel, err := s.State.Channel(mention[2 : len(mention)-1])
  464. if err != nil || channel.Type == ChannelTypeGuildVoice {
  465. return mention
  466. }
  467. return "#" + channel.Name
  468. })
  469. return
  470. }