Class: Discorb::Guild::Widget

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

Overview

Represents a guild widget.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from DiscordModel

#==, #eql?, #hash

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:



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

#channel_id -> Discorb::Snowflake (readonly)

Returns The channel ID.

Returns:



975
976
977
# File 'lib/discorb/guild.rb', line 975

def channel_id
  @channel_id
end

#enabled -> Boolean (readonly) Also known as: enabled?, enable?

Returns Whether the widget is enabled.

Returns:

  • (Boolean)

    Whether the widget is enabled.



977
978
979
# File 'lib/discorb/guild.rb', line 977

def enabled
  @enabled
end

#guild -> nil, Discorb::Guild (readonly)

Note:

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

Returns:



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

#guild_id -> Discorb::Snowflake (readonly)

Returns The guild ID.

Returns:



973
974
975
# File 'lib/discorb/guild.rb', line 973

def guild_id
  @guild_id
end

#json_url -> String (readonly)

Returns The JSON URL.

Returns:

  • (String)

    The JSON URL.



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

Instance Method Details

#edit(enabled: nil, channel: nil, reason: nil) -> Object Also known as: modify

Note:

This is an asynchronous method, it will return a Async::Task object. Use Async::Task#wait to get the result.

Note:

This method calls HTTP request.

Note:

The arguments of this method are defaultly set to :unset. Specify value to set the value, if not don't specify or specify :unset.

Edit the widget.

Parameters:

  • enabled (Boolean) (defaults to: nil)

    Whether the widget is enabled.

  • channel (Discorb::GuildChannel) (defaults to: nil)

    The channel.

  • reason (String) (defaults to: nil)

    The reason for editing the widget.

Raises:



1012
1013
1014
1015
1016
1017
1018
1019
# File 'lib/discorb/guild.rb', line 1012

def edit(enabled: nil, channel: nil, reason: nil)
  Async do
    payload = {}
    payload[:enabled] = enabled unless enabled.nil?
    payload[:channel_id] = channel.id if channel_id
    @client.http.patch("/guilds/#{@guild_id}/widget", payload, audit_log_reason: reason).wait
  end
end

#iframe(theme: "dark", width: 350, height: 500) -> String

Return iframe HTML of the widget.

Parameters:

  • theme ("dark", "light") (defaults to: "dark")

    The theme of the widget.

  • width (Integer) (defaults to: 350)

    The width of the widget.

  • height (Integer) (defaults to: 500)

    The height of the widget.

Returns:

  • (String)

    The iframe HTML.



1036
1037
1038
1039
1040
1041
# File 'lib/discorb/guild.rb', line 1036

def iframe(theme: "dark", width: 350, height: 500)
  [
    %(<iframe src="https://canary.discord.com/widget?id=#{@guild_id}&theme=#{theme}" width="#{width}" height="#{height}"),
    %(allowtransparency="true" frameborder="0" sandbox="allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts"></iframe>),
  ].join
end