-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from Derfirm/steamapi-store
Merged in initial support for the Steamworks in-game micro-transactions store by @Derfirm.
- Loading branch information
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
__author__ = 'andrew' | ||
|
||
import uuid | ||
from .core import APIConnection | ||
|
||
|
||
class SteamIngameStore(object): | ||
def __init__(self, appid, debug=False): | ||
self.appid = appid | ||
self.interface = 'ISteamMicroTxnSandbox' if debug else 'ISteamMicroTxn' | ||
|
||
def get_user_microtxh_info(self, steamid): | ||
return APIConnection().call(self.interface, 'GetUserInfo', 'v1', steamid=steamid, appid=self.appid) | ||
|
||
def init_purchase(self, steamid, itemid, amount, itemcount=1, language='en', currency='USD', qty=1, description='Some description'): | ||
params = { | ||
'steamid': steamid, | ||
'itemid[0]': itemid, | ||
'amount[0]': amount, | ||
'appid': self.appid, | ||
'orderid': uuid.uuid1().int >> 64, | ||
'itemcount': itemcount, | ||
'language': language, | ||
'currency': currency, | ||
'qty[0]': qty, | ||
'description[0]': description, | ||
} | ||
return APIConnection().call(self.interface, 'InitTxn', 'v3', method='POST', **params) | ||
|
||
def query_txh(self, orderid): | ||
return APIConnection().call(self.interface, 'QueryTxn', 'v1', appid=self.appid, orderid=orderid) | ||
|
||
def refund_txh(self, orderid): | ||
return APIConnection().call(self.interface, 'RefundTxn', 'v1', method='POST', appid=self.appid, orderid=orderid) | ||
|
||
def finalize_txh(self, orderid): | ||
return APIConnection().call(self.interface, 'FinalizeTxn', 'v1', method='POST', appid=self.appid, orderid=orderid) |