From 49d535c63fc58920b61e475460d77013dbc14915 Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Fri, 11 Nov 2016 02:23:37 +0200 Subject: [PATCH] added register_product_key method --- steam/client/builtins/apps.py | 41 +++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/steam/client/builtins/apps.py b/steam/client/builtins/apps.py index 4cb12ad..78e4817 100644 --- a/steam/client/builtins/apps.py +++ b/steam/client/builtins/apps.py @@ -180,3 +180,44 @@ class Apps(object): 'packages': dict(map(lambda pkg: (pkg.appid, pkg.access_token), resp.package_access_tokens)), } + def register_product_key(self, key): + """Register/Redeem a CD-Key + + :param key: CD-Key + :type key: :class:`str` + :return: format ``(eresult, result_details, receipt_info)`` + :rtype: :class:`tuple`, :class:`None` + + Example ``receipt_info``: + + .. code:: python + + {'MessageObject': {'BasePrice': 0, + 'CurrencyCode': 0, + 'ErrorHeadline': '', + 'ErrorLinkText': '', + 'ErrorLinkURL': '', + 'ErrorString': '', + 'LineItemCount': 1, + 'PaymentMethod': 1, + 'PurchaseStatus': 1, + 'ResultDetail': 0, + 'Shipping': 0, + 'Tax': 0, + 'TotalDiscount': 0, + 'TransactionID': UINT_64(111111111111111111), + 'TransactionTime': 1473000000, + 'lineitems': {'0': {'ItemDescription': 'Half-Life 3', + 'TransactionID': UINT_64(11111111111111111), + 'packageid': 1234}}, + 'packageid': -1}} + """ + resp = self.send_job_and_wait(MsgProto(EMsg.ClientRegisterKey), + {'key': key}, + timeout=20 + ) + + if resp: + details = vdf.binary_loads(resp.purchase_receipt_info) + + return EResult(resp.eresult), resp.purchase_result_details, details