Class: Discorb::StageChannel
- Inherits:
-
GuildChannel
- Object
- DiscordModel
- Channel
- GuildChannel
- Discorb::StageChannel
- Includes:
- Connectable
- Defined in:
- lib/discorb/channel/stage.rb
Overview
Represents a stage channel.
Instance Attribute Summary collapse
-
#bitrate -> Integer
readonly
The bitrate of the voice channel.
-
#user_limit -> Integer
readonly
The user limit of the voice channel.
Attributes inherited from GuildChannel
#permission_overwrites, #position
Attributes inherited from Channel
Instance Method Summary collapse
- #audiences -> Object
-
#edit(name: Discorb::Unset, position: Discorb::Unset, bitrate: Discorb::Unset, rtc_region: Discorb::Unset, reason: nil) -> Async::Task<self>
(also: #modify)
Edit the stage channel.
-
#fetch_stage_instance -> Async::Task<StageInstance>, Async::Task<nil>
Fetch a current stage instance.
- #members -> Object
- #speakers -> Object
- #stage_instance -> Object
-
#start(topic, public: false, reason: nil) -> Async::Task<Discorb::StageInstance>
Start a stage instance.
- #voice_states -> Object
Methods included from Connectable
Methods inherited from GuildChannel
#<=>, #==, #create_invite, #delete, #delete_permissions, #fetch_invites, #guild, #inspect, #mention, #move, #parent, #set_permissions, #to_s
Methods inherited from Channel
Methods inherited from DiscordModel
Instance Attribute Details
#bitrate -> Integer (readonly)
Returns The bitrate of the voice channel.
9 10 11 |
# File 'lib/discorb/channel/stage.rb', line 9 def bitrate @bitrate end |
#user_limit -> Integer (readonly)
Returns The user limit of the voice channel.
11 12 13 |
# File 'lib/discorb/channel/stage.rb', line 11 def user_limit @user_limit end |
Instance Method Details
#audiences -> Object
126 127 128 |
# File 'lib/discorb/channel/stage.rb', line 126 def audiences voice_states.filter(&:suppress?).map(&:member) end |
#edit(name: Discorb::Unset, position: Discorb::Unset, bitrate: Discorb::Unset, rtc_region: Discorb::Unset, reason: nil) -> Async::Task<self> Also known as: modify
Note:
The arguments of this method are defaultly set to Discorb::Unset
. Specify value to set the value, if not don't specify or specify Discorb::Unset
.
Edit the stage channel.
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
# File 'lib/discorb/channel/stage.rb', line 51 def edit( name: Discorb::Unset, position: Discorb::Unset, bitrate: Discorb::Unset, rtc_region: Discorb::Unset, reason: nil ) Async do payload = {} payload[:name] = name if name != Discorb::Unset payload[:position] = position if position != Discorb::Unset payload[:bitrate] = bitrate if bitrate != Discorb::Unset payload[:rtc_region] = rtc_region if rtc_region != Discorb::Unset @client.http.request(Route.new("/channels/#{@id}", "//channels/:channel_id", :patch), payload, audit_log_reason: reason).wait self end end |
#fetch_stage_instance -> Async::Task<StageInstance>, Async::Task<nil>
Fetch a current stage instance.
103 104 105 106 107 108 109 110 111 112 |
# File 'lib/discorb/channel/stage.rb', line 103 def fetch_stage_instance Async do _resp, data = @client.http.request(Route.new("/stage-instances/#{@id}", "//stage-instances/:stage_instance_id", :get)).wait rescue Discorb::NotFoundError nil else StageInstance.new(@client, data) end end |
#members -> Object
118 119 120 |
# File 'lib/discorb/channel/stage.rb', line 118 def members voice_states.map(&:member) end |
#speakers -> Object
122 123 124 |
# File 'lib/discorb/channel/stage.rb', line 122 def speakers voice_states.reject(&:suppress?).map(&:member) end |
#stage_instance -> Object
34 35 36 |
# File 'lib/discorb/channel/stage.rb', line 34 def stage_instance @stage_instances[0] end |
#start(topic, public: false, reason: nil) -> Async::Task<Discorb::StageInstance>
Start a stage instance.
82 83 84 85 86 87 88 89 90 91 92 93 94 |
# File 'lib/discorb/channel/stage.rb', line 82 def start(topic, public: false, reason: nil) Async do _resp, data = @client.http.request( Route.new("/stage-instances", "//stage-instances", :post), { channel_id: @id, topic: topic, public: public ? 2 : 1, }, audit_log_reason: reason, ).wait StageInstance.new(@client, data) end end |
#voice_states -> Object
114 115 116 |
# File 'lib/discorb/channel/stage.rb', line 114 def voice_states guild.voice_states.select { |state| state.channel&.id == @id } end |