1
0
mirror of https://github.com/mbirth/tcl_ota_check.git synced 2024-09-20 06:43:26 +01:00
tcl_ota_check/tclcheck_findver.py

74 lines
2.0 KiB
Python
Raw Normal View History

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# pylint: disable=C0111,C0326,C0103
2018-02-03 21:25:26 +00:00
"""Find all OTA updates for a given PRD."""
import sys
2018-02-03 20:24:36 +00:00
from requests.exceptions import RequestException, Timeout
import tcllib
2018-02-02 02:33:53 +00:00
import tcllib.argparser
from tcllib import ansi
2018-02-03 20:24:36 +00:00
fc = tcllib.FotaCheck()
fc.serid = "3531510"
2017-10-15 00:51:38 +01:00
fc.mode = fc.MODE.OTA
dpdesc = """
Finds all valid OTA updates for a given PRD. Scan range can be set by
startver and endver switches.
"""
2018-02-02 02:33:53 +00:00
dp = tcllib.argparser.DefaultParser(__file__, dpdesc)
dp.add_argument("prd", help="CU Reference #, e.g. PRD-63117-011")
dp.add_argument("startver", help="Beginning of scan range", nargs="?", default="AAA000")
dp.add_argument("endver", help="End of scan range", nargs="?", default="AAZ999")
2017-10-10 20:25:38 +01:00
args = dp.parse_args(sys.argv[1:])
fc.curef = args.prd
start_ver = args.startver
end_ver = args.endver
print("Valid firmwares for model {} (between {} and {}):".format(fc.curef, start_ver, end_ver))
cur_ver = start_ver
allvers = []
while True:
allvers.append(cur_ver)
if cur_ver == end_ver:
break
letters = list(cur_ver[:3])
num = int(cur_ver[3:6])
num += 1
if num > 999:
num = 0
for i in range(2, -1, -1):
if letters[i] == "Z":
letters[i] = "A"
continue
letters[i] = chr(ord(letters[i])+1)
break
cur_ver = "{:3}{:03d}".format("".join(letters), num)
done_count = 0
total_count = len(allvers)
for fv in allvers:
done_count += 1
print("Checking {} ({}/{})".format(fv, done_count, total_count))
print(ansi.UP_DEL, end="")
try:
fc.reset_session()
fc.fv = fv
check_xml = fc.do_check(https=False, max_tries=20)
curef, fv, tv, fw_id, fileid, fn, fsize, fhash = fc.parse_check(check_xml)
txt_tv = tv
print("{}: {}{} {}".format(curef, fv, txt_tv, fhash))
except (SystemExit, RequestException, Timeout) as e:
continue
print("Scan complete.")
tcllib.FotaCheck.write_info_if_dumps_found()