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

Side by Side Diff: sitescripts/extensions/utils.py

Issue 29370859: Issue 4767 - Improve error reporting in update_update_manifests (Closed)
Patch Set: For comment 13 Created Jan. 13, 2017, 3:38 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # This file is part of the Adblock Plus web scripts, 1 # This file is part of the Adblock Plus web scripts,
2 # Copyright (C) 2006-2016 Eyeo GmbH 2 # Copyright (C) 2006-2016 Eyeo GmbH
3 # 3 #
4 # Adblock Plus is free software: you can redistribute it and/or modify 4 # Adblock Plus is free software: you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License version 3 as 5 # it under the terms of the GNU General Public License version 3 as
6 # published by the Free Software Foundation. 6 # published by the Free Software Foundation.
7 # 7 #
8 # Adblock Plus is distributed in the hope that it will be useful, 8 # Adblock Plus is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details. 11 # GNU General Public License for more details.
12 # 12 #
13 # You should have received a copy of the GNU General Public License 13 # You should have received a copy of the GNU General Public License
14 # along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. 14 # along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
15 15
16 import codecs 16 import codecs
17 import os 17 import os
18 import json 18 import json
19 import re 19 import re
20 import subprocess 20 import subprocess
21 import traceback 21 import traceback
22 import time 22 import time
23 import urlparse 23 import urlparse
24 import urllib 24 import urllib
25 import xml.dom.minidom as dom 25 import xml.dom.minidom as dom
26 from ConfigParser import SafeConfigParser, NoOptionError 26 from ConfigParser import SafeConfigParser, NoOptionError
27 from StringIO import StringIO 27 from StringIO import StringIO
28 from sitescripts.utils import get_config 28 from sitescripts.utils import get_config
29 from xml.parsers.expat import ExpatError
29 30
30 PACKAGE_SUFFIXES = { 31 PACKAGE_SUFFIXES = {
31 'gecko': '.xpi', 32 'gecko': '.xpi',
32 'gecko-webext': '.xpi', 33 'gecko-webext': '.xpi',
33 'chrome': '.crx', 34 'chrome': '.crx',
34 'safari': '.safariextz', 35 'safari': '.safariextz',
35 'ie': '.exe', 36 'ie': '.exe',
36 'android': '.apk' 37 'android': '.apk'
37 } 38 }
38 39
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 244
244 245
245 def _urlopen(url, attempts=3): 246 def _urlopen(url, attempts=3):
246 """ 247 """
247 Tries to open a particular URL, retries on failure. 248 Tries to open a particular URL, retries on failure.
248 """ 249 """
249 for i in range(attempts): 250 for i in range(attempts):
250 try: 251 try:
251 return urllib.urlopen(url) 252 return urllib.urlopen(url)
252 except IOError as e: 253 except IOError as e:
253 error = e 254 error = e
Vasily Kuznetsov 2017/01/13 18:12:11 It would probably be good to improve the error rep
254 time.sleep(5) 255 time.sleep(5)
255 raise error 256 raise error
256 257
257 258
259 def _parseXMLDocument(url, attempts=2):
260 for i in range(attempts):
261 page = _urlopen(url)
262 content = page.read()
263 page.close()
264 try:
265 return dom.parseString(content)
266 except ExpatError as err:
267 exception = Exception('Error {0} while parsing xml:\n{1}\nfrom {2}'
268 .format(err, content, url))
269 raise exception
270
271
258 def _getMozillaDownloadLink(galleryID): 272 def _getMozillaDownloadLink(galleryID):
259 """ 273 """
260 gets download link for a Gecko add-on from the Mozilla Addons site 274 gets download link for a Gecko add-on from the Mozilla Addons site
261 """ 275 """
262 url = 'https://services.addons.mozilla.org/en-US/firefox/api/1/addon/%s' % _ urlencode(galleryID) 276 url = 'https://services.addons.mozilla.org/en-US/firefox/api/1/addon/%s' % _ urlencode(galleryID)
263 document = dom.parse(_urlopen(url)) 277 document = _parseXMLDocument(url)
264 linkTags = document.getElementsByTagName('install') 278 linkTags = document.getElementsByTagName('install')
265 linkTag = linkTags[0] if len(linkTags) > 0 else None 279 linkTag = linkTags[0] if len(linkTags) > 0 else None
266 versionTags = document.getElementsByTagName('version') 280 versionTags = document.getElementsByTagName('version')
267 versionTag = versionTags[0] if len(versionTags) > 0 else None 281 versionTag = versionTags[0] if len(versionTags) > 0 else None
268 if linkTag and versionTag and linkTag.firstChild and versionTag.firstChild: 282 if linkTag and versionTag and linkTag.firstChild and versionTag.firstChild:
269 return (linkTag.firstChild.data, versionTag.firstChild.data) 283 return (linkTag.firstChild.data, versionTag.firstChild.data)
270 else: 284 else:
271 return (None, None) 285 return (None, None)
272 286
273 287
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
379 if not extensions: 393 if not extensions:
380 return 394 return
381 395
382 updates = {} 396 updates = {}
383 for extension in extensions: 397 for extension in extensions:
384 updates[extension['basename']] = { 398 updates[extension['basename']] = {
385 'url': extension['updateURL'], 399 'url': extension['updateURL'],
386 'version': extension['version'] 400 'version': extension['version']
387 } 401 }
388 writeLibabpUpdateManifest(path, updates) 402 writeLibabpUpdateManifest(path, updates)
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld