Browse Source

utils: update appinfo for new format

Close #418
pull/426/head
Rossen Georgiev 2 years ago
parent
commit
abf65abff1
  1. 14
      steam/utils/appcache.py

14
steam/utils/appcache.py

@ -7,7 +7,7 @@ Appache file parsing examples:
>>> header, apps = parse_appinfo(open('/d/Steam/appcache/appinfo.vdf', 'rb')) >>> header, apps = parse_appinfo(open('/d/Steam/appcache/appinfo.vdf', 'rb'))
>>> header >>> header
{'magic': b"'DV\\x07", 'universe': 1} {'magic': b"(DV\\x07", 'universe': 1}
>>> next(apps) >>> next(apps)
{'appid': 5, {'appid': 5,
'size': 79, 'size': 79,
@ -16,6 +16,7 @@ Appache file parsing examples:
'access_token': 0, 'access_token': 0,
'sha1': b'\\x87\\xfaCg\\x85\\x80\\r\\xb4\\x90Im\\xdc}\\xb4\\x81\\xeeQ\\x8b\\x825', 'sha1': b'\\x87\\xfaCg\\x85\\x80\\r\\xb4\\x90Im\\xdc}\\xb4\\x81\\xeeQ\\x8b\\x825',
'change_number': 4603827, 'change_number': 4603827,
'data_sha1': b'\\x87\\xfaCg\\x85\\x80\\r\\xb4\\x90Im\\xdc}\\xb4\\x81\\xeeQ\\x8b\\x825',
'data': {'appinfo': {'appid': 5, 'public_only': 1}}} 'data': {'appinfo': {'appid': 5, 'public_only': 1}}}
>>> header, pkgs = parse_packageinfo(open('/d/Steam/appcache/packageinfo.vdf', 'rb')) >>> header, pkgs = parse_packageinfo(open('/d/Steam/appcache/packageinfo.vdf', 'rb'))
@ -52,7 +53,7 @@ def parse_appinfo(fp):
:return: (header, apps iterator) :return: (header, apps iterator)
""" """
# format: # format:
# uint32 - MAGIC: "'DV\x07" # uint32 - MAGIC: "'DV\x07" or "(DV\x07"
# uint32 - UNIVERSE: 1 # uint32 - UNIVERSE: 1
# ---- repeated app sections ---- # ---- repeated app sections ----
# uint32 - AppID # uint32 - AppID
@ -62,12 +63,13 @@ def parse_appinfo(fp):
# uint64 - accessToken # uint64 - accessToken
# 20bytes - SHA1 # 20bytes - SHA1
# uint32 - changeNumber # uint32 - changeNumber
# 20bytes - binary_vdf SHA1 (added in "(DV\x07"
# variable - binary_vdf # variable - binary_vdf
# ---- end of section --------- # ---- end of section ---------
# uint32 - EOF: 0 # uint32 - EOF: 0
magic = fp.read(4) magic = fp.read(4)
if magic != b"'DV\x07": if magic not in (b"'DV\x07", b"(DV\x07"):
raise SyntaxError("Invalid magic, got %s" % repr(magic)) raise SyntaxError("Invalid magic, got %s" % repr(magic))
universe = uint32.unpack(fp.read(4))[0] universe = uint32.unpack(fp.read(4))[0]
@ -87,9 +89,13 @@ def parse_appinfo(fp):
'access_token': uint64.unpack(fp.read(8))[0], 'access_token': uint64.unpack(fp.read(8))[0],
'sha1': fp.read(20), 'sha1': fp.read(20),
'change_number': uint32.unpack(fp.read(4))[0], 'change_number': uint32.unpack(fp.read(4))[0],
'data': binary_load(fp),
} }
if magic == b"(DV\x07":
app['data_sha1'] = fp.read(20)
app['data'] = binary_load(fp)
yield app yield app

Loading…
Cancel
Save