Class: Discorb::Client
- Inherits:
-
Object
- Object
- Discorb::Client
- Includes:
- GatewayHandler
- Defined in:
- lib/discorb/client.rb
Overview
Class for connecting to the Discord server.
Instance Attribute Summary collapse
-
#allowed_mentions -> Discorb::AllowedMentions
readonly
The allowed mentions that the client is using.
- #api_version -> Integer? readonly
- #application -> Discorb::Application? readonly
-
#channels -> Discorb::Dictionary{Discorb::Snowflake => Discorb::Channel}
readonly
A dictionary of channels.
-
#emojis -> Discorb::Dictionary{Discorb::Snowflake => Discorb::Emoji}
readonly
A dictionary of emojis.
-
#guilds -> Discorb::Dictionary{Discorb::Snowflake => Discorb::Guild}
readonly
A dictionary of guilds.
-
#heartbeat_interval -> Integer
readonly
The heartbeat interval.
-
#intents -> Discorb::Intents
The intents that the client is currently using.
-
#internet -> Discorb::Internet
readonly
The internet client.
-
#log -> Discorb::Logger
readonly
The logger.
-
#messages -> Discorb::Dictionary{Discorb::Snowflake => Discorb::Message}
readonly
A dictionary of messages.
-
#token -> String
readonly
The token of the client.
-
#user -> Discorb::ClientUser
readonly
The client user.
-
#users -> Discorb::Dictionary{Discorb::Snowflake => Discorb::User}
readonly
A dictionary of users.
Instance Method Summary collapse
-
#dispatch(event_name, *args) -> Object
Dispatch an event.
-
#event_lock(event, timeout = nil, &check) -> Object
(also: #await)
Method to wait for a event.
-
#extend(mod) -> Object
Load the extension.
-
#fetch_application(force: false) -> Discorb::Application
Fetch webhook from ID.
-
#fetch_channel(id) -> Discorb::Channel
Fetch channel from ID.
-
#fetch_guild(id) -> Discorb::Guild
Fetch guild from ID.
-
#fetch_invite(code, with_count: false, with_expiration: false) -> Discorb::Invite
Fetch invite from code.
-
#fetch_nitro_sticker_packs -> Array<Discorb::Sticker::Pack>
Fetch nitro sticker pack from ID.
-
#fetch_user(id) -> Discorb::User
Fetch user from ID.
-
#initialize(allowed_mentions: nil, intents: nil, message_caches: 1000, log: nil, colorize_log: false, log_level: :info, wait_until_ready: true) -> Client
constructor
Initializes a new client.
- #inspect -> Object
-
#on(event_name, id: nil, **discriminator, &block) -> Discorb::Event
Registers an event handler.
-
#once(event_name, id: nil, **discriminator, &block) -> Discorb::Event
Almost same as #on, but only triggers the event once.
-
#remove_event(event_name, id) -> Object
Remove event by ID.
-
#run(token) -> Object
Starts the client.
-
#update_presence(activity = nil, status: nil) -> Object
(also: #change_presence)
Update presence of the client.
Constructor Details
#initialize(allowed_mentions: nil, intents: nil, message_caches: 1000, log: nil, colorize_log: false, log_level: :info, wait_until_ready: true) -> Client
Initializes a new client.
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
# File 'lib/discorb/client.rb', line 56 def initialize(allowed_mentions: nil, intents: nil, message_caches: 1000, log: nil, colorize_log: false, log_level: :info, wait_until_ready: true) @allowed_mentions = allowed_mentions || AllowedMentions.new(everyone: true, roles: true, users: true) @intents = (intents or Intents.default) @events = {} @api_version = nil @log = Logger.new(log, colorize_log, log_level) @user = nil @users = Discorb::Dictionary.new @channels = Discorb::Dictionary.new @guilds = Discorb::Dictionary.new(sort: ->(k) { k[0].to_i }) @emojis = Discorb::Dictionary.new @messages = Discorb::Dictionary.new(limit: ) @application = nil @last_s = nil @identify_presence = nil @wait_until_ready = wait_until_ready @ready = false @tasks = [] @conditions = {} end |
Instance Attribute Details
#allowed_mentions -> Discorb::AllowedMentions (readonly)
Returns The allowed mentions that the client is using.
29 30 31 |
# File 'lib/discorb/client.rb', line 29 def allowed_mentions @allowed_mentions end |
#api_version -> Integer? (readonly)
25 26 27 |
# File 'lib/discorb/client.rb', line 25 def api_version @api_version end |
#application -> Discorb::Application? (readonly)
18 19 20 |
# File 'lib/discorb/client.rb', line 18 def application @application end |
#channels -> Discorb::Dictionary{Discorb::Snowflake => Discorb::Channel} (readonly)
Returns A dictionary of channels.
37 38 39 |
# File 'lib/discorb/client.rb', line 37 def channels @channels end |
#emojis -> Discorb::Dictionary{Discorb::Snowflake => Discorb::Emoji} (readonly)
Returns A dictionary of emojis.
39 40 41 |
# File 'lib/discorb/client.rb', line 39 def emojis @emojis end |
#guilds -> Discorb::Dictionary{Discorb::Snowflake => Discorb::Guild} (readonly)
Returns A dictionary of guilds.
33 34 35 |
# File 'lib/discorb/client.rb', line 33 def guilds @guilds end |
#heartbeat_interval -> Integer (readonly)
Returns The heartbeat interval.
22 23 24 |
# File 'lib/discorb/client.rb', line 22 def heartbeat_interval @heartbeat_interval end |
#intents -> Discorb::Intents
Returns The intents that the client is currently using.
15 16 17 |
# File 'lib/discorb/client.rb', line 15 def intents @intents end |
#internet -> Discorb::Internet (readonly)
Returns The internet client.
20 21 22 |
# File 'lib/discorb/client.rb', line 20 def internet @internet end |
#log -> Discorb::Logger (readonly)
Returns The logger.
43 44 45 |
# File 'lib/discorb/client.rb', line 43 def log @log end |
#messages -> Discorb::Dictionary{Discorb::Snowflake => Discorb::Message} (readonly)
Returns A dictionary of messages.
41 42 43 |
# File 'lib/discorb/client.rb', line 41 def @messages end |
#token -> String (readonly)
Returns The token of the client.
27 28 29 |
# File 'lib/discorb/client.rb', line 27 def token @token end |
#user -> Discorb::ClientUser (readonly)
Returns The client user.
31 32 33 |
# File 'lib/discorb/client.rb', line 31 def user @user end |
#users -> Discorb::Dictionary{Discorb::Snowflake => Discorb::User} (readonly)
Returns A dictionary of users.
35 36 37 |
# File 'lib/discorb/client.rb', line 35 def users @users end |
Instance Method Details
#dispatch(event_name, *args) -> Object
Dispatch an event.
126 127 128 129 130 131 132 133 134 135 136 137 138 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 |
# File 'lib/discorb/client.rb', line 126 def dispatch(event_name, *args) Async do |_task| if (conditions = @conditions[event_name]) ids = Set[*conditions.map(&:first).map(&:object_id)] conditions.delete_if do |condition| next unless ids.include?(condition.first.object_id) check_result = condition[1].nil? || condition[1].call(*args) if check_result condition.first.signal(args) true else false end end end if @events[event_name].nil? @log.debug "Event #{event_name} doesn't have any proc, skipping" next end @log.debug "Dispatching event #{event_name}" @events[event_name].each do |block| lambda { |event_args| Async(annotation: "Discorb event: #{event_name}") do |task| @events[event_name].delete(block) if block.discriminator[:once] block.call(task, *event_args) @log.debug "Dispatched proc with ID #{block.id.inspect}" rescue StandardError, ScriptError => e = "An error occurred while dispatching proc with ID #{block.id.inspect}\n#{e.}" dispatch(:error, event_name, event_args, e) if @log.out @log.error else warn end end }.call(args) end end end |
#event_lock(event, timeout = nil, &check) -> Object Also known as: await
Method to wait for a event.
317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 |
# File 'lib/discorb/client.rb', line 317 def event_lock(event, timeout = nil, &check) Async do |task| condition = Async::Condition.new @conditions[event] ||= [] @conditions[event] << [condition, check] if timeout.nil? value = condition.wait else timeout_task = task.with_timeout(timeout) do condition.wait rescue Async::TimeoutError @conditions[event].delete_if { |c| c.first == condition } raise Discorb::TimeoutError, "Timeout waiting for event #{event}", cause: nil end value = timeout_task end value.length <= 1 ? value.first : value end end |
#extend(mod) -> Object
Load the extension.
348 349 350 351 352 353 354 355 356 357 358 359 |
# File 'lib/discorb/client.rb', line 348 def extend(mod) if mod.respond_to?(:events) mod.events.each do |name, events| @events[name] = [] if @events[name].nil? events.each do |event| @events[name] << event end end mod.client = self end super(mod) end |
#fetch_application(force: false) -> Discorb::Application
This is an asynchronous method, it will return a Async::Task
object. Use Async::Task#wait
to get the result.
This method calls HTTP request.
Fetch webhook from ID. If application was cached, it will be used.
259 260 261 262 263 264 265 266 267 |
# File 'lib/discorb/client.rb', line 259 def fetch_application(force: false) Async do next @application if @application && !force _resp, data = internet.get("/oauth2/applications/@me").wait @application = Application.new(self, data) @application end end |
#fetch_channel(id) -> Discorb::Channel
This is an asynchronous method, it will return a Async::Task
object. Use Async::Task#wait
to get the result.
This method calls HTTP request.
Fetch channel from ID.
206 207 208 209 210 211 |
# File 'lib/discorb/client.rb', line 206 def fetch_channel(id) Async do _resp, data = internet.get("/channels/#{id}").wait Channel.make_channel(self, data) end end |
#fetch_guild(id) -> Discorb::Guild
This is an asynchronous method, it will return a Async::Task
object. Use Async::Task#wait
to get the result.
This method calls HTTP request.
Fetch guild from ID.
224 225 226 227 228 229 |
# File 'lib/discorb/client.rb', line 224 def fetch_guild(id) Async do _resp, data = internet.get("/guilds/#{id}").wait Guild.new(self, data, false) end end |
#fetch_invite(code, with_count: false, with_expiration: false) -> Discorb::Invite
This is an asynchronous method, it will return a Async::Task
object. Use Async::Task#wait
to get the result.
This method calls HTTP request.
Fetch invite from code.
242 243 244 245 246 247 |
# File 'lib/discorb/client.rb', line 242 def fetch_invite(code, with_count: false, with_expiration: false) Async do _resp, data = internet.get("/invites/#{code}?with_count=#{with_count}&with_expiration=#{with_expiration}").wait Invite.new(self, data, false) end end |
#fetch_nitro_sticker_packs -> Array<Discorb::Sticker::Pack>
This is an asynchronous method, it will return a Async::Task
object. Use Async::Task#wait
to get the result.
This method calls HTTP request.
Fetch nitro sticker pack from ID.
276 277 278 279 280 281 |
# File 'lib/discorb/client.rb', line 276 def fetch_nitro_sticker_packs Async do _resp, data = internet.get("/stickers-packs").wait data.map { |pack| Sticker::Pack.new(self, pack) } end end |
#fetch_user(id) -> Discorb::User
This is an asynchronous method, it will return a Async::Task
object. Use Async::Task#wait
to get the result.
This method calls HTTP request.
Fetch user from ID.
188 189 190 191 192 193 |
# File 'lib/discorb/client.rb', line 188 def fetch_user(id) Async do _resp, data = internet.get("/users/#{id}").wait User.new(self, data) end end |
#inspect -> Object
339 340 341 |
# File 'lib/discorb/client.rb', line 339 def inspect "#<#{self.class} user=\"#{user}\">" end |
#on(event_name, id: nil, **discriminator, &block) -> Discorb::Event
Registers an event handler.
88 89 90 91 92 93 |
# File 'lib/discorb/client.rb', line 88 def on(event_name, id: nil, **discriminator, &block) ne = Event.new(block, id, discriminator) @events[event_name] ||= [] @events[event_name] << ne ne end |
#once(event_name, id: nil, **discriminator, &block) -> Discorb::Event
Almost same as #on, but only triggers the event once.
102 103 104 105 106 107 108 |
# File 'lib/discorb/client.rb', line 102 def once(event_name, id: nil, **discriminator, &block) discriminator[:once] = true ne = Event.new(block, id, discriminator) @events[event_name] ||= [] @events[event_name] << ne ne end |
#remove_event(event_name, id) -> Object
Remove event by ID.
116 117 118 |
# File 'lib/discorb/client.rb', line 116 def remove_event(event_name, id) @events[event_name].delete_if { |e| e.id == id } end |
#run(token) -> Object
Starts the client.
172 173 174 175 |
# File 'lib/discorb/client.rb', line 172 def run(token) @token = token.to_s connect_gateway(true) end |
#update_presence(activity = nil, status: nil) -> Object Also known as: change_presence
Update presence of the client.
289 290 291 292 293 294 295 296 297 298 299 300 301 302 |
# File 'lib/discorb/client.rb', line 289 def update_presence(activity = nil, status: nil) payload = {} if !activity.nil? payload[:activities] = [activity.to_hash] end payload[:status] = status unless status.nil? if @connection Async do |_task| send_gateway(3, **payload) end else @identify_presence = payload end end |