Class: Discorb::StageChannel

Inherits:
GuildChannel show all
Includes:
Connectable
Defined in:
lib/discorb/channel.rb

Overview

Represents a stage channel.

Instance Attribute Summary collapse

Attributes inherited from GuildChannel

#permission_overwrites, #position

Attributes inherited from Channel

#id, #name

Instance Method Summary collapse

Methods included from Connectable

#connect

Methods inherited from GuildChannel

#<=>, #==, #delete!, #guild, #inspect, #mention, #move, #parent, #to_s

Methods inherited from Channel

#==, #inspect, #type

Methods inherited from DiscordModel

#==, #eql?, #hash

Instance Attribute Details

#bitrate -> Integer (readonly)

Returns The bitrate of the voice channel.

Returns:

  • (Integer)

    The bitrate of the voice channel.



668
669
670
# File 'lib/discorb/channel.rb', line 668

def bitrate
  @bitrate
end

#user_limit -> Integer (readonly)

Returns The user limit of the voice channel.

Returns:

  • (Integer)

    The user limit of the voice channel.



670
671
672
# File 'lib/discorb/channel.rb', line 670

def user_limit
  @user_limit
end

Instance Method Details

#audiences -> Object



763
764
765
# File 'lib/discorb/channel.rb', line 763

def audiences
  voice_states.filter { |state| state.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.

Parameters:

  • name (String) (defaults to: Discorb::Unset)

    The name of the stage channel.

  • position (Integer) (defaults to: Discorb::Unset)

    The position of the stage channel.

  • bitrate (Integer) (defaults to: Discorb::Unset)

    The bitrate of the stage channel.

  • rtc_region (Symbol) (defaults to: Discorb::Unset)

    The region of the stage channel.

  • reason (String) (defaults to: nil)

    The reason of editing the stage channel.

Returns:

  • (Async::Task<self>)

    The edited stage channel.



703
704
705
706
707
708
709
710
711
712
713
# File 'lib/discorb/channel.rb', line 703

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.patch("/channels/#{@id}", payload, audit_log_reason: reason).wait
    self
  end
end

#fetch_stage_instance -> Async::Task<StageInstance>, Async::Task<nil>

Fetch a current stage instance.

Returns:

  • (Async::Task<StageInstance>)

    The current stage instance.

  • (Async::Task<nil>)

    If there is no current stage instance.



741
742
743
744
745
746
747
748
749
# File 'lib/discorb/channel.rb', line 741

def fetch_stage_instance
  Async do
    _resp, data = @client.http.get("/stage-instances/#{@id}").wait
  rescue Discorb::NotFoundError
    nil
  else
    StageInstance.new(@client, data)
  end
end

#members -> Object



755
756
757
# File 'lib/discorb/channel.rb', line 755

def members
  voice_states.map(&:member)
end

#speakers -> Object



759
760
761
# File 'lib/discorb/channel.rb', line 759

def speakers
  voice_states.filter { |state| !state.suppress? }.map(&:member)
end

#stage_instance -> Object



686
687
688
# File 'lib/discorb/channel.rb', line 686

def stage_instance
  @stage_instances[0]
end

#start(topic, public: false, reason: nil) -> Async::Task<Discorb::StageInstance>

Start a stage instance.

Parameters:

  • topic (String)

    The topic of the stage instance.

  • public (Boolean) (defaults to: false)

    Whether the stage instance is public or not.

  • reason (String) (defaults to: nil)

    The reason of starting the stage instance.

Returns:



727
728
729
730
731
732
# File 'lib/discorb/channel.rb', line 727

def start(topic, public: false, reason: nil)
  Async do
    _resp, data = @client.http.post("/stage-instances", { channel_id: @id, topic: topic, public: public ? 2 : 1 }, audit_log_reason: reason).wait
    StageInstance.new(@client, data)
  end
end

#voice_states -> Object



751
752
753
# File 'lib/discorb/channel.rb', line 751

def voice_states
  guild.voice_states.select { |state| state.channel&.id == @id }
end