Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: globals/get_browser_versions.py

Issue 29515558: Issue 5496 - Use omahaproxy to get chrome-versions (Closed)
Patch Set: Choose desired version in dict-comprehension Created Aug. 14, 2017, 12:07 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: globals/get_browser_versions.py
diff --git a/globals/get_browser_versions.py b/globals/get_browser_versions.py
index 1f8f0e1b454efb9c3eea31ccc6b54753d2f24761..6205f97fcc91cacadf4416525a7b4b4a3dfa48c1 100644
--- a/globals/get_browser_versions.py
+++ b/globals/get_browser_versions.py
@@ -15,21 +15,7 @@ BASE_URL = 'https://product-details.mozilla.org/1.0'
FIREFOX_URL = BASE_URL + '/firefox_versions.json'
THUNDERBIRD_URL = BASE_URL + '/thunderbird_versions.json'
SEAMONKEY_URL = 'http://www.seamonkey-project.org/seamonkey_versions.json'
-
-CHROME_UPDATE_XML = '''\
-<?xml version="1.0" encoding="UTF-8"?>
-<request protocol="3.0" ismachine="0">
- <os platform="win" version="99" arch="x64"/>
- <app appid="{4DC8B4CA-1BDA-483E-B5FA-D3C12E15B62D}">
- <updatecheck/>
- </app>
- <app appid="{4DC8B4CA-1BDA-483E-B5FA-D3C12E15B62D}" ap="x64-beta-multi-chrome">
- <updatecheck/>
- </app>
- <app appid="{4DC8B4CA-1BDA-483E-B5FA-D3C12E15B62D}" ap="x64-dev-multi-chrome">
- <updatecheck/>
- </app>
-</request>'''
+CHROME_URL = 'https://omahaproxy.appspot.com/all.json?os=win'
saroyanm 2017/08/14 14:26:10 The URL mentioned in the Issue tracker doesn't inc
Sebastian Noack 2017/08/14 14:33:30 Note that this is consistent with the old implemen
saroyanm 2017/08/14 14:34:48 Acknowledged.
cache = {}
@@ -93,21 +79,21 @@ def get_seamonkey_versions():
BROWSERS['seamonkey'] = get_seamonkey_versions
-def get_chrome_version(manifest):
- return manifest.getAttribute('version').split('.')[0]
-
-
def get_chrome_versions():
- response = urllib.urlopen('https://tools.google.com/service/update2', CHROME_UPDATE_XML)
+ response = urllib.urlopen(CHROME_URL)
try:
- doc = minidom.parse(response)
+ data = json.load(response)
finally:
response.close()
- manifests = doc.getElementsByTagName('manifest')
+ versions = {
+ x['channel']: x['version'].split('.')[0]
+ for x in data[0]['versions']
+ }
+
return {
- 'current': get_chrome_version(manifests[0]),
- 'unreleased': map(get_chrome_version, manifests[1:])
+ 'current': versions['stable'],
+ 'unreleased': [versions['beta'], versions['dev']],
}
BROWSERS['chrome'] = get_chrome_versions
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld