mirror of
https://silica.codes/BedrockReverse/PyFab.git
synced 2025-04-06 05:05:43 +12:00
Fix always creating new account
This commit is contained in:
parent
301067be0d
commit
fe17f5e854
2 changed files with 13 additions and 6 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -160,3 +160,4 @@ cython_debug/
|
|||
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
||||
#.idea/
|
||||
|
||||
settings.json
|
12
PlayFab.py
12
PlayFab.py
|
@ -69,8 +69,15 @@ def genPlayFabSignature(requestBody, timestamp):
|
|||
sha256.update(requestBody.encode("UTF-8") + b"." + timestamp.encode("UTF-8") + b"." + configGet("PLAYER_SECRET").encode("UTF-8"))
|
||||
return base64.b64encode(sha256.digest())
|
||||
|
||||
def configLoad():
|
||||
global PLAYFAB_SETTINGS
|
||||
global SETTING_FILE
|
||||
if os.path.exists(SETTING_FILE):
|
||||
PLAYFAB_SETTINGS = json.loads(open(SETTING_FILE, "r").read())
|
||||
|
||||
def configGet(key):
|
||||
global PLAYFAB_SETTINGS
|
||||
configLoad()
|
||||
if key in PLAYFAB_SETTINGS:
|
||||
return PLAYFAB_SETTINGS[key]
|
||||
return None
|
||||
|
@ -78,9 +85,7 @@ def configGet(key):
|
|||
|
||||
def configSet(key, newValue):
|
||||
global PLAYFAB_SETTINGS
|
||||
if os.path.exists(SETTING_FILE):
|
||||
PLAYFAB_SETTINGS = json.loads(open(SETTING_FILE, "r").read())
|
||||
|
||||
configLoad()
|
||||
PLAYFAB_SETTINGS[key] = newValue
|
||||
open(SETTING_FILE, "w").write(json.dumps(PLAYFAB_SETTINGS))
|
||||
return newValue
|
||||
|
@ -168,3 +173,4 @@ def Search(query, sfilter, orderBy, select, top, skip):
|
|||
"top": top,
|
||||
"skip": skip
|
||||
})
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue