From 8f8a6d79c39ff76a5169d1dac57d8210ac7c50f1 Mon Sep 17 00:00:00 2001 From: Markus Birth Date: Wed, 13 May 2020 23:28:45 +0200 Subject: [PATCH] Tool to fetch list of firmware updates for Kenwood/JVC head units. --- list_kenwood_updates.py | 70 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 list_kenwood_updates.py diff --git a/list_kenwood_updates.py b/list_kenwood_updates.py new file mode 100644 index 0000000..20f9cfd --- /dev/null +++ b/list_kenwood_updates.py @@ -0,0 +1,70 @@ +#!/usr/bin/env python3 + +import requests +import re + +BASE_URL = "https://kenwood.garmin.com" +MAIN_URL = "/kenwood/site/filterHeadUnitList" + +reqs = requests.Session() + +def get_url(url, params = {}, outfile = None): + global reqs + print("Now fetching {} ...".format(url)) + #print(repr(params)) + req = reqs.get(url, params=params) + page = req.content + #if outfile: + # with open(outfile, "wb") as f: + # f.write(page) + page = str(page).replace("\\n", "").replace("\\r", "").replace("\\t", "") + page = re.sub(r"\s+", " ", page) + return page + +devlist = get_url(BASE_URL + MAIN_URL, {"regionKey": 0, "seriesKey": 0}, "kenmain.html") +devices = re.findall(r"
(.*?)
", devlist) + +print("Found {} devices.".format(len(devices))) +#print(repr(devices)) + +f = open("kenfiles.txt", "wt") +f.write("# Download with: wget -x -nc -i kenfiles.txt\n\n") + +for dev in devices: + (url, devname) = dev + print("Checking updates for {} ...".format(devname.strip())) + url = url.strip() + (url, paramstr) = url.split("?", 1) + parampairs = paramstr.split("&") + params = {} + for p in parampairs: + (key, val) = p.split("=", 1) + params[key] = val + params["origin"] = "productUpdate" # gets added via JavaScript? + + devpage = get_url(BASE_URL + url, params, "kendev.html") + + updateLink = re.search(r"(/kenwood/site/softwareUpdates.*?)\\", devpage) + + if not updateLink: + print("### No updates for {} found.".format(devname)) + continue + + updateLink = updateLink.group(1) + #print(repr(updateLink)) + + updpage = get_url(BASE_URL + updateLink, {}, "kenupd.html") + #print(repr(updpage)) + + links = re.findall(r"(https?://.*?)[\\\"']", updpage) + + f.write("# {}\n".format(devname)) + for l in links: + if l.endswith(("favicon.ico", "garmin.png", "termsOfUse.htm", "privacy-statement", "/us/")): + continue + #print(repr(l)) + f.write(l) + f.write("\n") + f.write("\n") + +f.close()