|
@ -1,3 +1,38 @@ |
|
|
|
|
|
""" |
|
|
|
|
|
Implementation of Steam client based on ``gevent`` |
|
|
|
|
|
|
|
|
|
|
|
Events |
|
|
|
|
|
^^^^^^ |
|
|
|
|
|
|
|
|
|
|
|
See `gevent-eventmitter <https://github.com/rossengeorgiev/gevent-eventemitter>`_ |
|
|
|
|
|
for details on how to work with events. |
|
|
|
|
|
|
|
|
|
|
|
| ``connected`` - when successful connection with a CM server is established |
|
|
|
|
|
| ``disconnected`` - when connection is lost |
|
|
|
|
|
| ``channel_secured`` - after channel encryption is complete, client can attempt to login now |
|
|
|
|
|
| ``error`` - after login failure |
|
|
|
|
|
| ``auth_code_required`` - either email code or 2FA code is needed for login |
|
|
|
|
|
| ``logged_on`` - after successful login, client can send messages |
|
|
|
|
|
| :class:`EMsg <steam.enums.emsg.EMsg>` - all messages are emitted with their ``EMsg`` |
|
|
|
|
|
|
|
|
|
|
|
Mixing can emitter additional events. See their docs pages for details. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Builtins |
|
|
|
|
|
^^^^^^^^ |
|
|
|
|
|
|
|
|
|
|
|
Additional features are located in separate submodules. |
|
|
|
|
|
All functionality from :doc:`bultins <api/steam.client.builtins>` is inherited by default. |
|
|
|
|
|
|
|
|
|
|
|
Mixins |
|
|
|
|
|
^^^^^^ |
|
|
|
|
|
|
|
|
|
|
|
Optional features are available as :doc:`mixins <api/steam.client.mixins>`. |
|
|
|
|
|
This allows the client to remain light yet flexible. |
|
|
|
|
|
|
|
|
|
|
|
API |
|
|
|
|
|
^^^ |
|
|
|
|
|
""" |
|
|
import os |
|
|
import os |
|
|
import logging |
|
|
import logging |
|
|
import gevent |
|
|
import gevent |
|
@ -16,12 +51,6 @@ from steam.client.builtins import BuiltinBase |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class SteamClient(CMClient, BuiltinBase): |
|
|
class SteamClient(CMClient, BuiltinBase): |
|
|
""" |
|
|
|
|
|
Implementation of Steam client based on ``gevent`` |
|
|
|
|
|
|
|
|
|
|
|
See `gevent-eventmitter <https://github.com/rossengeorgiev/gevent-eventemitter>`_ |
|
|
|
|
|
for details on how to work with events. |
|
|
|
|
|
""" |
|
|
|
|
|
_reconnect_backoff_c = 0 |
|
|
_reconnect_backoff_c = 0 |
|
|
current_jobid = 0 |
|
|
current_jobid = 0 |
|
|
credential_location = None #: location for sentry |
|
|
credential_location = None #: location for sentry |
|
|