message.go 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544
  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 MessageFlags = 1 << 0
  147. MessageFlagsIsCrossPosted MessageFlags = 1 << 1
  148. MessageFlagsSupressEmbeds MessageFlags = 1 << 2
  149. MessageFlagsSourceMessageDeleted MessageFlags = 1 << 3
  150. MessageFlagsUrgent MessageFlags = 1 << 4
  151. )
  152. // File stores info about files you e.g. send in messages.
  153. type File struct {
  154. Name string
  155. ContentType string
  156. Reader io.Reader
  157. }
  158. // StickerFormat is the file format of the Sticker.
  159. type StickerFormat int
  160. // Defines all known Sticker types.
  161. const (
  162. StickerFormatTypePNG StickerFormat = 1
  163. StickerFormatTypeAPNG StickerFormat = 2
  164. StickerFormatTypeLottie StickerFormat = 3
  165. )
  166. // StickerType is the type of sticker.
  167. type StickerType int
  168. // Defines Sticker types.
  169. const (
  170. StickerTypeStandard StickerType = 1
  171. StickerTypeGuild StickerType = 2
  172. )
  173. // Sticker represents a sticker object that can be sent in a Message.
  174. type Sticker struct {
  175. ID string `json:"id"`
  176. PackID string `json:"pack_id"`
  177. Name string `json:"name"`
  178. Description string `json:"description"`
  179. Tags string `json:"tags"`
  180. Type StickerType `json:"type"`
  181. FormatType StickerFormat `json:"format_type"`
  182. Available bool `json:"available"`
  183. GuildID string `json:"guild_id"`
  184. User *User `json:"user"`
  185. SortValue int `json:"sort_value"`
  186. }
  187. // StickerPack represents a pack of standard stickers.
  188. type StickerPack struct {
  189. ID string `json:"id"`
  190. Stickers []Sticker `json:"stickers"`
  191. Name string `json:"name"`
  192. SKUID string `json:"sku_id"`
  193. CoverStickerID string `json:"cover_sticker_id"`
  194. Description string `json:"description"`
  195. BannerAssetID string `json:"banner_asset_id"`
  196. }
  197. // MessageSend stores all parameters you can send with ChannelMessageSendComplex.
  198. type MessageSend struct {
  199. Content string `json:"content,omitempty"`
  200. Embeds []*MessageEmbed `json:"embeds,omitempty"`
  201. TTS bool `json:"tts"`
  202. Components []MessageComponent `json:"components"`
  203. Files []*File `json:"-"`
  204. AllowedMentions *MessageAllowedMentions `json:"allowed_mentions,omitempty"`
  205. Reference *MessageReference `json:"message_reference,omitempty"`
  206. // TODO: Remove this when compatibility is not required.
  207. File *File `json:"-"`
  208. // TODO: Remove this when compatibility is not required.
  209. Embed *MessageEmbed `json:"-"`
  210. }
  211. // MessageEdit is used to chain parameters via ChannelMessageEditComplex, which
  212. // is also where you should get the instance from.
  213. type MessageEdit struct {
  214. Content *string `json:"content,omitempty"`
  215. Components []MessageComponent `json:"components"`
  216. Embeds []*MessageEmbed `json:"embeds,omitempty"`
  217. AllowedMentions *MessageAllowedMentions `json:"allowed_mentions,omitempty"`
  218. ID string
  219. Channel string
  220. // TODO: Remove this when compatibility is not required.
  221. Embed *MessageEmbed `json:"-"`
  222. }
  223. // NewMessageEdit returns a MessageEdit struct, initialized
  224. // with the Channel and ID.
  225. func NewMessageEdit(channelID string, messageID string) *MessageEdit {
  226. return &MessageEdit{
  227. Channel: channelID,
  228. ID: messageID,
  229. }
  230. }
  231. // SetContent is the same as setting the variable Content,
  232. // except it doesn't take a pointer.
  233. func (m *MessageEdit) SetContent(str string) *MessageEdit {
  234. m.Content = &str
  235. return m
  236. }
  237. // SetEmbed is a convenience function for setting the embed,
  238. // so you can chain commands.
  239. func (m *MessageEdit) SetEmbed(embed *MessageEmbed) *MessageEdit {
  240. m.Embeds = []*MessageEmbed{embed}
  241. return m
  242. }
  243. // SetEmbeds is a convenience function for setting the embeds,
  244. // so you can chain commands.
  245. func (m *MessageEdit) SetEmbeds(embeds []*MessageEmbed) *MessageEdit {
  246. m.Embeds = embeds
  247. return m
  248. }
  249. // AllowedMentionType describes the types of mentions used
  250. // in the MessageAllowedMentions type.
  251. type AllowedMentionType string
  252. // The types of mentions used in MessageAllowedMentions.
  253. const (
  254. AllowedMentionTypeRoles AllowedMentionType = "roles"
  255. AllowedMentionTypeUsers AllowedMentionType = "users"
  256. AllowedMentionTypeEveryone AllowedMentionType = "everyone"
  257. )
  258. // MessageAllowedMentions allows the user to specify which mentions
  259. // Discord is allowed to parse in this message. This is useful when
  260. // sending user input as a message, as it prevents unwanted mentions.
  261. // If this type is used, all mentions must be explicitly whitelisted,
  262. // either by putting an AllowedMentionType in the Parse slice
  263. // (allowing all mentions of that type) or, in the case of roles and
  264. // users, explicitly allowing those mentions on an ID-by-ID basis.
  265. // For more information on this functionality, see:
  266. // https://discordapp.com/developers/docs/resources/channel#allowed-mentions-object-allowed-mentions-reference
  267. type MessageAllowedMentions struct {
  268. // The mention types that are allowed to be parsed in this message.
  269. // Please note that this is purposely **not** marked as omitempty,
  270. // so if a zero-value MessageAllowedMentions object is provided no
  271. // mentions will be allowed.
  272. Parse []AllowedMentionType `json:"parse"`
  273. // A list of role IDs to allow. This cannot be used when specifying
  274. // AllowedMentionTypeRoles in the Parse slice.
  275. Roles []string `json:"roles,omitempty"`
  276. // A list of user IDs to allow. This cannot be used when specifying
  277. // AllowedMentionTypeUsers in the Parse slice.
  278. Users []string `json:"users,omitempty"`
  279. }
  280. // A MessageAttachment stores data for message attachments.
  281. type MessageAttachment struct {
  282. ID string `json:"id"`
  283. URL string `json:"url"`
  284. ProxyURL string `json:"proxy_url"`
  285. Filename string `json:"filename"`
  286. Width int `json:"width"`
  287. Height int `json:"height"`
  288. Size int `json:"size"`
  289. Ephemeral bool `json:"ephemeral"`
  290. }
  291. // MessageEmbedFooter is a part of a MessageEmbed struct.
  292. type MessageEmbedFooter struct {
  293. Text string `json:"text,omitempty"`
  294. IconURL string `json:"icon_url,omitempty"`
  295. ProxyIconURL string `json:"proxy_icon_url,omitempty"`
  296. }
  297. // MessageEmbedImage is a part of a MessageEmbed struct.
  298. type MessageEmbedImage struct {
  299. URL string `json:"url,omitempty"`
  300. ProxyURL string `json:"proxy_url,omitempty"`
  301. Width int `json:"width,omitempty"`
  302. Height int `json:"height,omitempty"`
  303. }
  304. // MessageEmbedThumbnail is a part of a MessageEmbed struct.
  305. type MessageEmbedThumbnail struct {
  306. URL string `json:"url,omitempty"`
  307. ProxyURL string `json:"proxy_url,omitempty"`
  308. Width int `json:"width,omitempty"`
  309. Height int `json:"height,omitempty"`
  310. }
  311. // MessageEmbedVideo is a part of a MessageEmbed struct.
  312. type MessageEmbedVideo struct {
  313. URL string `json:"url,omitempty"`
  314. Width int `json:"width,omitempty"`
  315. Height int `json:"height,omitempty"`
  316. }
  317. // MessageEmbedProvider is a part of a MessageEmbed struct.
  318. type MessageEmbedProvider struct {
  319. URL string `json:"url,omitempty"`
  320. Name string `json:"name,omitempty"`
  321. }
  322. // MessageEmbedAuthor is a part of a MessageEmbed struct.
  323. type MessageEmbedAuthor struct {
  324. URL string `json:"url,omitempty"`
  325. Name string `json:"name,omitempty"`
  326. IconURL string `json:"icon_url,omitempty"`
  327. ProxyIconURL string `json:"proxy_icon_url,omitempty"`
  328. }
  329. // MessageEmbedField is a part of a MessageEmbed struct.
  330. type MessageEmbedField struct {
  331. Name string `json:"name,omitempty"`
  332. Value string `json:"value,omitempty"`
  333. Inline bool `json:"inline,omitempty"`
  334. }
  335. // An MessageEmbed stores data for message embeds.
  336. type MessageEmbed struct {
  337. URL string `json:"url,omitempty"`
  338. Type EmbedType `json:"type,omitempty"`
  339. Title string `json:"title,omitempty"`
  340. Description string `json:"description,omitempty"`
  341. Timestamp string `json:"timestamp,omitempty"`
  342. Color int `json:"color,omitempty"`
  343. Footer *MessageEmbedFooter `json:"footer,omitempty"`
  344. Image *MessageEmbedImage `json:"image,omitempty"`
  345. Thumbnail *MessageEmbedThumbnail `json:"thumbnail,omitempty"`
  346. Video *MessageEmbedVideo `json:"video,omitempty"`
  347. Provider *MessageEmbedProvider `json:"provider,omitempty"`
  348. Author *MessageEmbedAuthor `json:"author,omitempty"`
  349. Fields []*MessageEmbedField `json:"fields,omitempty"`
  350. }
  351. // EmbedType is the type of embed
  352. // https://discord.com/developers/docs/resources/channel#embed-object-embed-types
  353. type EmbedType string
  354. // Block of valid EmbedTypes
  355. const (
  356. EmbedTypeRich EmbedType = "rich"
  357. EmbedTypeImage EmbedType = "image"
  358. EmbedTypeVideo EmbedType = "video"
  359. EmbedTypeGifv EmbedType = "gifv"
  360. EmbedTypeArticle EmbedType = "article"
  361. EmbedTypeLink EmbedType = "link"
  362. )
  363. // MessageReactions holds a reactions object for a message.
  364. type MessageReactions struct {
  365. Count int `json:"count"`
  366. Me bool `json:"me"`
  367. Emoji *Emoji `json:"emoji"`
  368. }
  369. // MessageActivity is sent with Rich Presence-related chat embeds
  370. type MessageActivity struct {
  371. Type MessageActivityType `json:"type"`
  372. PartyID string `json:"party_id"`
  373. }
  374. // MessageActivityType is the type of message activity
  375. type MessageActivityType int
  376. // Constants for the different types of Message Activity
  377. const (
  378. MessageActivityTypeJoin MessageActivityType = 1
  379. MessageActivityTypeSpectate MessageActivityType = 2
  380. MessageActivityTypeListen MessageActivityType = 3
  381. MessageActivityTypeJoinRequest MessageActivityType = 5
  382. )
  383. // MessageApplication is sent with Rich Presence-related chat embeds
  384. type MessageApplication struct {
  385. ID string `json:"id"`
  386. CoverImage string `json:"cover_image"`
  387. Description string `json:"description"`
  388. Icon string `json:"icon"`
  389. Name string `json:"name"`
  390. }
  391. // MessageReference contains reference data sent with crossposted messages
  392. type MessageReference struct {
  393. MessageID string `json:"message_id"`
  394. ChannelID string `json:"channel_id"`
  395. GuildID string `json:"guild_id,omitempty"`
  396. }
  397. // Reference returns MessageReference of given message
  398. func (m *Message) Reference() *MessageReference {
  399. return &MessageReference{
  400. GuildID: m.GuildID,
  401. ChannelID: m.ChannelID,
  402. MessageID: m.ID,
  403. }
  404. }
  405. // ContentWithMentionsReplaced will replace all @<id> mentions with the
  406. // username of the mention.
  407. func (m *Message) ContentWithMentionsReplaced() (content string) {
  408. content = m.Content
  409. for _, user := range m.Mentions {
  410. content = strings.NewReplacer(
  411. "<@"+user.ID+">", "@"+user.Username,
  412. "<@!"+user.ID+">", "@"+user.Username,
  413. ).Replace(content)
  414. }
  415. return
  416. }
  417. var patternChannels = regexp.MustCompile("<#[^>]*>")
  418. // ContentWithMoreMentionsReplaced will replace all @<id> mentions with the
  419. // username of the mention, but also role IDs and more.
  420. func (m *Message) ContentWithMoreMentionsReplaced(s *Session) (content string, err error) {
  421. content = m.Content
  422. if !s.StateEnabled {
  423. content = m.ContentWithMentionsReplaced()
  424. return
  425. }
  426. channel, err := s.State.Channel(m.ChannelID)
  427. if err != nil {
  428. content = m.ContentWithMentionsReplaced()
  429. return
  430. }
  431. for _, user := range m.Mentions {
  432. nick := user.Username
  433. member, err := s.State.Member(channel.GuildID, user.ID)
  434. if err == nil && member.Nick != "" {
  435. nick = member.Nick
  436. }
  437. content = strings.NewReplacer(
  438. "<@"+user.ID+">", "@"+user.Username,
  439. "<@!"+user.ID+">", "@"+nick,
  440. ).Replace(content)
  441. }
  442. for _, roleID := range m.MentionRoles {
  443. role, err := s.State.Role(channel.GuildID, roleID)
  444. if err != nil || !role.Mentionable {
  445. continue
  446. }
  447. content = strings.Replace(content, "<@&"+role.ID+">", "@"+role.Name, -1)
  448. }
  449. content = patternChannels.ReplaceAllStringFunc(content, func(mention string) string {
  450. channel, err := s.State.Channel(mention[2 : len(mention)-1])
  451. if err != nil || channel.Type == ChannelTypeGuildVoice {
  452. return mention
  453. }
  454. return "#" + channel.Name
  455. })
  456. return
  457. }