1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-11-15 03:20:10 +01:00
fdroidserver/fdroidserver/checkupdates.py

457 lines
18 KiB
Python
Raw Normal View History

2013-10-31 13:25:39 +01:00
#!/usr/bin/env python2
# -*- coding: utf-8 -*-
#
2012-02-11 16:27:09 +01:00
# checkupdates.py - part of the FDroid server tools
# Copyright (C) 2010-13, Ciaran Gultnieks, ciaran@ciarang.com
2013-09-28 21:06:33 +02:00
# Copyright (C) 2013 Daniel Martí <mvdan@mvdan.cc>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program 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 Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import sys
import os
import re
import urllib2
import time
import subprocess
from optparse import OptionParser
import traceback
2012-01-02 17:50:49 +01:00
import HTMLParser
2013-08-14 14:24:34 +02:00
from distutils.version import LooseVersion
import common
from common import BuildException
from common import VCSException
2013-10-01 11:19:17 +02:00
# Check for a new version by looking at a document retrieved via HTTP.
# The app's Update Check Data field is used to provide the information
# required.
def check_http(app):
try:
if not 'Update Check Data' in app:
raise Exception('Missing Update Check Data')
2013-10-01 16:06:02 +02:00
urlcode, codeex, urlver, verex = app['Update Check Data'].split('|')
2013-10-01 11:19:17 +02:00
2013-10-01 16:06:02 +02:00
vercode = "99999999"
if len(urlcode) > 0:
print "...requesting {0}".format(urlcode)
2013-10-01 16:06:02 +02:00
req = urllib2.Request(urlcode, None)
resp = urllib2.urlopen(req, None, 20)
page = resp.read()
2013-10-01 11:19:17 +02:00
m = re.search(codeex, page)
if not m:
raise Exception("No RE match for version code")
vercode = m.group(1)
2013-10-01 16:06:02 +02:00
version = "??"
if len(urlver) > 0:
if urlver != '.':
print "...requesting {0}".format(urlver)
2013-10-01 16:06:02 +02:00
req = urllib2.Request(urlver, None)
resp = urllib2.urlopen(req, None, 20)
page = resp.read()
m = re.search(verex, page)
if not m:
raise Exception("No RE match for version")
version = m.group(1)
2013-10-01 11:19:17 +02:00
return (version, vercode)
except Exception:
msg = "Could not complete http check for app %s due to unknown error: %s" % (app['id'], traceback.format_exc())
return (None, msg)
2012-08-23 15:25:39 +02:00
# Check for a new version by looking at the tags in the source repo.
# Whether this can be used reliably or not depends on
# the development procedures used by the project's developers. Use it with
# caution, because it's inappropriate for many projects.
# Returns (None, "a message") if this didn't work, or (version, vercode) for
# the details of the current version.
def check_tags(app, sdk_path):
2012-08-23 15:25:39 +02:00
try:
if app['Repo Type'] == 'srclib':
2013-10-09 23:36:02 +02:00
build_dir = os.path.join('build', 'srclib', app['Repo'])
repotype = common.getsrclibvcs(app['Repo'])
else:
build_dir = os.path.join('build/', app['id'])
repotype = app['Repo Type']
2012-08-23 15:25:39 +02:00
2013-10-30 21:54:09 +01:00
if repotype not in ('git', 'git-svn', 'hg', 'bzr'):
return (None, 'Tags update mode only works for git, hg, bzr and git-svn repositories currently', None)
2012-08-23 15:25:39 +02:00
# Set up vcs interface and make sure we have the latest code...
vcs = common.getvcs(app['Repo Type'], app['Repo'], build_dir, sdk_path)
vcs.gotorevision(None)
2012-08-23 15:25:39 +02:00
flavour = None
if len(app['builds']) > 0:
if 'subdir' in app['builds'][-1]:
build_dir = os.path.join(build_dir, app['builds'][-1]['subdir'])
if 'gradle' in app['builds'][-1]:
flavour = app['builds'][-1]['gradle']
2012-08-23 15:25:39 +02:00
htag = None
2012-08-23 15:25:39 +02:00
hver = None
hcode = "0"
for tag in vcs.gettags():
vcs.gotorevision(tag)
# Only process tags where the manifest exists...
paths = common.manifest_paths(build_dir, flavour)
version, vercode, package = common.parse_androidmanifests(paths)
if package and package == app['id'] and version and vercode:
print "Manifest exists. Found version %s" % version
if int(vercode) > int(hcode):
htag = tag
hcode = str(int(vercode))
hver = version
2012-08-23 15:25:39 +02:00
if hver:
return (hver, hcode, htag)
return (None, "Couldn't find any version information", None)
2012-08-23 15:25:39 +02:00
except BuildException as be:
msg = "Could not scan app %s due to BuildException: %s" % (app['id'], be)
return (None, msg, None)
2012-08-23 15:25:39 +02:00
except VCSException as vcse:
msg = "VCS error while scanning app %s: %s" % (app['id'], vcse)
return (None, msg, None)
2012-08-23 15:25:39 +02:00
except Exception:
msg = "Could not scan app %s due to unknown error: %s" % (app['id'], traceback.format_exc())
return (None, msg, None)
2012-08-23 15:25:39 +02:00
2012-03-10 13:50:34 +01:00
# Check for a new version by looking at the AndroidManifest.xml at the HEAD
# of the source repo. Whether this can be used reliably or not depends on
# the development procedures used by the project's developers. Use it with
# caution, because it's inappropriate for many projects.
# Returns (None, "a message") if this didn't work, or (version, vercode) for
# the details of the current version.
2013-05-17 22:30:35 +02:00
def check_repomanifest(app, sdk_path, branch=None):
2012-03-10 13:50:34 +01:00
try:
if app['Repo Type'] == 'srclib':
2013-10-09 23:39:44 +02:00
build_dir = os.path.join('build', 'srclib', app['Repo'])
repotype = common.getsrclibvcs(app['Repo'])
else:
build_dir = os.path.join('build/', app['id'])
repotype = app['Repo Type']
2012-03-10 13:50:34 +01:00
# Set up vcs interface and make sure we have the latest code...
vcs = common.getvcs(app['Repo Type'], app['Repo'], build_dir, sdk_path)
if vcs.repotype() == 'git':
2013-05-17 22:30:35 +02:00
if branch:
branch = 'origin/'+branch
vcs.gotorevision(branch)
elif vcs.repotype() == 'git-svn':
vcs.gotorevision(branch)
elif vcs.repotype() == 'svn':
vcs.gotorevision(None)
elif vcs.repotype() == 'hg':
vcs.gotorevision(branch)
elif vcs.repotype() == 'bzr':
vcs.gotorevision(None)
2012-03-10 13:50:34 +01:00
2013-08-13 14:51:40 +02:00
flavour = None
if len(app['builds']) > 0:
if 'subdir' in app['builds'][-1]:
build_dir = os.path.join(build_dir, app['builds'][-1]['subdir'])
if 'gradle' in app['builds'][-1]:
flavour = app['builds'][-1]['gradle']
2012-03-10 13:50:34 +01:00
2013-07-04 15:26:47 +02:00
if not os.path.isdir(build_dir):
2013-07-04 13:54:59 +02:00
return (None, "Subdir '" + app['builds'][-1]['subdir'] + "'is not a valid directory")
paths = common.manifest_paths(build_dir, flavour)
2013-08-13 14:51:40 +02:00
version, vercode, package = common.parse_androidmanifests(paths)
2012-03-10 13:50:34 +01:00
if not package:
2012-08-23 15:25:39 +02:00
return (None, "Couldn't find package ID")
2012-03-10 13:50:34 +01:00
if package != app['id']:
return (None, "Package ID mismatch")
if not version:
return (None,"Couldn't find latest version name")
if not vercode:
return (None,"Couldn't find latest version code")
return (version, str(int(vercode)))
2012-03-10 13:50:34 +01:00
except BuildException as be:
msg = "Could not scan app %s due to BuildException: %s" % (app['id'], be)
return (None, msg)
except VCSException as vcse:
msg = "VCS error while scanning app %s: %s" % (app['id'], vcse)
return (None, msg)
except Exception:
msg = "Could not scan app %s due to unknown error: %s" % (app['id'], traceback.format_exc())
return (None, msg)
2013-10-17 23:27:55 +02:00
def check_repotrunk(app, sdk_path, branch=None):
try:
if app['Repo Type'] == 'srclib':
build_dir = os.path.join('build', 'srclib', app['Repo'])
repotype = common.getsrclibvcs(app['Repo'])
else:
build_dir = os.path.join('build/', app['id'])
repotype = app['Repo Type']
if repotype not in ('svn', 'git-svn'):
return (None, 'RepoTrunk update mode only makes sense in svn and git-svn repositories')
# Set up vcs interface and make sure we have the latest code...
vcs = common.getvcs(app['Repo Type'], app['Repo'], build_dir, sdk_path)
vcs.gotorevision(None)
ref = vcs.getref()
return (ref, ref)
except BuildException as be:
msg = "Could not scan app %s due to BuildException: %s" % (app['id'], be)
return (None, msg)
except VCSException as vcse:
msg = "VCS error while scanning app %s: %s" % (app['id'], vcse)
return (None, msg)
except Exception:
msg = "Could not scan app %s due to unknown error: %s" % (app['id'], traceback.format_exc())
return (None, msg)
2012-03-10 13:50:34 +01:00
2013-08-14 14:51:17 +02:00
# Check for a new version by looking at the Google Play Store.
# Returns (None, "a message") if this didn't work, or (version, None) for
2012-01-13 11:29:19 +01:00
# the details of the current version.
2013-08-14 14:51:17 +02:00
def check_gplay(app):
time.sleep(15)
url = 'https://play.google.com/store/apps/details?id=' + app['id']
headers = {'User-Agent' : 'Mozilla/5.0 (X11; Linux i686; rv:18.0) Gecko/20100101 Firefox/18.0'}
req = urllib2.Request(url, None, headers)
try:
2013-05-31 08:50:21 +02:00
resp = urllib2.urlopen(req, None, 20)
2013-06-03 11:25:20 +02:00
page = resp.read()
except urllib2.HTTPError, e:
2013-08-14 14:24:34 +02:00
return (None, str(e.code))
2013-05-31 08:50:21 +02:00
except Exception, e:
return (None, 'Failed:' + str(e))
2012-01-03 16:35:29 +01:00
version = None
2013-07-21 15:01:41 +02:00
m = re.search('itemprop="softwareVersion">[ ]*([^<]+)[ ]*</div>', page)
2012-01-03 16:35:29 +01:00
if m:
html_parser = HTMLParser.HTMLParser()
2012-01-03 16:35:29 +01:00
version = html_parser.unescape(m.group(1))
if version == 'Varies with device':
return (None, 'Device-variable version, cannot use this method')
2012-01-13 11:29:19 +01:00
if not version:
return (None, "Couldn't find version")
2013-08-14 14:24:34 +02:00
return (version.strip(), None)
2012-01-13 11:29:19 +01:00
def main():
2012-01-13 11:29:19 +01:00
#Read configuration...
globals()['gradle'] = "gradle"
execfile('config.py', globals())
2012-01-13 11:29:19 +01:00
# Parse command line...
parser = OptionParser()
parser.add_option("-v", "--verbose", action="store_true", default=False,
help="Spew out even more information than normal")
parser.add_option("-p", "--package", default=None,
2012-09-20 15:16:55 +02:00
help="Check only the specified package")
parser.add_option("--auto", action="store_true", default=False,
help="Process auto-updates")
2013-07-31 18:39:56 +02:00
parser.add_option("--autoonly", action="store_true", default=False,
help="Only process apps with auto-updates")
parser.add_option("--commit", action="store_true", default=False,
help="Commit changes")
2013-08-14 14:51:17 +02:00
parser.add_option("--gplay", action="store_true", default=False,
2013-08-14 14:24:34 +02:00
help="Only print differences with the Play Store")
(options, args) = parser.parse_args()
2012-01-13 11:29:19 +01:00
# Get all apps...
apps = common.read_metadata(options.verbose)
2012-01-13 11:29:19 +01:00
# Filter apps according to command-line options
if options.package:
apps = [app for app in apps if app['id'] == options.package]
if len(apps) == 0:
print "No such package"
sys.exit(1)
2013-08-14 14:51:17 +02:00
if options.gplay:
2013-08-14 14:24:34 +02:00
for app in apps:
2013-08-14 14:51:17 +02:00
version, reason = check_gplay(app)
2013-08-14 14:24:34 +02:00
if version is None and options.verbose:
if reason == '404':
print "%s (%s) is not in the Play Store" % (app['Auto Name'], app['id'])
else:
print "%s (%s) encountered a problem: %s" % (app['Auto Name'], app['id'], reason)
if version is not None:
stored = app['Current Version']
if LooseVersion(stored) < LooseVersion(version):
print "%s (%s) has version %s on the Play Store, which is bigger than %s" % (
app['Auto Name'], app['id'], version, stored)
elif options.verbose:
print "%s (%s) has the same version %s on the Play Store" % (
app['Auto Name'], app['id'], version)
return
for app in apps:
2013-06-14 08:16:58 +02:00
2013-07-31 18:39:56 +02:00
process = True
if options.autoonly and app['Auto Update Mode'] == 'None':
process = False
if process:
print "Processing " + app['id'] + '...'
writeit = False
logmsg = None
tag = None
2013-07-31 18:39:56 +02:00
mode = app['Update Check Mode']
2013-08-14 13:39:00 +02:00
if mode == 'Tags':
(version, vercode, tag) = check_tags(app, sdk_path)
2013-07-31 18:39:56 +02:00
elif mode == 'RepoManifest':
(version, vercode) = check_repomanifest(app, sdk_path)
elif mode.startswith('RepoManifest/'):
(version, vercode) = check_repomanifest(app, sdk_path, mode[13:])
2013-10-17 23:27:55 +02:00
elif mode == 'RepoTrunk':
(version, vercode) = check_repotrunk(app, sdk_path)
2013-10-01 11:19:17 +02:00
elif mode == 'HTTP':
(version, vercode) = check_http(app)
2013-07-31 18:39:56 +02:00
elif mode == 'Static':
version = None
vercode = 'Checking disabled'
elif mode == 'None':
version = None
vercode = 'Checking disabled'
else:
version = None
vercode = 'Invalid update check method'
2013-06-14 08:16:58 +02:00
updating = False
2013-07-31 18:39:56 +02:00
if not version:
print "..." + vercode
elif vercode == app['Current Version Code']:
2013-07-31 18:39:56 +02:00
print "...up to date"
else:
app['Current Version'] = version
app['Current Version Code'] = str(int(vercode))
updating = True
2013-07-31 18:39:56 +02:00
writeit = True
# Do the Auto Name thing as well as finding the CV real name
2013-07-31 18:39:56 +02:00
if len(app["Repo Type"]) > 0:
try:
if app['Repo Type'] == 'srclib':
app_dir = os.path.join('build', 'srclib', app['Repo'])
else:
app_dir = os.path.join('build/', app['id'])
vcs = common.getvcs(app["Repo Type"], app["Repo"], app_dir, sdk_path)
vcs.gotorevision(tag)
2013-07-31 18:39:56 +02:00
flavour = None
2013-07-31 18:39:56 +02:00
if len(app['builds']) > 0:
if 'subdir' in app['builds'][-1]:
app_dir = os.path.join(app_dir, app['builds'][-1]['subdir'])
if 'gradle' in app['builds'][-1]:
flavour = app['builds'][-1]['gradle']
new_name = common.fetch_real_name(app_dir, flavour)
if new_name != app['Auto Name']:
app['Auto Name'] = new_name
2013-07-31 18:39:56 +02:00
if app['Current Version'].startswith('@string/'):
cv = common.version_name(app['Current Version'], app_dir, flavour)
if app['Current Version'] != cv:
app['Current Version'] = cv
writeit = True
2013-07-31 18:39:56 +02:00
except Exception:
msg = "Auto Name or Current Version failed for %s due to exception: %s" % (app['id'], traceback.format_exc())
2013-07-31 18:39:56 +02:00
if updating:
print '...updating to version %s (%s)' % (app['Current Version'], app['Current Version Code'])
name = str('%s (%s)' % (app['Auto Name'], app['id']) if app['Auto Name'] else app['id'])
logmsg = 'Update current version of %s to %s (%s)' % (name, app['Current Version'], app['Current Version Code'])
2013-07-31 18:39:56 +02:00
if options.auto:
mode = app['Auto Update Mode']
if mode == 'None':
pass
elif mode.startswith('Version '):
pattern = mode[8:]
if pattern.startswith('+'):
o = pattern.find(' ')
suffix = pattern[1:o]
pattern = pattern[o + 1:]
else:
suffix = ''
gotcur = False
latest = None
for build in app['builds']:
if build['vercode'] == app['Current Version Code']:
gotcur = True
if not latest or int(build['vercode']) > int(latest['vercode']):
latest = build
if not gotcur:
newbuild = latest.copy()
del newbuild['origlines']
newbuild['vercode'] = app['Current Version Code']
newbuild['version'] = app['Current Version'] + suffix
print "...auto-generating build for " + newbuild['version']
commit = pattern.replace('%v', newbuild['version'])
commit = commit.replace('%c', newbuild['vercode'])
newbuild['commit'] = commit
app['builds'].append(newbuild)
2013-06-14 08:16:58 +02:00
writeit = True
2013-07-31 18:39:56 +02:00
logmsg = "Update " + app['id'] + " to " + newbuild['version']
else:
2013-07-31 18:39:56 +02:00
print 'Invalid auto update mode'
if writeit:
metafile = os.path.join('metadata', app['id'] + '.txt')
common.write_metadata(metafile, app)
if options.commit and logmsg:
print "Commiting update for " + metafile
2013-07-31 18:39:56 +02:00
if subprocess.call("git add " + metafile, shell=True) != 0:
print "Git add failed"
sys.exit(1)
if subprocess.call("git commit -m '" + logmsg.replace("'", "\\'") + "'", shell=True) != 0:
print "Git commit failed"
sys.exit(1)
print "Finished."
if __name__ == "__main__":
main()