message.go 18 KB

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