1
0
mirror of https://github.com/mbirth/tcl_ota_check.git synced 2024-09-19 22:33:25 +01:00

add prd filter to allota

This commit is contained in:
thurask 2017-10-31 11:41:06 -04:00
parent ab46b5b912
commit 8b669ba73c
No known key found for this signature in database
GPG Key ID: A6CCCDEA29795048

View File

@ -17,6 +17,7 @@ fc.cltp = fc.CLTP.MOBILE
dp = tcllib.DefaultParser(__file__)
dp.add_argument("forcever", nargs="?", default=None)
dp.add_argument("-p", "--prd", dest="tocheck", nargs="?", default=None)
args = dp.parse_args(sys.argv[1:])
if args.forcever is not None:
@ -24,6 +25,8 @@ if args.forcever is not None:
else:
force_ver_text = ""
prdcheck = "" if args.tocheck is None else args.tocheck
print("List of latest OTA firmware{} by PRD:".format(force_ver_text))
with open("prds.txt", "r") as f:
@ -32,14 +35,15 @@ with open("prds.txt", "r") as f:
prd, lastver, model = prdline.split(" ", 2)
if args.forcever is not None:
lastver = args.forcever
try:
fc.reset_session()
fc.curef = prd
fc.fv = lastver
check_xml = fc.do_check(max_tries=20)
curef, fv, tv, fw_id, fileid, fn, fsize, fhash = fc.parse_check(check_xml)
versioninfo = tcllib.ANSI_CYAN_DARK + fv + tcllib.ANSI_RESET + "" + tcllib.ANSI_CYAN + tv + tcllib.ANSI_RESET
print("{}: {} {} ({})".format(prd, versioninfo, fhash, model))
except RequestException as e:
print("{} ({}): {}".format(prd, lastver, str(e)))
continue
if prdcheck in prd:
try:
fc.reset_session()
fc.curef = prd
fc.fv = lastver
check_xml = fc.do_check(max_tries=20)
curef, fv, tv, fw_id, fileid, fn, fsize, fhash = fc.parse_check(check_xml)
versioninfo = tcllib.ANSI_CYAN_DARK + fv + tcllib.ANSI_RESET + "" + tcllib.ANSI_CYAN + tv + tcllib.ANSI_RESET
print("{}: {} {} ({})".format(prd, versioninfo, fhash, model))
except RequestException as e:
print("{} ({}): {}".format(prd, lastver, str(e)))
continue