Module: Discordrb::API::Channel
- Defined in:
- lib/discordrb/api/channel.rb
Overview
API calls for Channel
Class Method Summary collapse
-
.add_group_user(token, group_channel_id, user_id) ⇒ Object
Add a user to a group channel.
-
.bulk_delete_messages(token, channel_id, messages = []) ⇒ Object
Delete messages in bulk https://discordapp.com/developers/docs/resources/channel#bulk-delete-messages.
-
.create_empty_group(token, bot_user_id) ⇒ Object
Create an empty group channel.
-
.create_group(token, pm_channel_id, user_id) ⇒ Object
Create a group channel.
-
.create_invite(token, channel_id, max_age = 0, max_uses = 0, temporary = false) ⇒ Object
Create an instant invite from a server or a channel id https://discordapp.com/developers/docs/resources/channel#create-channel-invite.
-
.create_message(token, channel_id, message, mentions = [], tts = false, embed = nil) ⇒ Object
Send a message to a channel https://discordapp.com/developers/docs/resources/channel#create-message.
-
.create_reaction(token, channel_id, message_id, emoji) ⇒ Object
Create a reaction on a message using this client https://discordapp.com/developers/docs/resources/channel#create-reaction.
- .delete(token, channel_id) ⇒ Object
-
.delete_all_reactions(token, channel_id, message_id) ⇒ Object
Deletes all reactions on a message from all clients https://discordapp.com/developers/docs/resources/channel#delete-all-reactions.
-
.delete_message(token, channel_id, message_id) ⇒ Object
Delete a message https://discordapp.com/developers/docs/resources/channel#delete-message.
-
.delete_own_reaction(token, channel_id, message_id, emoji) ⇒ Object
Delete this client's own reaction on a message https://discordapp.com/developers/docs/resources/channel#delete-own-reaction.
-
.delete_permission(token, channel_id, overwrite_id) ⇒ Object
Delete channel permission https://discordapp.com/developers/docs/resources/channel#delete-channel-permission.
-
.delete_user_reaction(token, channel_id, message_id, emoji, user_id) ⇒ Object
Delete another client's reaction on a message https://discordapp.com/developers/docs/resources/channel#delete-user-reaction.
- .edit_message(token, channel_id, message_id, message, mentions = [], embed = nil) ⇒ Object
-
.get_reactions(token, channel_id, message_id, emoji) ⇒ Object
Get a list of clients who reacted with a specific reaction on a message https://discordapp.com/developers/docs/resources/channel#get-reactions.
-
.invites(token, channel_id) ⇒ Object
Get a channel's invite list https://discordapp.com/developers/docs/resources/channel#get-channel-invites.
-
.leave_group(token, group_channel_id) ⇒ Object
Leave a group channel.
-
.message(token, channel_id, message_id) ⇒ Object
Get a single message from a channel's history by id https://discordapp.com/developers/docs/resources/channel#get-channel-message.
-
.messages(token, channel_id, amount, before = nil, after = nil) ⇒ Object
Get a list of messages from a channel's history https://discordapp.com/developers/docs/resources/channel#get-channel-messages.
- .pin_message(token, channel_id, message_id) ⇒ Object
-
.pinned_messages(token, channel_id) ⇒ Object
Get a list of pinned messages in a channel https://discordapp.com/developers/docs/resources/channel#get-pinned-messages.
-
.remove_group_user(token, group_channel_id, user_id) ⇒ Object
Remove a user from a group channel.
-
.resolve(token, channel_id) ⇒ Object
Get a channel's data https://discordapp.com/developers/docs/resources/channel#get-channel.
-
.start_typing(token, channel_id) ⇒ Object
Start typing (needs to be resent every 5 seconds to keep up the typing) https://discordapp.com/developers/docs/resources/channel#trigger-typing-indicator.
- .unpin_message(token, channel_id, message_id) ⇒ Object
-
.update(token, channel_id, name, topic, position, bitrate, user_limit) ⇒ Object
Update a channel's data https://discordapp.com/developers/docs/resources/channel#modify-channel.
-
.update_permission(token, channel_id, overwrite_id, allow, deny, type) ⇒ Object
Update a channels permission for a role or member https://discordapp.com/developers/docs/resources/channel#edit-channel-permissions.
-
.upload_file(token, channel_id, file, caption: nil, tts: false) ⇒ Object
Send a file as a message to a channel https://discordapp.com/developers/docs/resources/channel#upload-file.
Class Method Details
.add_group_user(token, group_channel_id, user_id) ⇒ Object
Add a user to a group channel.
339 340 341 342 343 344 345 346 347 348 349 |
# File 'lib/discordrb/api/channel.rb', line 339 def add_group_user(token, group_channel_id, user_id) Discordrb::API.request( :channels_cid_recipients_uid, nil, :put, "#{Discordrb::API.api_base}/channels/#{group_channel_id}/recipients/#{user_id}", {}.to_json, Authorization: token, content_type: :json ) end |
.bulk_delete_messages(token, channel_id, messages = []) ⇒ Object
Delete messages in bulk https://discordapp.com/developers/docs/resources/channel#bulk-delete-messages
126 127 128 129 130 131 132 133 134 135 136 |
# File 'lib/discordrb/api/channel.rb', line 126 def (token, channel_id, = []) Discordrb::API.request( :channels_cid_messages_bulk_delete, channel_id, :post, "#{Discordrb::API.api_base}/channels/#{channel_id}/messages/bulk_delete", { messages: }.to_json, Authorization: token, content_type: :json ) end |
.create_empty_group(token, bot_user_id) ⇒ Object
Create an empty group channel.
307 308 309 310 311 312 313 314 315 316 317 |
# File 'lib/discordrb/api/channel.rb', line 307 def create_empty_group(token, bot_user_id) Discordrb::API.request( :users_uid_channels, nil, :post, "#{Discordrb::API.api_base}/users/#{bot_user_id}/channels", {}.to_json, Authorization: token, content_type: :json ) end |
.create_group(token, pm_channel_id, user_id) ⇒ Object
Create a group channel.
320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 |
# File 'lib/discordrb/api/channel.rb', line 320 def create_group(token, pm_channel_id, user_id) Discordrb::API.request( :channels_cid_recipients_uid, nil, :put, "#{Discordrb::API.api_base}/channels/#{pm_channel_id}/recipients/#{user_id}", {}.to_json, Authorization: token, content_type: :json ) rescue RestClient::InternalServerError raise 'Attempted to add self as a new group channel recipient!' rescue RestClient::NoContent raise 'Attempted to create a group channel with the PM channel recipient!' rescue RestClient::Forbidden raise 'Attempted to add a user to group channel without permission!' end |
.create_invite(token, channel_id, max_age = 0, max_uses = 0, temporary = false) ⇒ Object
Create an instant invite from a server or a channel id https://discordapp.com/developers/docs/resources/channel#create-channel-invite
232 233 234 235 236 237 238 239 240 241 242 |
# File 'lib/discordrb/api/channel.rb', line 232 def create_invite(token, channel_id, max_age = 0, max_uses = 0, temporary = false) Discordrb::API.request( :channels_cid_invites, channel_id, :post, "#{Discordrb::API.api_base}/channels/#{channel_id}/invites", { max_age: max_age, max_uses: max_uses, temporary: temporary }.to_json, Authorization: token, content_type: :json ) end |
.create_message(token, channel_id, message, mentions = [], tts = false, embed = nil) ⇒ Object
Send a message to a channel https://discordapp.com/developers/docs/resources/channel#create-message
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 |
# File 'lib/discordrb/api/channel.rb', line 69 def (token, channel_id, , mentions = [], tts = false, = nil) # send message Discordrb::API.request( :channels_cid_messages_mid, channel_id, :post, "#{Discordrb::API.api_base}/channels/#{channel_id}/messages", { content: , mentions: mentions, tts: tts, embed: }.to_json, Authorization: token, content_type: :json ) rescue RestClient::BadRequest => e parsed = JSON.parse(e.response.body) raise Discordrb::Errors::MessageTooLong, "Message over the character limit (#{.length} > 2000)" if parsed['content'] && parsed['content'].is_a?(Array) && parsed['content'].first == 'Must be 2000 or less characters long.' raise end |
.create_reaction(token, channel_id, message_id, emoji) ⇒ Object
Create a reaction on a message using this client https://discordapp.com/developers/docs/resources/channel#create-reaction
140 141 142 143 144 145 146 147 148 149 150 151 |
# File 'lib/discordrb/api/channel.rb', line 140 def create_reaction(token, channel_id, , emoji) emoji = URI.encode(emoji) unless emoji.ascii_only? Discordrb::API.request( :channels_cid_messages_mid_reactions_emoji_me, channel_id, :put, "#{Discordrb::API.api_base}/channels/#{channel_id}/messages/#{}/reactions/#{emoji}/@me", nil, Authorization: token, content_type: :json ) end |
.delete(token, channel_id) ⇒ Object
33 34 35 36 37 38 39 40 41 |
# File 'lib/discordrb/api/channel.rb', line 33 def delete(token, channel_id) Discordrb::API.request( :channels_cid, channel_id, :delete, "#{Discordrb::API.api_base}/channels/#{channel_id}", Authorization: token ) end |
.delete_all_reactions(token, channel_id, message_id) ⇒ Object
Deletes all reactions on a message from all clients https://discordapp.com/developers/docs/resources/channel#delete-all-reactions
194 195 196 197 198 199 200 201 202 |
# File 'lib/discordrb/api/channel.rb', line 194 def delete_all_reactions(token, channel_id, ) Discordrb::API.request( :channels_cid_messages_mid_reactions, channel_id, :delete, "#{Discordrb::API.api_base}/channels/#{channel_id}/messages/#{}/reactions", Authorization: token ) end |
.delete_message(token, channel_id, message_id) ⇒ Object
114 115 116 117 118 119 120 121 122 |
# File 'lib/discordrb/api/channel.rb', line 114 def (token, channel_id, ) Discordrb::API.request( :channels_cid_messages_mid, channel_id, :delete, "#{Discordrb::API.api_base}/channels/#{channel_id}/messages/#{}", Authorization: token ) end |
.delete_own_reaction(token, channel_id, message_id, emoji) ⇒ Object
Delete this client's own reaction on a message https://discordapp.com/developers/docs/resources/channel#delete-own-reaction
155 156 157 158 159 160 161 162 163 164 |
# File 'lib/discordrb/api/channel.rb', line 155 def delete_own_reaction(token, channel_id, , emoji) emoji = URI.encode(emoji) unless emoji.ascii_only? Discordrb::API.request( :channels_cid_messages_mid_reactions_emoji_me, channel_id, :delete, "#{Discordrb::API.api_base}/channels/#{channel_id}/messages/#{}/reactions/#{emoji}/@me", Authorization: token ) end |
.delete_permission(token, channel_id, overwrite_id) ⇒ Object
Delete channel permission https://discordapp.com/developers/docs/resources/channel#delete-channel-permission
246 247 248 249 250 251 252 253 254 |
# File 'lib/discordrb/api/channel.rb', line 246 def (token, channel_id, overwrite_id) Discordrb::API.request( :channels_cid_permissions_oid, channel_id, :delete, "#{Discordrb::API.api_base}/channels/#{channel_id}/permissions/#{overwrite_id}", Authorization: token ) end |
.delete_user_reaction(token, channel_id, message_id, emoji, user_id) ⇒ Object
Delete another client's reaction on a message https://discordapp.com/developers/docs/resources/channel#delete-user-reaction
168 169 170 171 172 173 174 175 176 177 |
# File 'lib/discordrb/api/channel.rb', line 168 def delete_user_reaction(token, channel_id, , emoji, user_id) emoji = URI.encode(emoji) unless emoji.ascii_only? Discordrb::API.request( :channels_cid_messages_mid_reactions_emoji_uid, channel_id, :delete, "#{Discordrb::API.api_base}/channels/#{channel_id}/messages/#{}/reactions/#{emoji}/#{user_id}", Authorization: token ) end |
.edit_message(token, channel_id, message_id, message, mentions = [], embed = nil) ⇒ Object
100 101 102 103 104 105 106 107 108 109 110 |
# File 'lib/discordrb/api/channel.rb', line 100 def (token, channel_id, , , mentions = [], = nil) Discordrb::API.request( :channels_cid_messages_mid, channel_id, :patch, "#{Discordrb::API.api_base}/channels/#{channel_id}/messages/#{}", { content: , mentions: mentions, embed: }.to_json, Authorization: token, content_type: :json ) end |
.get_reactions(token, channel_id, message_id, emoji) ⇒ Object
Get a list of clients who reacted with a specific reaction on a message https://discordapp.com/developers/docs/resources/channel#get-reactions
181 182 183 184 185 186 187 188 189 190 |
# File 'lib/discordrb/api/channel.rb', line 181 def get_reactions(token, channel_id, , emoji) emoji = URI.encode(emoji) unless emoji.ascii_only? Discordrb::API.request( :channels_cid_messages_mid_reactions_emoji, channel_id, :get, "#{Discordrb::API.api_base}/channels/#{channel_id}/messages/#{}/reactions/#{emoji}", Authorization: token ) end |
.invites(token, channel_id) ⇒ Object
Get a channel's invite list https://discordapp.com/developers/docs/resources/channel#get-channel-invites
220 221 222 223 224 225 226 227 228 |
# File 'lib/discordrb/api/channel.rb', line 220 def invites(token, channel_id) Discordrb::API.request( :channels_cid_invites, channel_id, :get, "#{Discordrb::API.api_base}/channels/#{channel_id}/invites", Authorization: token ) end |
.leave_group(token, group_channel_id) ⇒ Object
Leave a group channel.
364 365 366 367 368 369 370 371 372 373 |
# File 'lib/discordrb/api/channel.rb', line 364 def leave_group(token, group_channel_id) Discordrb::API.request( :channels_cid, nil, :delete, "#{Discordrb::API.api_base}/channels/#{group_channel_id}", Authorization: token, content_type: :json ) end |
.message(token, channel_id, message_id) ⇒ Object
Get a single message from a channel's history by id https://discordapp.com/developers/docs/resources/channel#get-channel-message
57 58 59 60 61 62 63 64 65 |
# File 'lib/discordrb/api/channel.rb', line 57 def (token, channel_id, ) Discordrb::API.request( :channels_cid_messages_mid, channel_id, :get, "#{Discordrb::API.api_base}/channels/#{channel_id}/messages/#{}", Authorization: token ) end |
.messages(token, channel_id, amount, before = nil, after = nil) ⇒ Object
Get a list of messages from a channel's history https://discordapp.com/developers/docs/resources/channel#get-channel-messages
45 46 47 48 49 50 51 52 53 |
# File 'lib/discordrb/api/channel.rb', line 45 def (token, channel_id, amount, before = nil, after = nil) Discordrb::API.request( :channels_cid_messages, channel_id, :get, "#{Discordrb::API.api_base}/channels/#{channel_id}/messages?limit=#{amount}#{"&before=#{before}" if before}#{"&after=#{after}" if after}", Authorization: token ) end |
.pin_message(token, channel_id, message_id) ⇒ Object
283 284 285 286 287 288 289 290 291 292 |
# File 'lib/discordrb/api/channel.rb', line 283 def (token, channel_id, ) Discordrb::API.request( :channels_cid_pins_mid, channel_id, :put, "#{Discordrb::API.api_base}/channels/#{channel_id}/pins/#{}", nil, Authorization: token ) end |
.pinned_messages(token, channel_id) ⇒ Object
Get a list of pinned messages in a channel https://discordapp.com/developers/docs/resources/channel#get-pinned-messages
271 272 273 274 275 276 277 278 279 |
# File 'lib/discordrb/api/channel.rb', line 271 def (token, channel_id) Discordrb::API.request( :channels_cid_pins, channel_id, :get, "#{Discordrb::API.api_base}/channels/#{channel_id}/pins", Authorization: token ) end |
.remove_group_user(token, group_channel_id, user_id) ⇒ Object
Remove a user from a group channel.
352 353 354 355 356 357 358 359 360 361 |
# File 'lib/discordrb/api/channel.rb', line 352 def remove_group_user(token, group_channel_id, user_id) Discordrb::API.request( :channels_cid_recipients_uid, nil, :delete, "#{Discordrb::API.api_base}/channels/#{group_channel_id}/recipients/#{user_id}", Authorization: token, content_type: :json ) end |
.resolve(token, channel_id) ⇒ Object
Get a channel's data https://discordapp.com/developers/docs/resources/channel#get-channel
7 8 9 10 11 12 13 14 15 |
# File 'lib/discordrb/api/channel.rb', line 7 def resolve(token, channel_id) Discordrb::API.request( :channels_cid, channel_id, :get, "#{Discordrb::API.api_base}/channels/#{channel_id}", Authorization: token ) end |
.start_typing(token, channel_id) ⇒ Object
Start typing (needs to be resent every 5 seconds to keep up the typing) https://discordapp.com/developers/docs/resources/channel#trigger-typing-indicator
258 259 260 261 262 263 264 265 266 267 |
# File 'lib/discordrb/api/channel.rb', line 258 def start_typing(token, channel_id) Discordrb::API.request( :channels_cid_typing, channel_id, :post, "#{Discordrb::API.api_base}/channels/#{channel_id}/typing", nil, Authorization: token ) end |
.unpin_message(token, channel_id, message_id) ⇒ Object
296 297 298 299 300 301 302 303 304 |
# File 'lib/discordrb/api/channel.rb', line 296 def (token, channel_id, ) Discordrb::API.request( :channels_cid_pins_mid, channel_id, :delete, "#{Discordrb::API.api_base}/channels/#{channel_id}/pins/#{}", Authorization: token ) end |
.update(token, channel_id, name, topic, position, bitrate, user_limit) ⇒ Object
Update a channel's data https://discordapp.com/developers/docs/resources/channel#modify-channel
19 20 21 22 23 24 25 26 27 28 29 |
# File 'lib/discordrb/api/channel.rb', line 19 def update(token, channel_id, name, topic, position, bitrate, user_limit) Discordrb::API.request( :channels_cid, channel_id, :patch, "#{Discordrb::API.api_base}/channels/#{channel_id}", { name: name, position: position, topic: topic, bitrate: bitrate, user_limit: user_limit }.to_json, Authorization: token, content_type: :json ) end |
.update_permission(token, channel_id, overwrite_id, allow, deny, type) ⇒ Object
Update a channels permission for a role or member https://discordapp.com/developers/docs/resources/channel#edit-channel-permissions
206 207 208 209 210 211 212 213 214 215 216 |
# File 'lib/discordrb/api/channel.rb', line 206 def (token, channel_id, overwrite_id, allow, deny, type) Discordrb::API.request( :channels_cid_permissions_oid, channel_id, :put, "#{Discordrb::API.api_base}/channels/#{channel_id}/permissions/#{overwrite_id}", { type: type, id: overwrite_id, allow: allow, deny: deny }.to_json, Authorization: token, content_type: :json ) end |
.upload_file(token, channel_id, file, caption: nil, tts: false) ⇒ Object
Send a file as a message to a channel https://discordapp.com/developers/docs/resources/channel#upload-file
87 88 89 90 91 92 93 94 95 96 |
# File 'lib/discordrb/api/channel.rb', line 87 def upload_file(token, channel_id, file, caption: nil, tts: false) Discordrb::API.request( :channels_cid_messages_mid, channel_id, :post, "#{Discordrb::API.api_base}/channels/#{channel_id}/messages", { file: file, content: caption, tts: tts }, Authorization: token ) end |