Browse Source

SteamClient: login() now returns LogOn eresult

pull/55/head
Rossen Georgiev 9 years ago
parent
commit
610de3dd8a
  1. 24
      recipes/1.Login/persistent_login.py
  2. 18
      steam/client/__init__.py

24
recipes/1.Login/persistent_login.py

@ -9,11 +9,10 @@ LOG = logging.getLogger()
LOG.info("Persistent logon recipe") LOG.info("Persistent logon recipe")
LOG.info("-"*30) LOG.info("-"*30)
logon_details = { LOGON_DETAILS = {
"username": raw_input("Steam user: "), "username": raw_input("Steam user: "),
"password": getpass("Password: "), "password": getpass("Password: "),
} }
logged_on_once = False
client = SteamClient() client = SteamClient()
client.set_credential_location(".") client.set_credential_location(".")
@ -26,10 +25,10 @@ def handle_error(result):
def send_login(): def send_login():
if client.relogin_available: if client.relogin_available:
client.relogin() client.relogin()
else:
client.login(**logon_details) @client.on("new_login_key")
logon_details.pop('auth_code', None) def got_login_key():
logon_details.pop('two_factor_code', None) LOG.info("got new login key")
@client.on("connected") @client.on("connected")
def handle_connected(): def handle_connected():
@ -43,7 +42,6 @@ def handle_reconnect(delay):
def handle_disconnect(): def handle_disconnect():
LOG.info("Disconnected.") LOG.info("Disconnected.")
if logged_on_once:
LOG.info("Reconnecting...") LOG.info("Reconnecting...")
client.reconnect(maxdelay=30) client.reconnect(maxdelay=30)
@ -54,18 +52,13 @@ def auth_code_prompt(is_2fa, mismatch):
if is_2fa: if is_2fa:
code = raw_input("Enter 2FA Code: ") code = raw_input("Enter 2FA Code: ")
logon_details['two_factor_code'] = code client.login(two_factor_code=code, **LOGON_DETAILS)
else: else:
code = raw_input("Enter Email Code: ") code = raw_input("Enter Email Code: ")
logon_details['auth_code'] = code client.login(auth_code=code, **LOGON_DETAILS)
client.connect()
@client.on("logged_on") @client.on("logged_on")
def handle_after_logon(): def handle_after_logon():
global logged_on_once
logged_on_once = True
LOG.info("-"*30) LOG.info("-"*30)
LOG.info("Logged on as: %s", client.user.name) LOG.info("Logged on as: %s", client.user.name)
LOG.info("Community profile: %s", client.steam_id.community_url) LOG.info("Community profile: %s", client.steam_id.community_url)
@ -76,10 +69,9 @@ def handle_after_logon():
try: try:
client.connect() client.login(**LOGON_DETAILS)
client.run_forever() client.run_forever()
except KeyboardInterrupt: except KeyboardInterrupt:
if client.connected: if client.connected:
logged_on_once = False
LOG.info("Logout") LOG.info("Logout")
client.logout() client.logout()

18
steam/client/__init__.py

@ -428,8 +428,7 @@ class SteamClient(CMClient, BuiltinBase):
self.login(self.username, '', self.login_key) self.login(self.username, '', self.login_key)
def login(self, username, password='', login_key=None, auth_code=None, two_factor_code=None): def login(self, username, password='', login_key=None, auth_code=None, two_factor_code=None):
""" """Login as a specific user
Login as a specific user
:param username: username :param username: username
:type username: :class:`str` :type username: :class:`str`
@ -441,6 +440,8 @@ class SteamClient(CMClient, BuiltinBase):
:type auth_code: :class:`str` :type auth_code: :class:`str`
:param two_factor_code: 2FA authentication code :param two_factor_code: 2FA authentication code
:type two_factor_code: :class:`str` :type two_factor_code: :class:`str`
:return: logon result, see `CMsgClientLogonResponse.eresult <https://github.com/ValvePython/steam/blob/513c68ca081dc9409df932ad86c66100164380a6/protobufs/steammessages_clientserver.proto#L95-L118>`_
:rtype: :class:`.EResult`
.. note:: .. note::
Failure to login will result in the server dropping the connection, ``error`` event is fired Failure to login will result in the server dropping the connection, ``error`` event is fired
@ -498,9 +499,14 @@ class SteamClient(CMClient, BuiltinBase):
self.send(message) self.send(message)
resp = self.wait_msg(EMsg.ClientLogOnResponse, timeout=30)
return EResult(resp.body.eresult) if resp else EResult.Fail
def anonymous_login(self): def anonymous_login(self):
""" """Login as anonymous user
Login as anonymous user
:return: logon result, see `CMsgClientLogonResponse.eresult <https://github.com/ValvePython/steam/blob/513c68ca081dc9409df932ad86c66100164380a6/protobufs/steammessages_clientserver.proto#L95-L118>`_
:rtype: :class:`.EResult`
""" """
self._LOG.debug("Attempting Anonymous login") self._LOG.debug("Attempting Anonymous login")
@ -514,6 +520,9 @@ class SteamClient(CMClient, BuiltinBase):
message.body.protocol_version = 65579 message.body.protocol_version = 65579
self.send(message) self.send(message)
resp = self.wait_msg(EMsg.ClientLogOnResponse, timeout=30)
return EResult(resp.body.eresult) if resp else EResult.Fail
def logout(self): def logout(self):
""" """
Logout from steam. Doesn't nothing if not logged on. Logout from steam. Doesn't nothing if not logged on.
@ -525,6 +534,7 @@ class SteamClient(CMClient, BuiltinBase):
self.logged_on = False self.logged_on = False
self.send(MsgProto(EMsg.ClientLogOff)) self.send(MsgProto(EMsg.ClientLogOff))
self.wait_event('disconnected') self.wait_event('disconnected')
gevent.idle()
def run_forever(self): def run_forever(self):
""" """

Loading…
Cancel
Save