Fix valid auth_key never being saved after switching DC

This commit is contained in:
Lonami Exo
2018-11-03 18:53:26 +01:00
parent 0fc97a3e8c
commit cdbd1f6193
3 changed files with 16 additions and 3 deletions

View File

@@ -61,6 +61,7 @@ class MTProtoSender:
"""
def __init__(self, auth_key, loop, *,
retries=5, delay=1, auto_reconnect=True, connect_timeout=None,
auth_key_callback=None,
update_callback=None, auto_reconnect_callback=None):
self._connection = None
self._loop = loop
@@ -68,6 +69,7 @@ class MTProtoSender:
self._delay = delay
self._auto_reconnect = auto_reconnect
self._connect_timeout = connect_timeout
self._auth_key_callback = auth_key_callback
self._update_callback = update_callback
self._auto_reconnect_callback = auto_reconnect_callback
@@ -232,6 +234,13 @@ class MTProtoSender:
self.auth_key.key, self._state.time_offset =\
await authenticator.do_authentication(plain)
# This is *EXTREMELY* important since we don't control
# external references to the authorization key, we must
# notify whenever we change it. This is crucial when we
# switch to different data centers.
if self._auth_key_callback:
self._auth_key_callback(self.auth_key)
break
except (SecurityError, AssertionError) as e:
__log__.warning('Attempt {} at new auth_key failed: {}'
@@ -420,6 +429,9 @@ class MTProtoSender:
__log__.warning('Invalid buffer %s', e)
self.auth_key.key = None
if self._auth_key_callback:
self._auth_key_callback(None)
self._start_reconnect()
return
except Exception: