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

62 lines
1.8 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
"""Check all/given PRDs for FULL updates."""
2017-11-03 05:25:25 +00:00
import sys
2018-02-03 20:24:36 +00:00
from requests.exceptions import RequestException
import tcllib
2018-02-02 02:33:53 +00:00
import tcllib.argparser
2018-02-06 00:03:25 +00:00
from tcllib import ansi, devlist
from tcllib.devices import DesktopDevice
2018-02-03 20:24:36 +00:00
dev = DesktopDevice()
fc = tcllib.FotaCheck()
fc.mode = fc.MODE.FULL # still needed to set User-Agent
dpdesc = """
Checks for the latest FULL updates for all PRD numbers or only for
the PRD specified as prd.
"""
2018-02-02 02:33:53 +00:00
dp = tcllib.argparser.DefaultParser(__file__, dpdesc)
dp.add_argument("-p", "--prd", help="CU Reference # to filter scan results", dest="tocheck", nargs="?", default=None, metavar="PRD")
2017-11-03 05:25:25 +00:00
args = dp.parse_args(sys.argv[1:])
prdcheck = "" if args.tocheck is None else args.tocheck
print("Loading list of devices.")
prds = devlist.get_devicelist()
print("List of latest FULL firmware by PRD:")
2017-12-17 02:18:55 +00:00
for prd, variant in prds.items():
model = variant["variant"]
lastver = variant["last_full"]
if prdcheck in prd:
try:
fc.reset_session()
dev.curef = prd
check_xml = fc.do_check(dev, max_tries=20)
curef, fv, tv, fw_id, fileid, fn, fsize, fhash = fc.parse_check(check_xml)
txt_tv = tv
if tv != lastver:
txt_tv = "{} (old: {} / OTA: {})".format(
ansi.CYAN + txt_tv + ansi.RESET,
ansi.CYAN_DARK + variant["last_full"] + ansi.RESET,
variant["last_ota"]
)
2018-01-17 23:47:27 +00:00
else:
fc.delete_last_dump()
print("{}: {} {} ({})".format(prd, txt_tv, fhash, model))
except RequestException as e:
print("{}: {}".format(prd, str(e)))
continue
tcllib.FotaCheck.write_info_if_dumps_found()