Browse Source

SC: get_web methods will get new nonce when called

pull/41/head
Rossen Georgiev 9 years ago
parent
commit
3ab6c14fb4
  1. 15
      steam/client/builtins/web.py
  2. 4
      steam/core/cm.py

15
steam/client/builtins/web.py

@ -1,9 +1,10 @@
""" """
Web related features Web related features
""" """
from binascii import hexlify
from steam import webapi from steam import webapi
from steam.core.crypto import generate_session_key, symmetric_encrypt, sha1_hash, random_bytes from steam.core.msg import MsgProto
from steam.enums.emsg import EMsg
from steam.core.crypto import generate_session_key, symmetric_encrypt
from steam.util.web import make_requests_session from steam.util.web import make_requests_session
@ -20,15 +21,18 @@ class Web(object):
:return: dict with authentication cookies :return: dict with authentication cookies
:rtype: :class:`dict`, :class:`None` :rtype: :class:`dict`, :class:`None`
""" """
if not self.logged_on: if not self.logged_on: return None
return None
resp = self.send_job_and_wait(MsgProto(EMsg.ClientRequestWebAPIAuthenticateUserNonce), timeout=5)
if resp is None: return None
skey, ekey = generate_session_key() skey, ekey = generate_session_key()
data = { data = {
'steamid': self.steam_id, 'steamid': self.steam_id,
'sessionkey': ekey, 'sessionkey': ekey,
'encrypted_loginkey': symmetric_encrypt(self.webapi_authenticate_user_nonce, skey), 'encrypted_loginkey': symmetric_encrypt(resp.webapi_authenticate_user_nonce.encode('ascii'), skey),
} }
try: try:
@ -38,7 +42,6 @@ class Web(object):
return None return None
return { return {
'sessionid': hexlify(sha1_hash(random_bytes(32))),
'steamLogin': resp['authenticateuser']['token'], 'steamLogin': resp['authenticateuser']['token'],
'steamLoginSecure': resp['authenticateuser']['tokensecure'], 'steamLoginSecure': resp['authenticateuser']['tokensecure'],
} }

4
steam/core/cm.py

@ -71,7 +71,6 @@ class CMClient(EventEmitter):
steam_id = SteamID() #: :class:`.SteamID` of the current user steam_id = SteamID() #: :class:`.SteamID` of the current user
session_id = None #: session id when logged in session_id = None #: session id when logged in
webapi_authenticate_user_nonce = None #: nonce for the getting a web session
_recv_loop = None _recv_loop = None
_heartbeat_loop = None _heartbeat_loop = None
@ -185,7 +184,6 @@ class CMClient(EventEmitter):
'channel_hmac', 'channel_hmac',
'steam_id', 'steam_id',
'session_id', 'session_id',
'webapi_authenticate_user_nonce',
'_seen_logon', '_seen_logon',
'_recv_loop', '_recv_loop',
'_heartbeat_loop', '_heartbeat_loop',
@ -372,8 +370,6 @@ class CMClient(EventEmitter):
self.steam_id = SteamID(msg.header.steamid) self.steam_id = SteamID(msg.header.steamid)
self.session_id = msg.header.client_sessionid self.session_id = msg.header.client_sessionid
self.webapi_authenticate_user_nonce = msg.body.webapi_authenticate_user_nonce.encode('ascii')
if self._heartbeat_loop: if self._heartbeat_loop:
self._heartbeat_loop.kill() self._heartbeat_loop.kill()

Loading…
Cancel
Save