Class: Discorb::Message
- Inherits:
-
DiscordModel
- Object
- DiscordModel
- Discorb::Message
- Defined in:
- lib/discorb/message.rb
Overview
Represents a message.
Direct Known Subclasses
Defined Under Namespace
Classes: Activity, Flag, Interaction, Reference, Sticker
Instance Attribute Summary collapse
-
#activity -> Discorb::Message::Activity
readonly
The activity of the message.
-
#application_id -> Discorb::Application
readonly
The application of the message.
-
#attachments -> Array<Discorb::Attachment>
readonly
The attachments of the message.
-
#author -> Discorb::User, Discorb::Member
readonly
The user that sent the message.
- #channel -> nil, Discorb::Channel readonly
-
#components -> Array<Array<Discorb::Component>>
readonly
The components of the message.
-
#content -> String
(also: #to_s)
readonly
The content of the message.
-
#created_at -> Time
(also: #timestamp, #sent_at)
readonly
The time the message was created.
-
#deleted -> Boolean
(also: #deleted?)
readonly
Whether the message is deleted.
-
#dm? -> Boolean
readonly
Whether the message was sent in a DM.
-
#edited? -> Boolean
readonly
Whether the message was edited.
- #embed -> Discorb::Embed? readonly
- #embed? -> Boolean readonly
-
#embeds -> Array<Discorb::Embed>
readonly
The embeds of the message.
- #guild -> nil, Discorb::Guild readonly
-
#guild? -> Boolean
readonly
Whether the message was sent in a guild.
-
#id -> Discorb::Snowflake
readonly
The ID of the message.
-
#interaction -> Discorb::Message::Interaction
readonly
The interaction of the message.
-
#jump_url -> String
readonly
The URL to jump to the message.
-
#mention_everyone -> Boolean
(also: #mention_everyone?)
readonly
Whether the message mentions everyone.
-
#message_reference -> Discorb::Message::Reference
readonly
The reference of the message.
-
#pinned -> Boolean
(also: #pinned?)
readonly
Whether the message is pinned.
-
#reactions -> Array<Discorb::Reaction>
readonly
The reactions of the message.
-
#reply? -> Boolean
readonly
Whether the message is a reply.
-
#stickers -> Discorb::Message::Sticker
readonly
The sticker of the message.
-
#thread -> Discorb::ThreadChannel
readonly
The thread channel of the message.
-
#tts -> Boolean
(also: #tts?)
readonly
Whether the message is tts.
-
#type -> Symbol
readonly
Currently, this will be one of:.
- #updated_at -> Time? (also: #edited_at, #edited_timestamp) readonly
-
#webhook? -> Boolean
readonly
Whether the message was sent by a webhook.
-
#webhook_id -> Discorb::Snowflake
readonly
The ID of the channel the message was sent in.
Instance Method Summary collapse
-
#add_reaction(emoji) -> Async::Task<void>
(also: #react_with)
Add a reaction to the message.
-
#clean_content(user: true, channel: true, role: true, emoji: true, everyone: true, codeblock: false) -> String
Removes the mentions from the message.
-
#delete!(reason: nil) -> Async::Task<void>
Delete the message.
-
#edit(content = nil, embed: nil, embeds: nil, allowed_mentions: nil, components: nil, supress: nil) -> Async::Task<void>
Edit the message.
-
#fetch_reacted_users(emoji, limit: nil, after: 0) -> Async::Task<Array<Discorb::User>>
Fetch reacted users of reaction.
-
#flag -> Discorb::Message::Flag
The flag of the message.
-
#inspect -> Object
Meta.
-
#pin(reason: nil) -> Async::Task<void>
Pin the message.
-
#publish -> Async::Task<void>
Publish the message.
-
#remove_reaction(emoji) -> Async::Task<void>
(also: #delete_reaction)
Remove a reaction from the message.
-
#remove_reaction_of(emoji, member) -> Async::Task<void>
(also: #delete_reaction_of)
Remove other member's reaction from the message.
-
#reply(*args, **kwargs) -> Async::Task<Discorb::Message>
Reply to the message.
-
#start_thread(*args, **kwargs) -> Async::Task<Discorb::ThreadChannel>
(also: #create_thread)
Start thread from the message.
-
#to_reference(fail_if_not_exists: true) -> Hash
Convert the message to reference object.
-
#unpin(reason: nil) -> Async::Task<void>
Unpin the message.
Methods inherited from DiscordModel
Instance Attribute Details
#activity -> Discorb::Message::Activity (readonly)
Returns The activity of the message.
122 123 124 |
# File 'lib/discorb/message.rb', line 122 def activity @activity end |
#application_id -> Discorb::Application (readonly)
Returns The application of the message.
124 125 126 |
# File 'lib/discorb/message.rb', line 124 def application_id @application_id end |
#attachments -> Array<Discorb::Attachment> (readonly)
Returns The attachments of the message.
87 88 89 |
# File 'lib/discorb/message.rb', line 87 def @attachments end |
#author -> Discorb::User, Discorb::Member (readonly)
Returns The user that sent the message.
73 74 75 |
# File 'lib/discorb/message.rb', line 73 def @author end |
#channel -> nil, Discorb::Channel (readonly)
This method returns an object from client cache. it will return nil
if the object is not in cache.
201 202 203 |
# File 'lib/discorb/message.rb', line 201 def @embeds.any? end |
#components -> Array<Array<Discorb::Component>> (readonly)
Returns The components of the message.
137 138 139 |
# File 'lib/discorb/message.rb', line 137 def components @components end |
#content -> String (readonly) Also known as: to_s
Returns The content of the message.
75 76 77 |
# File 'lib/discorb/message.rb', line 75 def content @content end |
#created_at -> Time (readonly) Also known as: timestamp, sent_at
Returns The time the message was created.
78 79 80 |
# File 'lib/discorb/message.rb', line 78 def created_at @created_at end |
#deleted -> Boolean (readonly) Also known as: deleted?
Returns Whether the message is deleted.
139 140 141 |
# File 'lib/discorb/message.rb', line 139 def deleted @deleted end |
#dm? -> Boolean (readonly)
Returns Whether the message was sent in a DM.
201 202 203 |
# File 'lib/discorb/message.rb', line 201 def @embeds.any? end |
#edited? -> Boolean (readonly)
Returns Whether the message was edited.
201 202 203 |
# File 'lib/discorb/message.rb', line 201 def @embeds.any? end |
#embed -> Discorb::Embed? (readonly)
201 202 203 |
# File 'lib/discorb/message.rb', line 201 def @embeds.any? end |
#embed? -> Boolean (readonly)
201 202 203 |
# File 'lib/discorb/message.rb', line 201 def @embeds.any? end |
#embeds -> Array<Discorb::Embed> (readonly)
Returns The embeds of the message.
89 90 91 |
# File 'lib/discorb/message.rb', line 89 def @embeds end |
#guild -> nil, Discorb::Guild (readonly)
This method returns an object from client cache. it will return nil
if the object is not in cache.
201 202 203 |
# File 'lib/discorb/message.rb', line 201 def @embeds.any? end |
#guild? -> Boolean (readonly)
Returns Whether the message was sent in a guild.
201 202 203 |
# File 'lib/discorb/message.rb', line 201 def @embeds.any? end |
#id -> Discorb::Snowflake (readonly)
Returns The ID of the message.
71 72 73 |
# File 'lib/discorb/message.rb', line 71 def id @id end |
#interaction -> Discorb::Message::Interaction (readonly)
Returns The interaction of the message.
133 134 135 |
# File 'lib/discorb/message.rb', line 133 def interaction @interaction end |
#jump_url -> String (readonly)
Returns The URL to jump to the message.
201 202 203 |
# File 'lib/discorb/message.rb', line 201 def @embeds.any? end |
#mention_everyone -> Boolean (readonly) Also known as: mention_everyone?
Returns Whether the message mentions everyone.
145 146 147 |
# File 'lib/discorb/message.rb', line 145 def mention_everyone @mention_everyone end |
#message_reference -> Discorb::Message::Reference (readonly)
Returns The reference of the message.
126 127 128 |
# File 'lib/discorb/message.rb', line 126 def @message_reference end |
#pinned -> Boolean (readonly) Also known as: pinned?
Returns Whether the message is pinned.
148 149 150 |
# File 'lib/discorb/message.rb', line 148 def pinned @pinned end |
#reactions -> Array<Discorb::Reaction> (readonly)
Returns The reactions of the message.
91 92 93 |
# File 'lib/discorb/message.rb', line 91 def reactions @reactions end |
#reply? -> Boolean (readonly)
Returns Whether the message is a reply.
201 202 203 |
# File 'lib/discorb/message.rb', line 201 def @embeds.any? end |
#stickers -> Discorb::Message::Sticker (readonly)
Returns The sticker of the message.
131 132 133 |
# File 'lib/discorb/message.rb', line 131 def stickers @stickers end |
#thread -> Discorb::ThreadChannel (readonly)
Returns The thread channel of the message.
135 136 137 |
# File 'lib/discorb/message.rb', line 135 def thread @thread end |
#tts -> Boolean (readonly) Also known as: tts?
Returns Whether the message is tts.
142 143 144 |
# File 'lib/discorb/message.rb', line 142 def tts @tts end |
#type -> Symbol (readonly)
Currently, this will be one of:
-
:default
-
:recipient_add
-
:recipient_remove
-
:call
-
:channel_name_change
-
:channel_icon_change
-
:channel_pinned_message
-
:guild_member_join
-
:user_premium_guild_subscription
-
:user_premium_guild_subscription_tier_1
-
:user_premium_guild_subscription_tier_2
-
:user_premium_guild_subscription_tier_3
-
:channel_follow_add
-
:guild_discovery_disqualified
-
:guild_discovery_requalified
-
:guild_discovery_grace_period_initial_warning
-
:guild_discovery_grace_period_final_warning
-
:thread_created
-
:reply
-
:chat_input_command
-
:thread_starter_message
-
:guild_invite_reminder
-
:context_menu_command
120 121 122 |
# File 'lib/discorb/message.rb', line 120 def type @type end |
#updated_at -> Time? (readonly) Also known as: edited_at, edited_timestamp
83 84 85 |
# File 'lib/discorb/message.rb', line 83 def updated_at @updated_at end |
#webhook? -> Boolean (readonly)
Returns Whether the message was sent by a webhook.
201 202 203 |
# File 'lib/discorb/message.rb', line 201 def @embeds.any? end |
#webhook_id -> Discorb::Snowflake (readonly)
Returns The ID of the channel the message was sent in.
93 94 95 |
# File 'lib/discorb/message.rb', line 93 def webhook_id @webhook_id end |
Instance Method Details
#add_reaction(emoji) -> Async::Task<void> Also known as: react_with
Add a reaction to the message.
380 381 382 383 384 |
# File 'lib/discorb/message.rb', line 380 def add_reaction(emoji) Async do @client.http.put("/channels/#{@channel_id}/messages/#{@id}/reactions/#{emoji.to_uri}/@me", nil).wait end end |
#clean_content(user: true, channel: true, role: true, emoji: true, everyone: true, codeblock: false) -> String
Removes the mentions from the message.
258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 |
# File 'lib/discorb/message.rb', line 258 def clean_content(user: true, channel: true, role: true, emoji: true, everyone: true, codeblock: false) ret = @content.dup ret.gsub!(/<@!?(\d+)>/) do |match| member = guild&.members&.[]($1) member ||= @client.users[$1] member ? "@#{member.name}" : "@Unknown User" end if user ret.gsub!(/<#(\d+)>/) do |match| channel = @client.channels[$1] channel ? "<##{channel.id}>" : "#Unknown Channel" end ret.gsub!(/<@&(\d+)>/) do |match| role = guild&.roles&.[]($1) role ? "@#{role.name}" : "@Unknown Role" end if role ret.gsub!(/<a?:([a-zA-Z0-9_]+):\d+>/) do |match| $1 end if emoji ret.gsub!(/@(everyone|here)/, "@\u200b\\1") if everyone unless codeblock codeblocks = ret.split("```", -1) original_codeblocks = @content.scan(/```(.+?)```/m) res = [] max = codeblocks.length codeblocks.each_with_index do |codeblock, i| if max % 2 == 0 && i == max - 1 or i.even? res << codeblock else res << original_codeblocks[i / 2] end end res.join("```") else ret end end |
#delete!(reason: nil) -> Async::Task<void>
Delete the message.
324 325 326 327 328 |
# File 'lib/discorb/message.rb', line 324 def delete!(reason: nil) Async do channel.(@id, reason: reason).wait end end |
#edit(content = nil, embed: nil, embeds: nil, allowed_mentions: nil, components: nil, supress: nil) -> Async::Task<void>
Edit the message.
308 309 310 311 312 313 314 |
# File 'lib/discorb/message.rb', line 308 def edit(content = nil, embed: nil, embeds: nil, allowed_mentions: nil, components: nil, supress: nil) Async do channel.(@id, content, embed: , embeds: , allowed_mentions: allowed_mentions, components: components, supress: supress).wait end end |
#fetch_reacted_users(emoji, limit: nil, after: 0) -> Async::Task<Array<Discorb::User>>
Fetch reacted users of reaction.
431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 |
# File 'lib/discorb/message.rb', line 431 def fetch_reacted_users(emoji, limit: nil, after: 0) Async do if limit.nil? || !limit.positive? after = 0 users = [] loop do _resp, data = @client.http.get("/channels/#{@channel_id}/messages/#{@id}/reactions/#{emoji.to_uri}?limit=100&after=#{after}").wait break if data.empty? users += data.map { |r| guild&.members&.[](r[:id]) || @client.users[r[:id]] || User.new(@client, r) } break if data.length < 100 after = data[-1][:id] end next users else _resp, data = @client.http.get("/channels/#{@channel_id}/messages/#{@id}/reactions/#{emoji.to_uri}?limit=#{limit}&after=#{after}").wait next data.map { |r| guild&.members&.[](r[:id]) || @client.users[r[:id]] || User.new(@client, r) } end end end |
#flag -> Discorb::Message::Flag
Returns The flag of the message.
129 130 131 |
# File 'lib/discorb/message.rb', line 129 def flag @flag end |
#inspect -> Object
Meta
500 501 502 |
# File 'lib/discorb/message.rb', line 500 def inspect "#<#{self.class} #{@content.inspect} id=#{@id}>" end |
#pin(reason: nil) -> Async::Task<void>
Pin the message.
462 463 464 465 466 |
# File 'lib/discorb/message.rb', line 462 def pin(reason: nil) Async do channel.(self, reason: reason).wait end end |
#publish -> Async::Task<void>
Publish the message.
366 367 368 369 370 |
# File 'lib/discorb/message.rb', line 366 def publish Async do channel.post("/channels/#{@channel_id}/messages/#{@id}/crosspost", nil).wait end end |
#remove_reaction(emoji) -> Async::Task<void> Also known as: delete_reaction
Remove a reaction from the message.
396 397 398 399 400 |
# File 'lib/discorb/message.rb', line 396 def remove_reaction(emoji) Async do @client.http.delete("/channels/#{@channel_id}/messages/#{@id}/reactions/#{emoji.to_uri}/@me").wait end end |
#remove_reaction_of(emoji, member) -> Async::Task<void> Also known as: delete_reaction_of
Remove other member's reaction from the message.
413 414 415 416 417 |
# File 'lib/discorb/message.rb', line 413 def remove_reaction_of(emoji, member) Async do @client.http.delete("/channels/#{@channel_id}/messages/#{@id}/reactions/#{emoji.to_uri}/#{member.is_a?(Member) ? member.id : member}").wait end end |
#reply(*args, **kwargs) -> Async::Task<Discorb::Message>
Reply to the message.
354 355 356 357 358 |
# File 'lib/discorb/message.rb', line 354 def reply(*args, **kwargs) Async do channel.post(*args, reference: self, **kwargs).wait end end |
#start_thread(*args, **kwargs) -> Async::Task<Discorb::ThreadChannel> Also known as: create_thread
Start thread from the message.
490 491 492 493 494 |
# File 'lib/discorb/message.rb', line 490 def start_thread(*args, **kwargs) Async do channel.start_thread(*args, message: self, **kwargs).wait end end |
#to_reference(fail_if_not_exists: true) -> Hash
Convert the message to reference object.
337 338 339 340 341 342 343 344 |
# File 'lib/discorb/message.rb', line 337 def to_reference(fail_if_not_exists: true) { message_id: @id, channel_id: @channel_id, guild_id: @guild_id, fail_if_not_exists: fail_if_not_exists, } end |
#unpin(reason: nil) -> Async::Task<void>
Unpin the message.
476 477 478 479 480 |
# File 'lib/discorb/message.rb', line 476 def unpin(reason: nil) Async do channel.(self, reason: reason).wait end end |