Browse Source

refactor register_product_key()

pull/60/head
Rossen Georgiev 8 years ago
parent
commit
0786fd2743
  1. 15
      steam/client/builtins/apps.py

15
steam/client/builtins/apps.py

@ -186,13 +186,13 @@ class Apps(object):
:param key: CD-Key :param key: CD-Key
:type key: :class:`str` :type key: :class:`str`
:return: format ``(eresult, result_details, receipt_info)`` :return: format ``(eresult, result_details, receipt_info)``
:rtype: :class:`tuple`, :class:`None` :rtype: :class:`tuple`
Example ``receipt_info``: Example ``receipt_info``:
.. code:: python .. code:: python
{'MessageObject': {'BasePrice': 0, {'BasePrice': 0,
'CurrencyCode': 0, 'CurrencyCode': 0,
'ErrorHeadline': '', 'ErrorHeadline': '',
'ErrorLinkText': '', 'ErrorLinkText': '',
@ -210,14 +210,15 @@ class Apps(object):
'lineitems': {'0': {'ItemDescription': 'Half-Life 3', 'lineitems': {'0': {'ItemDescription': 'Half-Life 3',
'TransactionID': UINT_64(11111111111111111), 'TransactionID': UINT_64(11111111111111111),
'packageid': 1234}}, 'packageid': 1234}},
'packageid': -1}} 'packageid': -1}
""" """
resp = self.send_job_and_wait(MsgProto(EMsg.ClientRegisterKey), resp = self.send_job_and_wait(MsgProto(EMsg.ClientRegisterKey),
{'key': key}, {'key': key},
timeout=20 timeout=30,
) )
if resp: if resp:
details = vdf.binary_loads(resp.purchase_receipt_info) details = vdf.binary_loads(resp.purchase_receipt_info).get('MessageObject', None)
return EResult(resp.eresult), resp.purchase_result_details, details return EResult(resp.eresult), resp.purchase_result_details, details
else:
return EResult.Timeout, None, None

Loading…
Cancel
Save