Browse Source

guard: handle no response for steam time

* get_time_offset() now returns `None` when http request fails
* SteamAuthenticator has a property to determine whether to realign
  time after a certain interval of time
pull/41/head
Rossen Georgiev 9 years ago
parent
commit
af0b709f0f
  1. 20
      steam/guard.py

20
steam/guard.py

@ -56,6 +56,8 @@ class SteamAuthenticator(object):
_finalize_attempts = 5 _finalize_attempts = 5
medium = None #: instance of :class:`.MobileWebAuth` or :class:`.SteamClient` medium = None #: instance of :class:`.MobileWebAuth` or :class:`.SteamClient`
steam_time_offset = None #: offset from steam server time steam_time_offset = None #: offset from steam server time
align_time_every = 0 #: how often to align time with Steam (``0`` never, otherwise interval in seconds)
_offset_last_check = 0
secrets = None #: :class:`dict` with authenticator secrets secrets = None #: :class:`dict` with authenticator secrets
def __init__(self, secrets=None, medium=None): def __init__(self, secrets=None, medium=None):
@ -78,9 +80,15 @@ class SteamAuthenticator(object):
:return: Steam aligned timestamp :return: Steam aligned timestamp
:rtype: int :rtype: int
""" """
if self.steam_time_offset is None: if (self.steam_time_offset is None
or (self.align_time_every and (time() - self._offset_last_check) > self.align_time_every)
):
self.steam_time_offset = get_time_offset() self.steam_time_offset = get_time_offset()
return int(time() + self.steam_time_offset)
if self.steam_time_offset is not None:
self._offset_last_check = time()
return int(time() + (self.steam_time_offset or 0))
def get_code(self, timestamp=None): def get_code(self, timestamp=None):
""" """
@ -244,7 +252,7 @@ def generate_twofactor_code(shared_secret):
:return: steam two factor code :return: steam two factor code
:rtype: str :rtype: str
""" """
return generate_twofactor_code_for_time(shared_secret, time() + get_time_offset()) return generate_twofactor_code_for_time(shared_secret, time() + (get_time_offset() or 0))
def generate_twofactor_code_for_time(shared_secret, timestamp): def generate_twofactor_code_for_time(shared_secret, timestamp):
"""Generate Steam 2FA code for timestamp """Generate Steam 2FA code for timestamp
@ -297,13 +305,13 @@ def generate_confirmation_key(identity_secret, tag, timestamp):
def get_time_offset(): def get_time_offset():
"""Get time offset from steam server time via WebAPI """Get time offset from steam server time via WebAPI
:return: time offset :return: time offset (``None`` when Steam WebAPI fails to respond)
:rtype: int :rtype: :class:`int`, :class:`None`
""" """
try: try:
resp = webapi.post('ITwoFactorService', 'QueryTime', 1, params={'http_timeout': 10}) resp = webapi.post('ITwoFactorService', 'QueryTime', 1, params={'http_timeout': 10})
except: except:
return 0 return None
ts = int(time()) ts = int(time())
return int(resp.get('response', {}).get('server_time', ts)) - ts return int(resp.get('response', {}).get('server_time', ts)) - ts

Loading…
Cancel
Save