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::Components>>
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.
-
#edited? -> Boolean
readonly
Whether the message was edited.
- #embed -> Discorb::Embed? readonly
-
#embeds -> Array<Discorb::Embed>
readonly
The embeds of the message.
- #guild -> nil, Discorb::Guild readonly
-
#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.
-
#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) -> Object
(also: #react_with)
Add a reaction to the message.
-
#delete!(reason: nil) -> Object
Delete the message.
-
#edit(message_id, content = nil, embed: nil, embeds: nil, allowed_mentions: nil, components: nil, supress: nil) -> Object
Edit the message.
-
#fetch_reacted_users(emoji, limit: nil, after: 0) -> Array<Discorb::User>
Fetch reacted users of reaction.
-
#flag -> Discorb::Message::Flag
The flag of the message.
-
#inspect -> Object
Meta.
-
#pin(reason: nil) -> Object
Pin the message.
-
#publish -> Object
Publish the message.
-
#remove_reaction(emoji) -> Object
(also: #delete_reaction)
Remove a reaction from the message.
-
#remove_reaction_of(emoji, member) -> Object
(also: #delete_reaction_of)
Remove other member's reaction from the message.
-
#reply(*args, **kwargs) -> Discorb::Message
Reply to the message.
-
#start_thread(*args, **kwargs) -> <Type>
(also: #create_thread)
Start thread from the message.
-
#to_reference(fail_if_not_exists: true) -> Hash
Convert the message to reference object.
-
#unpin -> Object
Unpin the message.
Methods inherited from DiscordModel
Instance Attribute Details
#activity -> Discorb::Message::Activity (readonly)
Returns The activity of the message.
117 118 119 |
# File 'lib/discorb/message.rb', line 117 def activity @activity end |
#application_id -> Discorb::Application (readonly)
Returns The application of the message.
119 120 121 |
# File 'lib/discorb/message.rb', line 119 def application_id @application_id end |
#attachments -> Array<Discorb::Attachment> (readonly)
Returns The attachments of the message.
83 84 85 |
# File 'lib/discorb/message.rb', line 83 def @attachments end |
#author -> Discorb::User, Discorb::Member (readonly)
Returns The user that sent the message.
69 70 71 |
# File 'lib/discorb/message.rb', line 69 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.
|
# File 'lib/discorb/message.rb', line 170
|
#components -> Array<Array<Discorb::Components>> (readonly)
Returns The components of the message.
132 133 134 |
# File 'lib/discorb/message.rb', line 132 def components @components end |
#content -> String (readonly) Also known as: to_s
Returns The content of the message.
71 72 73 |
# File 'lib/discorb/message.rb', line 71 def content @content end |
#created_at -> Time (readonly) Also known as: timestamp, sent_at
Returns The time the message was created.
74 75 76 |
# File 'lib/discorb/message.rb', line 74 def created_at @created_at end |
#deleted -> Boolean (readonly) Also known as: deleted?
Returns Whether the message is deleted.
134 135 136 |
# File 'lib/discorb/message.rb', line 134 def deleted @deleted end |
#edited? -> Boolean (readonly)
Returns Whether the message was edited.
|
# File 'lib/discorb/message.rb', line 170
|
#embeds -> Array<Discorb::Embed> (readonly)
Returns The embeds of the message.
85 86 87 |
# File 'lib/discorb/message.rb', line 85 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.
|
# File 'lib/discorb/message.rb', line 170
|
#id -> Discorb::Snowflake (readonly)
Returns The ID of the message.
67 68 69 |
# File 'lib/discorb/message.rb', line 67 def id @id end |
#interaction -> Discorb::Message::Interaction (readonly)
Returns The interaction of the message.
128 129 130 |
# File 'lib/discorb/message.rb', line 128 def interaction @interaction end |
#jump_url -> String (readonly)
Returns The URL to jump to the message.
|
# File 'lib/discorb/message.rb', line 170
|
#mention_everyone -> Boolean (readonly) Also known as: mention_everyone?
Returns Whether the message mentions everyone.
140 141 142 |
# File 'lib/discorb/message.rb', line 140 def mention_everyone @mention_everyone end |
#message_reference -> Discorb::Message::Reference (readonly)
Returns The reference of the message.
121 122 123 |
# File 'lib/discorb/message.rb', line 121 def @message_reference end |
#pinned -> Boolean (readonly) Also known as: pinned?
Returns Whether the message is pinned.
143 144 145 |
# File 'lib/discorb/message.rb', line 143 def pinned @pinned end |
#reactions -> Array<Discorb::Reaction> (readonly)
Returns The reactions of the message.
87 88 89 |
# File 'lib/discorb/message.rb', line 87 def reactions @reactions end |
#stickers -> Discorb::Message::Sticker (readonly)
Returns The sticker of the message.
126 127 128 |
# File 'lib/discorb/message.rb', line 126 def stickers @stickers end |
#thread -> Discorb::ThreadChannel (readonly)
Returns The thread channel of the message.
130 131 132 |
# File 'lib/discorb/message.rb', line 130 def thread @thread end |
#tts -> Boolean (readonly) Also known as: tts?
Returns Whether the message is tts.
137 138 139 |
# File 'lib/discorb/message.rb', line 137 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
-
:application_command
-
:thread_starter_message
-
:guild_invite_reminder
115 116 117 |
# File 'lib/discorb/message.rb', line 115 def type @type end |
#updated_at -> Time? (readonly) Also known as: edited_at, edited_timestamp
79 80 81 |
# File 'lib/discorb/message.rb', line 79 def updated_at @updated_at end |
#webhook? -> Boolean (readonly)
Returns Whether the message was sent by a webhook.
|
# File 'lib/discorb/message.rb', line 170
|
#webhook_id -> Discorb::Snowflake (readonly)
Returns The ID of the channel the message was sent in.
89 90 91 |
# File 'lib/discorb/message.rb', line 89 def webhook_id @webhook_id end |
Instance Method Details
#add_reaction(emoji) -> Object Also known as: react_with
This is an asynchronous method, it will return a Async::Task
object. Use Async::Task#wait
to get the result.
This method calls HTTP request.
Add a reaction to the message.
294 295 296 297 298 |
# File 'lib/discorb/message.rb', line 294 def add_reaction(emoji) Async do @client.http.put("/channels/#{@channel_id}/messages/#{@id}/reactions/#{emoji.to_uri}/@me", nil).wait end end |
#delete!(reason: nil) -> Object
Delete the message.
239 240 241 242 243 |
# File 'lib/discorb/message.rb', line 239 def delete!(reason: nil) Async do channel.(@id, reason: reason).wait end end |
#edit(message_id, content = nil, embed: nil, embeds: nil, allowed_mentions: nil, components: nil, supress: nil) -> Object
Edit the message.
226 227 228 229 230 231 232 |
# File 'lib/discorb/message.rb', line 226 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) -> Array<Discorb::User>
This is an asynchronous method, it will return a Async::Task
object. Use Async::Task#wait
to get the result.
This method calls HTTP request.
Fetch reacted users of reaction.
344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 |
# File 'lib/discorb/message.rb', line 344 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.
124 125 126 |
# File 'lib/discorb/message.rb', line 124 def flag @flag end |
#inspect -> Object
Meta
408 409 410 |
# File 'lib/discorb/message.rb', line 408 def inspect "#<#{self.class} #{@content.inspect} id=#{@id}>" end |
#pin(reason: nil) -> Object
This is an asynchronous method, it will return a Async::Task
object. Use Async::Task#wait
to get the result.
This method calls HTTP request.
Pin the message.
374 375 376 377 378 |
# File 'lib/discorb/message.rb', line 374 def pin(reason: nil) Async do channel.(self, reason: reason).wait end end |
#publish -> Object
This is an asynchronous method, it will return a Async::Task
object. Use Async::Task#wait
to get the result.
This method calls HTTP request.
Publish the message.
281 282 283 284 285 |
# File 'lib/discorb/message.rb', line 281 def publish Async do channel.post("/channels/#{@channel_id}/messages/#{@id}/crosspost", nil).wait end end |
#remove_reaction(emoji) -> Object Also known as: delete_reaction
This is an asynchronous method, it will return a Async::Task
object. Use Async::Task#wait
to get the result.
This method calls HTTP request.
Remove a reaction from the message.
309 310 311 312 313 |
# File 'lib/discorb/message.rb', line 309 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) -> Object Also known as: delete_reaction_of
This is an asynchronous method, it will return a Async::Task
object. Use Async::Task#wait
to get the result.
This method calls HTTP request.
Remove other member's reaction from the message.
325 326 327 328 329 |
# File 'lib/discorb/message.rb', line 325 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) -> Discorb::Message
This is an asynchronous method, it will return a Async::Task
object. Use Async::Task#wait
to get the result.
This method calls HTTP request.
Reply to the message.
270 271 272 273 274 |
# File 'lib/discorb/message.rb', line 270 def reply(*args, **kwargs) Async do channel.post(*args, reference: self, **kwargs).wait end end |
#start_thread(*args, **kwargs) -> <Type> Also known as: create_thread
Start thread from the message.
398 399 400 401 402 |
# File 'lib/discorb/message.rb', line 398 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.
252 253 254 255 256 257 258 259 |
# File 'lib/discorb/message.rb', line 252 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 -> Object
This is an asynchronous method, it will return a Async::Task
object. Use Async::Task#wait
to get the result.
This method calls HTTP request.
Unpin the message.
385 386 387 388 389 |
# File 'lib/discorb/message.rb', line 385 def unpin Async do channel.(self, reason: reason).wait end end |