Class: Discorb::WelcomeScreen::Channel

Inherits:
DiscordModel show all
Defined in:
lib/discorb/guild.rb

Overview

Represents a channel to display the welcome screen.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from DiscordModel

#==, #eql?, #inspect

Constructor Details

#initialize(channel, description, emoji) -> Channel

Initialize a new welcome screen channel.

Parameters:

  • channel (Discorb::TextChannel)

    The channel to display the welcome screen.

  • description (String)

    The channel's name.

  • emoji (Discorb::Emoji)

    The emoji to display.



1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
# File 'lib/discorb/guild.rb', line 1552

def initialize(channel, description, emoji)
  if description.is_a?(Hash)
    @screen = channel
    data = description
    @channel_id = Snowflake.new(data[:channel_id])
    @description = data[:description]
    @emoji_id = Snowflake.new(data[:emoji_id])
    @emoji_name = data[:emoji_name]
  else
    @channel_id = channel.id
    @description = description
    if emoji.is_a?(UnicodeEmoji)
      @emoji_id = nil
      @emoji_name = emoji.value
    else
      @emoji_id = emoji.id
      @emoji_name = emoji.name
    end
  end
end

Instance Attribute Details

#channel -> nil, Discorb::Channel (readonly)

Note:

This method returns an object from client cache. it will return nil if the object is not in cache.

Returns:

  • (nil)

    The object wasn't cached.

  • (Discorb::Channel)

    The channel to display the welcome screen.



# File 'lib/discorb/guild.rb', line 1539

#description -> String (readonly)

Returns The channel's name.

Returns:

  • (String)

    The channel's name.



1537
1538
1539
# File 'lib/discorb/guild.rb', line 1537

def description
  @description
end

#emoji -> Discorb::Emoji (readonly)

Returns The emoji to display.

Returns:



# File 'lib/discorb/guild.rb', line 1539

Instance Method Details

#edit(enabled: Discorb::Unset, channels: Discorb::Unset, description: Discorb::Unset, reason: nil) -> Async::Task<void>

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.

Edits the welcome screen.

Parameters:

  • enabled (Boolean) (defaults to: Discorb::Unset)

    Whether the welcome screen is enabled.

  • channels (Array<Discorb::WelcomeScreen::Channel>) (defaults to: Discorb::Unset)

    The channels to display the welcome screen.

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

    The description of the welcome screen.

  • reason (String) (defaults to: nil)

    The reason for editing the welcome screen.

Returns:

  • (Async::Task<void>)

    The task.



1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
# File 'lib/discorb/guild.rb', line 1612

def edit(enabled: Discorb::Unset, channels: Discorb::Unset, description: Discorb::Unset, reason: nil)
  Async do
    payload = {}
    payload[:enabled] = enabled unless enabled == Discorb::Unset
    payload[:welcome_channels] = channels.map(&:to_hash) unless channels == Discorb::Unset
    payload[:description] = description unless description == Discorb::Unset
    @client.http.request(
      Route.new("/guilds/#{@guild.id}/welcome-screen", "//guilds/:guild_id/welcome-screen",
                :patch), payload, audit_log_reason: reason,
    ).wait
  end
end

#to_hash -> Hash

Converts the channel to a hash.

Returns:

  • (Hash)

    The hash.

See Also:



1579
1580
1581
1582
1583
1584
1585
1586
# File 'lib/discorb/guild.rb', line 1579

def to_hash
  {
    channel_id: @channel_id,
    description: @description,
    emoji_id: @emoji_id,
    emoji_name: @emoji_name,
  }
end