Class: Discorb::Client
- Inherits:
-
Object
- Object
- Discorb::Client
- Includes:
- ApplicationCommand::Handler, Gateway::Handler
- 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.
-
#commands -> Array<Discorb::ApplicationCommand::Command>
readonly
The commands that the client is using.
-
#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.
-
#http -> Discorb::HTTP
readonly
The http client.
-
#intents -> Discorb::Intents
The intents that the client is currently using.
-
#log -> Discorb::Logger
readonly
The logger.
-
#messages -> Discorb::Dictionary{Discorb::Snowflake => Discorb::Message}
readonly
A dictionary of messages.
- #ping -> Float? readonly
-
#session_id -> Integer
readonly
The session ID of connection.
-
#status -> :initialized, ...
readonly
The status of the client.
-
#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
-
#close! -> Object
Stops the client.
-
#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) -> Async::Task<Discorb::Application>
Fetch webhook from ID.
-
#fetch_channel(id) -> Async::Task<Discorb::Channel>
Fetch channel from ID.
-
#fetch_guild(id) -> Async::Task<Discorb::Guild>
Fetch guild from ID.
-
#fetch_invite(code, with_count: false, with_expiration: false) -> Async::Task<Discorb::Invite>
Fetch invite from code.
-
#fetch_nitro_sticker_packs -> Async::Task<Array<Discorb::Sticker::Pack>>
Fetch nitro sticker pack from ID.
-
#fetch_user(id) -> Async::Task<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, fetch_member: false) -> Client
constructor
Initializes a new client.
- #inspect -> Object
-
#on(event_name, id: nil, **metadata, &block) -> Discorb::Event
Registers an event handler.
-
#once(event_name, id: nil, **metadata, &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 = nil) -> Object
Starts the client.
-
#update_presence(activity = nil, status: nil, afk: false) -> Object
(also: #change_presence)
Update presence of the client.
Methods included from ApplicationCommand::Handler
#message_command, #setup_commands, #slash, #slash_group, #user_command
Constructor Details
#initialize(allowed_mentions: nil, intents: nil, message_caches: 1000, log: nil, colorize_log: false, log_level: :info, wait_until_ready: true, fetch_member: false) -> Client
Initializes a new client.
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 |
# File 'lib/discorb/client.rb', line 70 def initialize( allowed_mentions: nil, intents: nil, message_caches: 1000, log: nil, colorize_log: false, log_level: :info, wait_until_ready: true, fetch_member: false ) @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 = {} @commands = [] @bottom_commands = [] @status = :initialized @fetch_member = fetch_member set_default_events end |
Instance Attribute Details
#allowed_mentions -> Discorb::AllowedMentions (readonly)
Returns The allowed mentions that the client is using.
30 31 32 |
# File 'lib/discorb/client.rb', line 30 def allowed_mentions @allowed_mentions end |
#api_version -> Integer? (readonly)
26 27 28 |
# File 'lib/discorb/client.rb', line 26 def api_version @api_version end |
#application -> Discorb::Application? (readonly)
19 20 21 |
# File 'lib/discorb/client.rb', line 19 def application @application end |
#channels -> Discorb::Dictionary{Discorb::Snowflake => Discorb::Channel} (readonly)
Returns A dictionary of channels.
38 39 40 |
# File 'lib/discorb/client.rb', line 38 def channels @channels end |
#commands -> Array<Discorb::ApplicationCommand::Command> (readonly)
Returns The commands that the client is using.
46 47 48 |
# File 'lib/discorb/client.rb', line 46 def commands @commands end |
#emojis -> Discorb::Dictionary{Discorb::Snowflake => Discorb::Emoji} (readonly)
Returns A dictionary of emojis.
40 41 42 |
# File 'lib/discorb/client.rb', line 40 def emojis @emojis end |
#guilds -> Discorb::Dictionary{Discorb::Snowflake => Discorb::Guild} (readonly)
Returns A dictionary of guilds.
34 35 36 |
# File 'lib/discorb/client.rb', line 34 def guilds @guilds end |
#heartbeat_interval -> Integer (readonly)
Returns The heartbeat interval.
23 24 25 |
# File 'lib/discorb/client.rb', line 23 def heartbeat_interval @heartbeat_interval end |
#http -> Discorb::HTTP (readonly)
Returns The http client.
21 22 23 |
# File 'lib/discorb/client.rb', line 21 def http @http end |
#intents -> Discorb::Intents
Returns The intents that the client is currently using.
16 17 18 |
# File 'lib/discorb/client.rb', line 16 def intents @intents end |
#log -> Discorb::Logger (readonly)
Returns The logger.
44 45 46 |
# File 'lib/discorb/client.rb', line 44 def log @log end |
#messages -> Discorb::Dictionary{Discorb::Snowflake => Discorb::Message} (readonly)
Returns A dictionary of messages.
42 43 44 |
# File 'lib/discorb/client.rb', line 42 def @messages end |
#ping -> Float? (readonly)
50 51 52 |
# File 'lib/discorb/client.rb', line 50 def ping @ping end |
#session_id -> Integer (readonly)
Returns The session ID of connection.
54 55 56 |
# File 'lib/discorb/client.rb', line 54 def session_id @session_id end |
#status -> :initialized, ... (readonly)
Returns The status of the client.
52 53 54 |
# File 'lib/discorb/client.rb', line 52 def status @status end |
#token -> String (readonly)
Returns The token of the client.
28 29 30 |
# File 'lib/discorb/client.rb', line 28 def token @token end |
#user -> Discorb::ClientUser (readonly)
Returns The client user.
32 33 34 |
# File 'lib/discorb/client.rb', line 32 def user @user end |
#users -> Discorb::Dictionary{Discorb::Snowflake => Discorb::User} (readonly)
Returns A dictionary of users.
36 37 38 |
# File 'lib/discorb/client.rb', line 36 def users @users end |
Instance Method Details
#close! -> Object
Stops the client.
461 462 463 464 465 466 |
# File 'lib/discorb/client.rb', line 461 def close! @connection.send_close @tasks.each(&:stop) @status = :closed @close_condition.signal end |
#dispatch(event_name, *args) -> Object
Dispatch an event.
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 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 |
# File 'lib/discorb/client.rb', line 147 def dispatch(event_name, *args) Async do 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 events = @events[event_name].dup || [] if respond_to?("on_" + event_name.to_s) event_method = method("on_" + event_name.to_s) class << event_method def id "method" end end events << event_method end if events.nil? @log.debug "Event #{event_name} doesn't have any proc, skipping" next end @log.debug "Dispatching event #{event_name}" events.each do |block| Async do Async(annotation: "Discorb event: #{event_name}") do |task| if block.is_a?(Discorb::Event) @events[event_name].delete(block) if block.[:once] end block.call(*args) @log.debug "Dispatched proc with ID #{block.id.inspect}" rescue StandardError, ScriptError => e dispatch(:error, event_name, args, e) end end end end end |
#event_lock(event, timeout = nil, &check) -> Object Also known as: await
Method to wait for a event.
340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 |
# File 'lib/discorb/client.rb', line 340 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.
371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 |
# File 'lib/discorb/client.rb', line 371 def extend(mod) if mod.respond_to?(:events) @events.each_value do |event| event.delete_if { |c| c.[:extension] == mod.name } end mod.events.each do |name, events| @events[name] ||= [] @events[name].delete_if { |c| c.[:override] } events.each do |event| @events[name] << event end end @commands.delete_if do |cmd| cmd.respond_to? :extension and cmd.extension == mod.name end mod.commands.each do |cmd| cmd.define_singleton_method(:extension) { mod.name } @commands << cmd end @bottom_commands += mod.bottom_commands mod.client = self end super(mod) end |
#fetch_application(force: false) -> Async::Task<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.
276 277 278 279 280 281 282 283 284 |
# File 'lib/discorb/client.rb', line 276 def fetch_application(force: false) Async do next @application if @application && !force _resp, data = http.get("/oauth2/applications/@me").wait @application = Application.new(self, data) @application end end |
#fetch_channel(id) -> Async::Task<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.
223 224 225 226 227 228 |
# File 'lib/discorb/client.rb', line 223 def fetch_channel(id) Async do _resp, data = http.get("/channels/#{id}").wait Channel.make_channel(self, data) end end |
#fetch_guild(id) -> Async::Task<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.
241 242 243 244 245 246 |
# File 'lib/discorb/client.rb', line 241 def fetch_guild(id) Async do _resp, data = http.get("/guilds/#{id}").wait Guild.new(self, data, false) end end |
#fetch_invite(code, with_count: false, with_expiration: false) -> Async::Task<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.
259 260 261 262 263 264 |
# File 'lib/discorb/client.rb', line 259 def fetch_invite(code, with_count: false, with_expiration: false) Async do _resp, data = http.get("/invites/#{code}?with_count=#{with_count}&with_expiration=#{with_expiration}").wait Invite.new(self, data, false) end end |
#fetch_nitro_sticker_packs -> Async::Task<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.
293 294 295 296 297 298 |
# File 'lib/discorb/client.rb', line 293 def fetch_nitro_sticker_packs Async do _resp, data = http.get("/stickers-packs").wait data.map { |pack| Sticker::Pack.new(self, pack) } end end |
#fetch_user(id) -> Async::Task<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.
205 206 207 208 209 210 |
# File 'lib/discorb/client.rb', line 205 def fetch_user(id) Async do _resp, data = http.get("/users/#{id}").wait User.new(self, data) end end |
#inspect -> Object
362 363 364 |
# File 'lib/discorb/client.rb', line 362 def inspect "#<#{self.class} user=\"#{user}\">" end |
#on(event_name, id: nil, **metadata, &block) -> Discorb::Event
Registers an event handler.
111 112 113 114 115 116 117 |
# File 'lib/discorb/client.rb', line 111 def on(event_name, id: nil, **, &block) ne = Event.new(block, id, ) @events[event_name] ||= [] @events[event_name].delete_if { |e| e.[:override] } @events[event_name] << ne ne end |
#once(event_name, id: nil, **metadata, &block) -> Discorb::Event
Almost same as #on, but only triggers the event once.
126 127 128 129 |
# File 'lib/discorb/client.rb', line 126 def once(event_name, id: nil, **, &block) [:once] = true on(event_name, id: id, **, &block) end |
#remove_event(event_name, id) -> Object
Remove event by ID.
137 138 139 |
# File 'lib/discorb/client.rb', line 137 def remove_event(event_name, id) @events[event_name].delete_if { |e| e.id == id } end |
#run(token = nil) -> Object
This method behavior will change by CLI.
If the token is nil, you should use discorb run
with the -t
or --token
option.
Starts the client.
408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 |
# File 'lib/discorb/client.rb', line 408 def run(token = nil) token ||= ENV["DISCORB_CLI_TOKEN"] raise ArgumentError, "Token is not specified, and -t/--token is not specified" if token.nil? case ENV["DISCORB_CLI_FLAG"] when nil start_client(token) when "run" require "json" = JSON.parse(ENV["DISCORB_CLI_OPTIONS"], symbolize_names: true) @daemon = [:daemon] setup_commands(token) if [:setup] if [:log_level] if [:log_level] == "none" @log.out = nil else @log.out = case [:log_file] when nil, "stderr" $stderr when "stdout" $stdout else ::File.open([:log_file], "a") end @log.level = [:log_level].to_sym @log.colorize_log = case [:log_color] when nil if @log.out == $stdout || @log.out == $stderr true else false end when true, false [:log_color] end end end start_client(token) when "setup" guild_ids = "global" if guilds = ENV["DISCORB_SETUP_GUILDS"] guild_ids = guilds.split(",") end if guild_ids == ["global"] guild_ids = false end setup_commands(token, guild_ids: guild_ids).wait end end |
#update_presence(activity = nil, status: nil, afk: false) -> Object Also known as: change_presence
Update presence of the client.
307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 |
# File 'lib/discorb/client.rb', line 307 def update_presence(activity = nil, status: nil, afk: false) payload = { activities: [], status: status, afk: nil, since: nil, } if !activity.nil? payload[:activities] = [activity.to_hash] end payload[:status] = status unless status.nil? if @connection Async do send_gateway(3, **payload) end else @identify_presence = payload end end |