You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
104 lines
3.2 KiB
104 lines
3.2 KiB
import gevent
|
|
|
|
from holster.emitter import Emitter
|
|
|
|
from disco.state import State
|
|
from disco.api.client import APIClient
|
|
from disco.gateway.client import GatewayClient
|
|
from disco.util.logging import LoggingClass
|
|
from disco.util.backdoor import DiscoBackdoorServer
|
|
|
|
|
|
class ClientConfig(LoggingClass):
|
|
"""
|
|
Configuration for the :class:`Client`.
|
|
|
|
Attributes
|
|
----------
|
|
token : str
|
|
Discord authentication token, ca be validated using the
|
|
:func:`disco.util.token.is_valid_token` function.
|
|
shard_id : int
|
|
The shard ID for the current client instance.
|
|
shard_count : int
|
|
The total count of shards running.
|
|
manhole_enable : bool
|
|
Whether to enable the manhole (e.g. console backdoor server) utility.
|
|
manhole_bind : tuple(str, int)
|
|
A (host, port) combination which the manhole server will bind to (if its
|
|
enabled using :attr:`manhole_enable`).
|
|
encoding_cls : class
|
|
The class to use for encoding/decoding data from websockets.
|
|
"""
|
|
|
|
token = ""
|
|
shard_id = 0
|
|
shard_count = 1
|
|
|
|
manhole_enable = True
|
|
manhole_bind = ('127.0.0.1', 8484)
|
|
|
|
encoding_cls = None
|
|
|
|
|
|
class Client(object):
|
|
"""
|
|
Class representing the base entry point that should be used in almost all
|
|
implementation cases. This class wraps the functionality of both the REST API
|
|
(:class:`disco.api.client.APIClient`) and the realtime gateway API
|
|
(:class:`disco.gateway.client.GatewayClient`).
|
|
|
|
Parameters
|
|
----------
|
|
config : :class:`ClientConfig`
|
|
Configuration for this client instance.
|
|
|
|
Attributes
|
|
----------
|
|
config : :class:`ClientConfig`
|
|
The runtime configuration for this client.
|
|
events : :class:`Emitter`
|
|
An emitter which emits Gateway events.
|
|
packets : :class:`Emitter`
|
|
An emitter which emits Gateway packets.
|
|
state : :class:`State`
|
|
The state tracking object.
|
|
api : :class:`APIClient`
|
|
The API client.
|
|
gw : :class:`GatewayClient`
|
|
The gateway client.
|
|
manhole_locals : dict
|
|
Dictionary of local variables for each manhole connection. This can be
|
|
modified to add/modify local variables.
|
|
manhole : Optional[:class:`BackdoorServer`]
|
|
Gevent backdoor server (if the manhole is enabled).
|
|
"""
|
|
def __init__(self, config):
|
|
super(Client, self).__init__()
|
|
self.config = config
|
|
|
|
self.events = Emitter(gevent.spawn)
|
|
self.packets = Emitter(gevent.spawn)
|
|
|
|
self.state = State(self)
|
|
self.api = APIClient(self)
|
|
self.gw = GatewayClient(self, self.config.encoding_cls)
|
|
|
|
if self.config.manhole_enable:
|
|
self.manhole_locals = {}
|
|
self.manhole = DiscoBackdoorServer(self.config.manhole_bind,
|
|
banner='Disco Manhole',
|
|
localf=lambda: self.manhole_locals)
|
|
self.manhole.start()
|
|
|
|
def run(self):
|
|
"""
|
|
Run the client (e.g. the :class:`GatewayClient`) in a new greenlet
|
|
"""
|
|
return gevent.spawn(self.gw.run)
|
|
|
|
def run_forever(self):
|
|
"""
|
|
Run the client (e.g. the :class:`GatewayClient`) in the current greenlet
|
|
"""
|
|
return self.gw.run()
|
|
|