Class: Discorb::Role
- Inherits:
-
DiscordModel
- Object
- DiscordModel
- Discorb::Role
- Includes:
- Comparable
- Defined in:
- lib/discorb/role.rb
Overview
Represents a role in the guild.
Defined Under Namespace
Classes: Tag
Instance Attribute Summary collapse
-
#color -> Discorb::Color
readonly
The color of the role.
-
#custom_icon -> Discorb::Asset?
readonly
The icon of the role.
-
#emoji -> Discorb::Emoji?
readonly
The emoji of the role.
-
#guild -> Discorb::Guild
readonly
The guild this role belongs to.
-
#hoist -> Boolean
(also: #hoist?)
readonly
Whether the role is hoisted.
-
#id -> Discorb::Snowflake
readonly
The ID of the role.
-
#managed -> Boolean
(also: #managed?)
readonly
Whether the role is managed.
-
#mentionable -> Boolean
(also: #mentionable?)
readonly
Whether the role is a default role.
-
#name -> String
readonly
The name of the role.
-
#permissions -> Discorb::Permission
readonly
The permissions of the role.
-
#position -> Integer
readonly
The position of the role.
Instance Method Summary collapse
-
#<=>(other) -> Integer
Compares two roles by their position.
- #color? -> Boolean
-
#delete(reason: nil) -> Async::Task<void>
(also: #destroy)
Deletes the role.
-
#edit(name: Discorb::Unset, position: Discorb::Unset, color: Discorb::Unset, hoist: Discorb::Unset, mentionable: Discorb::Unset, icon: Discorb::Unset, reason: nil) -> Async::Task<void>
(also: #modify)
Edits the role.
- #icon -> Object
- #inspect -> Object
- #mention -> Object
-
#move(position, reason: nil) -> Async::Task<void>
Moves the role to a new position.
- #tag -> Object (also: #tags)
-
#to_s -> String
Formats the role as a string.
Methods inherited from DiscordModel
Instance Attribute Details
#color -> Discorb::Color (readonly)
Returns The color of the role.
13 14 15 |
# File 'lib/discorb/role.rb', line 13 def color @color end |
#custom_icon -> Discorb::Asset? (readonly)
Returns The icon of the role.
30 31 32 |
# File 'lib/discorb/role.rb', line 30 def custom_icon @custom_icon end |
#emoji -> Discorb::Emoji? (readonly)
Returns The emoji of the role.
32 33 34 |
# File 'lib/discorb/role.rb', line 32 def emoji @emoji end |
#guild -> Discorb::Guild (readonly)
Returns The guild this role belongs to.
19 20 21 |
# File 'lib/discorb/role.rb', line 19 def guild @guild end |
#hoist -> Boolean (readonly) Also known as: hoist?
Returns Whether the role is hoisted.
21 22 23 |
# File 'lib/discorb/role.rb', line 21 def hoist @hoist end |
#id -> Discorb::Snowflake (readonly)
Returns The ID of the role.
9 10 11 |
# File 'lib/discorb/role.rb', line 9 def id @id end |
#managed -> Boolean (readonly) Also known as: managed?
Returns Whether the role is managed.
24 25 26 |
# File 'lib/discorb/role.rb', line 24 def managed @managed end |
#mentionable -> Boolean (readonly) Also known as: mentionable?
Returns Whether the role is a default role.
27 28 29 |
# File 'lib/discorb/role.rb', line 27 def mentionable @mentionable end |
#name -> String (readonly)
Returns The name of the role.
11 12 13 |
# File 'lib/discorb/role.rb', line 11 def name @name end |
#permissions -> Discorb::Permission (readonly)
Returns The permissions of the role.
15 16 17 |
# File 'lib/discorb/role.rb', line 15 def @permissions end |
#position -> Integer (readonly)
Returns The position of the role.
17 18 19 |
# File 'lib/discorb/role.rb', line 17 def position @position end |
Instance Method Details
#<=>(other) -> Integer
Compares two roles by their position.
71 72 73 74 75 |
# File 'lib/discorb/role.rb', line 71 def <=>(other) return nil unless other.is_a?(Role) @position <=> other.position end |
#color? -> Boolean
90 91 92 |
# File 'lib/discorb/role.rb', line 90 def color? @color != 0 end |
#delete(reason: nil) -> Async::Task<void> Also known as: destroy
Deletes the role.
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 |
# File 'lib/discorb/role.rb', line 186 def delete(reason: nil) Async do @client .http .request( Route.new( "/guilds/#{@guild.id}/roles/#{@id}", "//guilds/:guild_id/roles/:role_id", :delete ), {}, audit_log_reason: reason ) .wait end end |
#edit(name: Discorb::Unset, position: Discorb::Unset, color: Discorb::Unset, hoist: Discorb::Unset, mentionable: Discorb::Unset, icon: Discorb::Unset, reason: nil) -> Async::Task<void> Also known as: modify
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 role.
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 |
# File 'lib/discorb/role.rb', line 139 def edit( name: Discorb::Unset, position: Discorb::Unset, color: Discorb::Unset, hoist: Discorb::Unset, mentionable: Discorb::Unset, icon: Discorb::Unset, reason: nil ) Async do payload = {} payload[:name] = name if name != Discorb::Unset payload[:position] = position if position != Discorb::Unset payload[:color] = color.to_i if color != Discorb::Unset payload[:hoist] = hoist if hoist != Discorb::Unset payload[:mentionable] = mentionable if mentionable != Discorb::Unset if icon != Discorb::Unset if icon.is_a?(Discorb::Image) payload[:icon] = icon.to_s else payload[:unicode_emoji] = icon.to_s end end @client .http .request( Route.new( "/guilds/#{@guild.id}/roles/#{@id}", "//guilds/:guild_id/roles/:role_id", :patch ), payload, audit_log_reason: reason ) .wait end end |
#icon -> Object
60 61 62 |
# File 'lib/discorb/role.rb', line 60 def icon @custom_icon || @emoji end |
#inspect -> Object
94 95 96 |
# File 'lib/discorb/role.rb', line 94 def inspect "#<#{self.class} @#{@name} id=#{@id}>" end |
#mention -> Object
86 87 88 |
# File 'lib/discorb/role.rb', line 86 def mention "<@&#{@id}>" end |
#move(position, reason: nil) -> Async::Task<void>
Moves the role to a new position.
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 |
# File 'lib/discorb/role.rb', line 107 def move(position, reason: nil) Async do @client .http .request( Route.new( "/guilds/#{@guild.id}/roles", "//guilds/:guild_id/roles", :patch ), { id: @id, position: position }, audit_log_reason: reason ) .wait end end |
#tag -> Object Also known as:
205 206 207 |
# File 'lib/discorb/role.rb', line 205 def tag Tag.new(@tags) end |
#to_s -> String
Formats the role as a string.
82 83 84 |
# File 'lib/discorb/role.rb', line 82 def to_s "@#{@name}" end |