From a07acbaee94b245e626fbd3c7b83e83aa5512242 Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Wed, 22 Jun 2016 09:31:36 +0100 Subject: [PATCH] SteamClient: added relogin method --- steam/client/__init__.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/steam/client/__init__.py b/steam/client/__init__.py index d9609b2..3ac2ea3 100644 --- a/steam/client/__init__.py +++ b/steam/client/__init__.py @@ -165,6 +165,9 @@ class SteamClient(CMClient, BuiltinBase): # CM kills the connection on error anyway self.disconnect() + if result == EResult.InvalidPassword: + self.login_key = None + if result in (EResult.AccountLogonDenied, EResult.InvalidLoginAuthCode, EResult.AccountLoginDeniedNeedTwoFactor, @@ -383,6 +386,28 @@ class SteamClient(CMClient, BuiltinBase): if not self.channel_secured: self.wait_event("channel_secured") + @property + def can_relogin(self): + """``True`` when the client has the nessesary data for :meth:`relogin`""" + return bool(self.username) and bool(self.login_key) + + def relogin(self): + """Login without specifiying credentials. Can be used after the client instance has + already been logged on once before and has obtained :attr:`login_key`. + Listen for the ``new_login_key`` event. + + .. note:: + Only works when :attr:`can_relogin` is ``True``. + + .. code:: python + + if client.can_relogin: client.relogin() + else: + client.login(user, pass) + """ + if self.can_relogin: + self.login(self.username, '', self.login_key) + def login(self, username, password='', login_key=None, auth_code=None, two_factor_code=None): """ Login as a specific user