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

Unified Diff: sitescripts/extensions/bin/updateUpdateManifests.py

Issue 6291923287408640: Issue 1093 - Separate update manifest generation (Closed)
Patch Set: Fix issue Created July 23, 2014, 4:50 a.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 | « sitescripts/extensions/bin/updateDownloadLinks.py ('k') | sitescripts/extensions/utils.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sitescripts/extensions/bin/updateUpdateManifests.py
===================================================================
new file mode 100644
--- /dev/null
+++ b/sitescripts/extensions/bin/updateUpdateManifests.py
@@ -0,0 +1,104 @@
+# coding: utf-8
+
+# This file is part of the Adblock Plus web scripts,
+# Copyright (C) 2006-2014 Eyeo GmbH
+#
+# Adblock Plus is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License version 3 as
+# published by the Free Software Foundation.
+#
+# Adblock Plus is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
+
+"""
+Generate update manifests
+=========================
+
+ This script generates update manifests for all extensions and apps
+"""
+
+import re
+import subprocess
+from buildtools.packagerGecko import KNOWN_APPS
+from ConfigParser import SafeConfigParser
+from sitescripts.utils import get_config, get_template
+from sitescripts.extensions.utils import (Configuration, getDownloadLinks,
+ getSafariCertificateID)
+from sitescripts.extensions.android import get_min_sdk_version
+
+def readMetadata(repo, version):
+ """
+ reads extension ID and compatibility information from metadata file in the
+ extension's repository
+ """
+ if repo.type == 'android':
+ command = ['hg', '-R', repo.repository, 'id', '-r', version, '-n']
+ result = subprocess.check_output(command)
+ revision = re.sub(r'\D', '', result)
+
+ return {
+ 'revision': revision,
+ 'minSdkVersion': get_min_sdk_version(repo, version),
+ }
+ elif repo.type == 'safari':
+ metadata = repo.readMetadata(version)
+ return {
+ 'certificateID': getSafariCertificateID(repo.keyFile),
+ 'version': version,
+ 'shortVersion': version,
+ 'basename': metadata.get('general', 'basename'),
+ }
+ elif repo.type == 'gecko':
+ metadata = repo.readMetadata(version)
+ result = {
+ 'extensionID': metadata.get('general', 'id'),
+ 'version': version,
+ 'compat': []
+ }
+ for key, value in KNOWN_APPS.iteritems():
+ if metadata.has_option('compat', key):
+ minVersion, maxVersion = metadata.get('compat', key).split('/')
+ result['compat'].append({'id': value, 'minVersion': minVersion, 'maxVersion': maxVersion})
+ return result
+ else:
+ raise Exception('unknown repository type %r' % repo.type)
+
+def writeUpdateManifest(links):
+ """
+ writes an update manifest for all extensions and Android apps
+ """
+
+ extensions = {'gecko': [], 'android': [], 'safari': []}
+ for repo in Configuration.getRepositoryConfigurations():
+ if repo.type not in extensions or not links.has_section(repo.repositoryName):
+ continue
+ data = readMetadata(repo, links.get(repo.repositoryName, 'version'))
+ data['updateURL'] = links.get(repo.repositoryName, 'downloadURL')
+ if data['updateURL'].startswith(repo.downloadsURL):
+ data['updateURL'] += "?update"
+ extensions[repo.type].append(data)
+
+ if len(extensions['android']) > 1:
+ print >>sys.stderr, 'Warning: more than one Android app defined, update manifest only works for one'
+
+ for repoType in extensions.iterkeys():
+ manifestPath = get_config().get('extensions', '%sUpdateManifestPath' % repoType)
+ template = get_template(get_config().get('extensions', '%sUpdateManifest' % repoType))
+ template.stream({'extensions': extensions[repoType]}).dump(manifestPath)
+
+def updateUpdateManifests():
+ """
+ updates all update manifests with the current versions
+ """
+
+ parser = SafeConfigParser()
+ getDownloadLinks(parser)
+ writeUpdateManifest(parser)
+
+if __name__ == "__main__":
+ updateUpdateManifests()
« no previous file with comments | « sitescripts/extensions/bin/updateDownloadLinks.py ('k') | sitescripts/extensions/utils.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld