2013-10-31 13:25:39 +01:00
|
|
|
#!/usr/bin/env python2
|
2011-12-31 13:01:16 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
2012-02-11 16:27:09 +01:00
|
|
|
# checkupdates.py - part of the FDroid server tools
|
2013-02-11 16:24:01 +01:00
|
|
|
# Copyright (C) 2010-13, Ciaran Gultnieks, ciaran@ciarang.com
|
2014-01-28 14:07:19 +01:00
|
|
|
# Copyright (C) 2013-2014 Daniel Martí <mvdan@mvdan.cc>
|
2011-12-31 13:01:16 +01:00
|
|
|
#
|
|
|
|
# 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
|
2013-02-11 16:24:01 +01:00
|
|
|
import urllib2
|
2011-12-31 13:01:16 +01:00
|
|
|
import time
|
2013-02-11 16:24:01 +01:00
|
|
|
import subprocess
|
2011-12-31 13:01:16 +01:00
|
|
|
from optparse import OptionParser
|
2012-04-19 11:57:12 +02:00
|
|
|
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
|
2014-01-27 17:04:22 +01:00
|
|
|
import logging
|
|
|
|
|
2014-05-02 04:36:12 +02:00
|
|
|
import common
|
|
|
|
import metadata
|
2012-04-19 11:57:12 +02:00
|
|
|
from common import BuildException
|
|
|
|
from common import VCSException
|
2013-12-20 09:42:10 +01:00
|
|
|
from metadata import MetaDataException
|
2011-12-31 13:01:16 +01:00
|
|
|
|
|
|
|
|
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:
|
2014-02-22 10:32:29 +01:00
|
|
|
logging.debug("...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 != '.':
|
2014-02-22 10:32:29 +01:00
|
|
|
logging.debug("...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:
|
2014-03-15 18:28:34 +01:00
|
|
|
msg = "Could not complete http check for app {0} due to unknown error: {1}".format(app['id'], traceback.format_exc())
|
2013-10-01 11:19:17 +02:00
|
|
|
return (None, msg)
|
2012-08-23 15:25:39 +02:00
|
|
|
|
2014-05-02 05:39:33 +02:00
|
|
|
|
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.
|
2014-02-10 11:27:28 +01:00
|
|
|
def check_tags(app, pattern):
|
2012-08-23 15:25:39 +02:00
|
|
|
|
|
|
|
try:
|
|
|
|
|
2014-03-18 23:37:15 +01:00
|
|
|
appid = app['Update Check Name'] if app['Update Check Name'] else app['id']
|
2013-05-24 23:35:56 +02:00
|
|
|
if app['Repo Type'] == 'srclib':
|
2013-10-09 23:36:02 +02:00
|
|
|
build_dir = os.path.join('build', 'srclib', app['Repo'])
|
2013-05-24 23:35:56 +02:00
|
|
|
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...
|
2013-11-08 20:44:27 +01:00
|
|
|
vcs = common.getvcs(app['Repo Type'], app['Repo'], build_dir)
|
2013-05-24 23:35:56 +02:00
|
|
|
|
|
|
|
vcs.gotorevision(None)
|
2012-08-23 15:25:39 +02:00
|
|
|
|
2013-08-08 12:55:48 +02:00
|
|
|
flavour = None
|
2013-05-26 20:17:47 +02:00
|
|
|
if len(app['builds']) > 0:
|
|
|
|
if 'subdir' in app['builds'][-1]:
|
|
|
|
build_dir = os.path.join(build_dir, app['builds'][-1]['subdir'])
|
2013-08-08 12:55:48 +02:00
|
|
|
if 'gradle' in app['builds'][-1]:
|
|
|
|
flavour = app['builds'][-1]['gradle']
|
2014-03-21 19:10:50 +01:00
|
|
|
if flavour == 'yes':
|
|
|
|
flavour = None
|
2012-08-23 15:25:39 +02:00
|
|
|
|
2013-10-29 09:55:15 +01:00
|
|
|
htag = None
|
2012-08-23 15:25:39 +02:00
|
|
|
hver = None
|
|
|
|
hcode = "0"
|
|
|
|
|
2014-02-10 12:20:22 +01:00
|
|
|
tags = vcs.gettags()
|
|
|
|
if pattern:
|
|
|
|
pat = re.compile(pattern)
|
|
|
|
tags = [tag for tag in tags if pat.match(tag)]
|
2014-02-10 11:27:28 +01:00
|
|
|
|
2014-04-17 21:05:18 +02:00
|
|
|
if repotype in ('git',):
|
|
|
|
tags = vcs.latesttags(tags, 5)
|
|
|
|
|
2014-02-10 11:27:28 +01:00
|
|
|
for tag in tags:
|
2014-02-22 10:32:29 +01:00
|
|
|
logging.debug("Check tag: '{0}'".format(tag))
|
2012-08-23 15:25:39 +02:00
|
|
|
vcs.gotorevision(tag)
|
|
|
|
|
2013-03-21 15:21:01 +01:00
|
|
|
# Only process tags where the manifest exists...
|
2013-08-13 12:02:48 +02:00
|
|
|
paths = common.manifest_paths(build_dir, flavour)
|
|
|
|
version, vercode, package = common.parse_androidmanifests(paths)
|
2014-03-18 23:37:15 +01:00
|
|
|
if not package or package != appid or not version or not vercode:
|
|
|
|
continue
|
|
|
|
|
2014-05-06 19:50:52 +02:00
|
|
|
logging.debug("Manifest exists. Found version {0} ({1})"
|
|
|
|
.format(version, vercode))
|
2014-03-18 23:37:15 +01:00
|
|
|
if int(vercode) > int(hcode):
|
|
|
|
htag = tag
|
|
|
|
hcode = str(int(vercode))
|
|
|
|
hver = version
|
2012-08-23 15:25:39 +02:00
|
|
|
|
|
|
|
if hver:
|
2013-10-29 09:55:15 +01:00
|
|
|
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:
|
2014-03-15 18:28:34 +01:00
|
|
|
msg = "Could not scan app {0} due to BuildException: {1}".format(app['id'], be)
|
2013-10-29 09:55:15 +01:00
|
|
|
return (None, msg, None)
|
2012-08-23 15:25:39 +02:00
|
|
|
except VCSException as vcse:
|
2014-03-15 18:28:34 +01:00
|
|
|
msg = "VCS error while scanning app {0}: {1}".format(app['id'], vcse)
|
2013-10-29 09:55:15 +01:00
|
|
|
return (None, msg, None)
|
2012-08-23 15:25:39 +02:00
|
|
|
except Exception:
|
2014-03-15 18:28:34 +01:00
|
|
|
msg = "Could not scan app {0} due to unknown error: {1}".format(app['id'], traceback.format_exc())
|
2013-10-29 09:55:15 +01:00
|
|
|
return (None, msg, None)
|
2012-08-23 15:25:39 +02:00
|
|
|
|
2014-05-02 05:39:33 +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-11-08 20:44:27 +01:00
|
|
|
def check_repomanifest(app, branch=None):
|
2012-03-10 13:50:34 +01:00
|
|
|
|
|
|
|
try:
|
|
|
|
|
2014-03-21 19:11:08 +01:00
|
|
|
appid = app['Update Check Name'] if app['Update Check Name'] else app['id']
|
2013-05-24 23:35:56 +02:00
|
|
|
if app['Repo Type'] == 'srclib':
|
2013-10-09 23:39:44 +02:00
|
|
|
build_dir = os.path.join('build', 'srclib', app['Repo'])
|
2013-05-24 23:35:56 +02:00
|
|
|
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...
|
2013-11-08 20:44:27 +01:00
|
|
|
vcs = common.getvcs(app['Repo Type'], app['Repo'], build_dir)
|
2013-05-24 23:35:56 +02:00
|
|
|
|
2013-10-31 17:35:13 +01:00
|
|
|
if repotype == 'git':
|
2013-05-17 22:30:35 +02:00
|
|
|
if branch:
|
2013-09-15 23:20:27 +02:00
|
|
|
branch = 'origin/'+branch
|
|
|
|
vcs.gotorevision(branch)
|
2013-10-31 17:35:13 +01:00
|
|
|
elif repotype == 'git-svn':
|
2013-09-15 23:20:27 +02:00
|
|
|
vcs.gotorevision(branch)
|
2013-10-31 17:35:13 +01:00
|
|
|
elif repotype == 'svn':
|
2013-05-21 20:21:46 +02:00
|
|
|
vcs.gotorevision(None)
|
2013-10-31 17:35:13 +01:00
|
|
|
elif repotype == 'hg':
|
2013-09-15 23:20:27 +02:00
|
|
|
vcs.gotorevision(branch)
|
2013-10-31 17:35:13 +01:00
|
|
|
elif repotype == 'bzr':
|
2013-06-24 20:16:21 +02:00
|
|
|
vcs.gotorevision(None)
|
2012-03-10 13:50:34 +01:00
|
|
|
|
2013-08-13 14:51:40 +02:00
|
|
|
flavour = None
|
|
|
|
|
2013-05-26 20:17:47 +02:00
|
|
|
if len(app['builds']) > 0:
|
|
|
|
if 'subdir' in app['builds'][-1]:
|
|
|
|
build_dir = os.path.join(build_dir, app['builds'][-1]['subdir'])
|
2013-08-08 12:55:48 +02:00
|
|
|
if 'gradle' in app['builds'][-1]:
|
|
|
|
flavour = app['builds'][-1]['gradle']
|
2014-03-21 19:10:50 +01:00
|
|
|
if flavour == 'yes':
|
|
|
|
flavour = None
|
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")
|
|
|
|
|
2013-08-13 12:02:48 +02:00
|
|
|
paths = common.manifest_paths(build_dir, flavour)
|
2013-08-08 12:55:48 +02:00
|
|
|
|
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")
|
2014-03-18 23:37:15 +01:00
|
|
|
if package != appid:
|
2012-03-10 13:50:34 +01:00
|
|
|
return (None, "Package ID mismatch")
|
|
|
|
if not version:
|
2014-05-02 04:16:32 +02:00
|
|
|
return (None, "Couldn't find latest version name")
|
2012-03-10 13:50:34 +01:00
|
|
|
if not vercode:
|
2014-05-02 04:16:32 +02:00
|
|
|
return (None, "Couldn't find latest version code")
|
2012-03-10 13:50:34 +01:00
|
|
|
|
2014-01-07 10:04:11 +01:00
|
|
|
vercode = str(int(vercode))
|
|
|
|
|
2014-03-15 18:28:34 +01:00
|
|
|
logging.debug("Manifest exists. Found version {0} ({1})".format(version, vercode))
|
2014-01-07 10:04:11 +01:00
|
|
|
|
|
|
|
return (version, vercode)
|
2012-03-10 13:50:34 +01:00
|
|
|
|
|
|
|
except BuildException as be:
|
2014-03-15 18:28:34 +01:00
|
|
|
msg = "Could not scan app {0} due to BuildException: {1}".format(app['id'], be)
|
2012-03-10 13:50:34 +01:00
|
|
|
return (None, msg)
|
|
|
|
except VCSException as vcse:
|
2014-03-15 18:28:34 +01:00
|
|
|
msg = "VCS error while scanning app {0}: {1}".format(app['id'], vcse)
|
2012-03-10 13:50:34 +01:00
|
|
|
return (None, msg)
|
|
|
|
except Exception:
|
2014-03-15 18:28:34 +01:00
|
|
|
msg = "Could not scan app {0} due to unknown error: {1}".format(app['id'], traceback.format_exc())
|
2012-03-10 13:50:34 +01:00
|
|
|
return (None, msg)
|
|
|
|
|
2014-05-02 05:39:33 +02:00
|
|
|
|
2013-11-08 20:44:27 +01:00
|
|
|
def check_repotrunk(app, branch=None):
|
2013-10-17 23:27:55 +02:00
|
|
|
|
|
|
|
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...
|
2013-11-08 20:44:27 +01:00
|
|
|
vcs = common.getvcs(app['Repo Type'], app['Repo'], build_dir)
|
2013-10-17 23:27:55 +02:00
|
|
|
|
|
|
|
vcs.gotorevision(None)
|
|
|
|
|
|
|
|
ref = vcs.getref()
|
|
|
|
return (ref, ref)
|
|
|
|
except BuildException as be:
|
2014-03-15 18:28:34 +01:00
|
|
|
msg = "Could not scan app {0} due to BuildException: {1}".format(app['id'], be)
|
2013-10-17 23:27:55 +02:00
|
|
|
return (None, msg)
|
|
|
|
except VCSException as vcse:
|
2014-03-15 18:28:34 +01:00
|
|
|
msg = "VCS error while scanning app {0}: {1}".format(app['id'], vcse)
|
2013-10-17 23:27:55 +02:00
|
|
|
return (None, msg)
|
|
|
|
except Exception:
|
2014-03-15 18:28:34 +01:00
|
|
|
msg = "Could not scan app {0} due to unknown error: {1}".format(app['id'], traceback.format_exc())
|
2013-10-17 23:27:55 +02:00
|
|
|
return (None, msg)
|
2012-03-10 13:50:34 +01:00
|
|
|
|
2014-05-02 05:39:33 +02: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):
|
2013-02-11 16:24:01 +01:00
|
|
|
time.sleep(15)
|
|
|
|
url = 'https://play.google.com/store/apps/details?id=' + app['id']
|
2014-05-02 04:06:59 +02:00
|
|
|
headers = {'User-Agent': 'Mozilla/5.0 (X11; Linux i686; rv:18.0) Gecko/20100101 Firefox/18.0'}
|
2013-02-11 16:24:01 +01:00
|
|
|
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()
|
2013-02-11 16:24:01 +01:00
|
|
|
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))
|
2011-12-31 13:01:16 +01:00
|
|
|
|
2012-01-03 16:35:29 +01:00
|
|
|
version = None
|
2011-12-31 13:01:16 +01:00
|
|
|
|
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:
|
2012-02-26 18:14:15 +01:00
|
|
|
html_parser = HTMLParser.HTMLParser()
|
2012-01-03 16:35:29 +01:00
|
|
|
version = html_parser.unescape(m.group(1))
|
2011-12-31 13:01:16 +01:00
|
|
|
|
2012-01-27 20:18:16 +01:00
|
|
|
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
|
|
|
|
|
|
|
|
2013-11-01 12:10:57 +01:00
|
|
|
config = None
|
|
|
|
options = None
|
2013-10-31 16:37:39 +01:00
|
|
|
|
2014-05-02 05:39:33 +02:00
|
|
|
|
2012-02-26 15:18:58 +01:00
|
|
|
def main():
|
2012-01-13 11:29:19 +01:00
|
|
|
|
2013-11-01 12:10:57 +01:00
|
|
|
global config, options
|
2012-01-13 11:29:19 +01:00
|
|
|
|
2012-02-26 15:18:58 +01:00
|
|
|
# Parse command line...
|
2013-12-19 23:18:27 +01:00
|
|
|
parser = OptionParser(usage="Usage: %prog [options] [APPID [APPID ...]]")
|
2012-02-26 15:18:58 +01:00
|
|
|
parser.add_option("-v", "--verbose", action="store_true", default=False,
|
|
|
|
help="Spew out even more information than normal")
|
2014-02-22 10:46:24 +01:00
|
|
|
parser.add_option("-q", "--quiet", action="store_true", default=False,
|
|
|
|
help="Restrict output to warnings and errors")
|
2012-09-20 15:16:55 +02:00
|
|
|
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")
|
2013-02-11 16:24:01 +01:00
|
|
|
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")
|
2012-02-26 15:18:58 +01:00
|
|
|
(options, args) = parser.parse_args()
|
2012-01-13 11:29:19 +01:00
|
|
|
|
2013-11-01 12:10:57 +01:00
|
|
|
config = common.read_config(options)
|
|
|
|
|
2012-02-26 15:18:58 +01:00
|
|
|
# Get all apps...
|
2013-12-11 19:37:38 +01:00
|
|
|
allapps = metadata.read_metadata(options.verbose)
|
2012-01-13 11:29:19 +01:00
|
|
|
|
2013-12-19 22:55:17 +01:00
|
|
|
apps = common.read_app_args(args, allapps, False)
|
2012-01-23 22:26:51 +01:00
|
|
|
|
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)
|
2014-01-27 17:04:22 +01:00
|
|
|
if version is None:
|
2013-08-14 14:24:34 +02:00
|
|
|
if reason == '404':
|
2014-03-15 18:28:34 +01:00
|
|
|
logging.info("{0} is not in the Play Store".format(common.getappname(app)))
|
2013-08-14 14:24:34 +02:00
|
|
|
else:
|
2014-03-15 18:28:34 +01:00
|
|
|
logging.info("{0} encountered a problem: {1}".format(common.getappname(app), reason))
|
2013-08-14 14:24:34 +02:00
|
|
|
if version is not None:
|
|
|
|
stored = app['Current Version']
|
2014-01-15 17:45:47 +01:00
|
|
|
if not stored:
|
2014-05-06 19:50:52 +02:00
|
|
|
logging.info("{0} has no Current Version but has version {1} on the Play Store"
|
|
|
|
.format(common.getappname(app), version))
|
2014-01-15 16:21:48 +01:00
|
|
|
elif LooseVersion(stored) < LooseVersion(version):
|
2014-05-06 19:50:52 +02:00
|
|
|
logging.info("{0} has version {1} on the Play Store, which is bigger than {2}"
|
|
|
|
.format(common.getappname(app), version, stored))
|
2014-01-27 17:04:22 +01:00
|
|
|
else:
|
2014-01-15 17:25:31 +01:00
|
|
|
if stored != version:
|
2014-05-06 19:50:52 +02:00
|
|
|
logging.info("{0} has version {1} on the Play Store, which differs from {2}"
|
|
|
|
.format(common.getappname(app), version, stored))
|
2014-01-15 17:25:31 +01:00
|
|
|
else:
|
2014-05-06 19:50:52 +02:00
|
|
|
logging.info("{0} has the same version {1} on the Play Store"
|
|
|
|
.format(common.getappname(app), version))
|
2013-08-14 14:24:34 +02:00
|
|
|
return
|
|
|
|
|
2012-03-11 22:30:17 +01:00
|
|
|
for app in apps:
|
2013-06-14 08:16:58 +02:00
|
|
|
|
2014-03-11 09:03:18 +01:00
|
|
|
if options.autoonly and app['Auto Update Mode'] in ('None', 'Static'):
|
2014-03-15 18:28:34 +01:00
|
|
|
logging.debug("Nothing to do for {0}...".format(app['id']))
|
2013-10-31 15:43:36 +01:00
|
|
|
continue
|
2013-10-31 15:42:58 +01:00
|
|
|
|
2014-01-27 17:04:22 +01:00
|
|
|
logging.info("Processing " + app['id'] + '...')
|
2013-10-31 15:42:58 +01:00
|
|
|
|
2014-03-16 09:22:35 +01:00
|
|
|
# If a change is made, commitmsg should be set to a description of it.
|
|
|
|
# Only if this is set will changes be written back to the metadata.
|
|
|
|
commitmsg = None
|
2013-10-31 15:42:58 +01:00
|
|
|
|
|
|
|
tag = None
|
2013-11-01 13:25:50 +01:00
|
|
|
msg = None
|
2013-11-01 19:12:22 +01:00
|
|
|
vercode = None
|
2014-02-22 11:03:19 +01:00
|
|
|
noverok = False
|
2013-10-31 15:42:58 +01:00
|
|
|
mode = app['Update Check Mode']
|
2014-02-10 11:27:28 +01:00
|
|
|
if mode.startswith('Tags'):
|
|
|
|
pattern = mode[5:] if len(mode) > 4 else None
|
|
|
|
(version, vercode, tag) = check_tags(app, pattern)
|
2014-03-21 19:19:17 +01:00
|
|
|
msg = vercode
|
2013-10-31 15:42:58 +01:00
|
|
|
elif mode == 'RepoManifest':
|
2013-11-08 20:44:27 +01:00
|
|
|
(version, vercode) = check_repomanifest(app)
|
2014-03-21 19:11:21 +01:00
|
|
|
msg = vercode
|
2013-10-31 15:42:58 +01:00
|
|
|
elif mode.startswith('RepoManifest/'):
|
2013-11-13 17:31:35 +01:00
|
|
|
tag = mode[13:]
|
|
|
|
(version, vercode) = check_repomanifest(app, tag)
|
2014-03-21 19:11:21 +01:00
|
|
|
msg = vercode
|
2013-10-31 15:42:58 +01:00
|
|
|
elif mode == 'RepoTrunk':
|
2013-11-08 20:44:27 +01:00
|
|
|
(version, vercode) = check_repotrunk(app)
|
2014-03-21 19:11:21 +01:00
|
|
|
msg = vercode
|
2013-10-31 15:42:58 +01:00
|
|
|
elif mode == 'HTTP':
|
|
|
|
(version, vercode) = check_http(app)
|
2014-03-21 19:11:21 +01:00
|
|
|
msg = vercode
|
2014-03-11 09:03:18 +01:00
|
|
|
elif mode in ('None', 'Static'):
|
2013-10-31 15:42:58 +01:00
|
|
|
version = None
|
2013-11-01 13:25:50 +01:00
|
|
|
msg = 'Checking disabled'
|
2014-02-22 11:03:19 +01:00
|
|
|
noverok = True
|
2013-10-31 15:42:58 +01:00
|
|
|
else:
|
|
|
|
version = None
|
2013-11-01 13:25:50 +01:00
|
|
|
msg = 'Invalid update check method'
|
|
|
|
|
|
|
|
if vercode and app['Vercode Operation']:
|
|
|
|
op = app['Vercode Operation'].replace("%c", str(int(vercode)))
|
|
|
|
vercode = str(eval(op))
|
2013-10-31 15:42:58 +01:00
|
|
|
|
|
|
|
updating = False
|
|
|
|
if not version:
|
2014-02-23 23:37:10 +01:00
|
|
|
logmsg = "...{0} : {1}".format(app['id'], msg)
|
2014-02-22 11:03:19 +01:00
|
|
|
if noverok:
|
|
|
|
logging.info(logmsg)
|
|
|
|
else:
|
|
|
|
logging.warn(logmsg)
|
2013-10-31 15:42:58 +01:00
|
|
|
elif vercode == app['Current Version Code']:
|
2014-01-27 17:04:22 +01:00
|
|
|
logging.info("...up to date")
|
2013-10-31 15:42:58 +01:00
|
|
|
else:
|
|
|
|
app['Current Version'] = version
|
|
|
|
app['Current Version Code'] = str(int(vercode))
|
|
|
|
updating = True
|
|
|
|
|
|
|
|
# Do the Auto Name thing as well as finding the CV real name
|
2014-03-11 09:03:18 +01:00
|
|
|
if len(app["Repo Type"]) > 0 and mode not in ('None', 'Static'):
|
2013-10-31 15:42:58 +01:00
|
|
|
|
|
|
|
try:
|
|
|
|
|
|
|
|
if app['Repo Type'] == 'srclib':
|
|
|
|
app_dir = os.path.join('build', 'srclib', app['Repo'])
|
|
|
|
else:
|
|
|
|
app_dir = os.path.join('build/', app['id'])
|
|
|
|
|
2013-11-08 20:44:27 +01:00
|
|
|
vcs = common.getvcs(app["Repo Type"], app["Repo"], app_dir)
|
2013-10-31 15:42:58 +01:00
|
|
|
vcs.gotorevision(tag)
|
|
|
|
|
|
|
|
flavour = None
|
|
|
|
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']
|
2014-03-21 19:10:50 +01:00
|
|
|
if flavour == 'yes':
|
|
|
|
flavour = None
|
2013-10-31 15:42:58 +01:00
|
|
|
|
2014-03-16 09:43:24 +01:00
|
|
|
logging.debug("...fetch auto name from " + app_dir +
|
2014-05-06 19:50:52 +02:00
|
|
|
((" (flavour: %s)" % flavour) if flavour else ""))
|
2013-10-31 15:42:58 +01:00
|
|
|
new_name = common.fetch_real_name(app_dir, flavour)
|
2014-03-16 23:12:37 +01:00
|
|
|
if new_name:
|
|
|
|
logging.debug("...got autoname '" + new_name + "'")
|
|
|
|
if new_name != app['Auto Name']:
|
|
|
|
app['Auto Name'] = new_name
|
|
|
|
if not commitmsg:
|
|
|
|
commitmsg = "Set autoname of {0}".format(common.getappname(app))
|
|
|
|
else:
|
|
|
|
logging.debug("...couldn't get autoname")
|
2013-10-31 15:42:58 +01: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
|
2014-03-16 09:22:35 +01:00
|
|
|
if not commitmsg:
|
|
|
|
commitmsg = "Fix CV of {0}".format(common.getappname(app))
|
2013-10-31 15:42:58 +01:00
|
|
|
except Exception:
|
2014-03-15 18:28:34 +01:00
|
|
|
logging.error("Auto Name or Current Version failed for {0} due to exception: {1}".format(app['id'], traceback.format_exc()))
|
2013-10-31 15:42:58 +01:00
|
|
|
|
|
|
|
if updating:
|
2013-12-02 15:28:30 +01:00
|
|
|
name = common.getappname(app)
|
|
|
|
ver = common.getcvname(app)
|
2014-01-27 17:04:22 +01:00
|
|
|
logging.info('...updating to version %s' % ver)
|
2014-03-16 09:22:35 +01:00
|
|
|
commitmsg = 'Update CV of %s to %s' % (name, ver)
|
2013-10-31 15:42:58 +01:00
|
|
|
|
|
|
|
if options.auto:
|
|
|
|
mode = app['Auto Update Mode']
|
2014-03-11 09:03:18 +01:00
|
|
|
if mode in ('None', 'Static'):
|
2013-10-31 15:42:58 +01:00
|
|
|
pass
|
|
|
|
elif mode.startswith('Version '):
|
|
|
|
pattern = mode[8:]
|
|
|
|
if pattern.startswith('+'):
|
2013-12-20 09:42:10 +01:00
|
|
|
try:
|
|
|
|
suffix, pattern = pattern.split(' ', 1)
|
|
|
|
except ValueError:
|
2013-12-20 18:43:52 +01:00
|
|
|
raise MetaDataException("Invalid AUM: " + mode)
|
2013-01-21 12:09:05 +01:00
|
|
|
else:
|
2013-10-31 15:42:58 +01:00
|
|
|
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
|
2014-02-19 11:05:55 +01:00
|
|
|
|
2014-04-29 00:00:40 +02:00
|
|
|
if not gotcur:
|
2013-10-31 15:42:58 +01:00
|
|
|
newbuild = latest.copy()
|
2014-04-29 16:06:24 +02:00
|
|
|
for k in ('origlines', 'disable'):
|
|
|
|
if k in newbuild:
|
|
|
|
del newbuild[k]
|
2013-10-31 15:42:58 +01:00
|
|
|
newbuild['vercode'] = app['Current Version Code']
|
|
|
|
newbuild['version'] = app['Current Version'] + suffix
|
2014-01-27 17:04:22 +01:00
|
|
|
logging.info("...auto-generating build for " + newbuild['version'])
|
2013-10-31 15:42:58 +01:00
|
|
|
commit = pattern.replace('%v', newbuild['version'])
|
|
|
|
commit = commit.replace('%c', newbuild['vercode'])
|
|
|
|
newbuild['commit'] = commit
|
|
|
|
app['builds'].append(newbuild)
|
2013-12-02 15:28:30 +01:00
|
|
|
name = common.getappname(app)
|
|
|
|
ver = common.getcvname(app)
|
2014-03-16 09:22:35 +01:00
|
|
|
commitmsg = "Update %s to %s" % (name, ver)
|
2013-10-31 15:42:58 +01:00
|
|
|
else:
|
2014-02-22 11:03:19 +01:00
|
|
|
logging.warn('Invalid auto update mode "' + mode + '" on ' + app['id'])
|
2013-10-31 15:42:58 +01:00
|
|
|
|
2014-03-16 09:22:35 +01:00
|
|
|
if commitmsg:
|
2013-10-31 15:42:58 +01:00
|
|
|
metafile = os.path.join('metadata', app['id'] + '.txt')
|
2013-11-19 15:35:16 +01:00
|
|
|
metadata.write_metadata(metafile, app)
|
2014-03-16 09:22:35 +01:00
|
|
|
if options.commit:
|
2014-01-27 17:04:22 +01:00
|
|
|
logging.info("Commiting update for " + metafile)
|
2014-05-06 19:50:52 +02:00
|
|
|
gitcmd = ["git", "commit", "-m", commitmsg]
|
2013-11-03 13:07:47 +01:00
|
|
|
if 'auto_author' in config:
|
|
|
|
gitcmd.extend(['--author', config['auto_author']])
|
|
|
|
gitcmd.extend(["--", metafile])
|
|
|
|
if subprocess.call(gitcmd) != 0:
|
2014-02-22 10:32:29 +01:00
|
|
|
logging.error("Git commit failed")
|
2013-10-31 15:42:58 +01:00
|
|
|
sys.exit(1)
|
2012-02-26 15:18:58 +01:00
|
|
|
|
2014-01-27 17:04:22 +01:00
|
|
|
logging.info("Finished.")
|
2012-02-26 15:18:58 +01:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|