2016-01-04 16:33:20 +01:00
|
|
|
#!/usr/bin/env python3
|
2011-12-31 13:01:16 +01:00
|
|
|
#
|
2012-02-11 16:27:09 +01:00
|
|
|
# checkupdates.py - part of the FDroid server tools
|
2015-01-12 19:58:03 +01:00
|
|
|
# Copyright (C) 2010-2015, 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 os
|
|
|
|
import re
|
2016-01-04 18:02:36 +01:00
|
|
|
import urllib.request
|
|
|
|
import urllib.error
|
2011-12-31 13:01:16 +01:00
|
|
|
import time
|
2013-02-11 16:24:01 +01:00
|
|
|
import subprocess
|
2018-01-17 15:18:05 +01:00
|
|
|
import sys
|
2015-09-04 11:37:05 +02:00
|
|
|
from argparse import ArgumentParser
|
2012-04-19 11:57:12 +02:00
|
|
|
import traceback
|
2017-09-13 01:42:15 +02:00
|
|
|
import html
|
2013-08-14 14:24:34 +02:00
|
|
|
from distutils.version import LooseVersion
|
2014-01-27 17:04:22 +01:00
|
|
|
import logging
|
2015-12-07 12:39:04 +01:00
|
|
|
import copy
|
2014-01-27 17:04:22 +01:00
|
|
|
|
2017-09-13 18:03:57 +02:00
|
|
|
from . import _
|
2016-01-04 17:37:35 +01:00
|
|
|
from . import common
|
|
|
|
from . import metadata
|
2017-12-04 15:10:21 +01:00
|
|
|
from .exception import VCSException, NoSubmodulesException, FDroidException, 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:
|
|
|
|
|
2015-11-28 13:09:47 +01:00
|
|
|
if not app.UpdateCheckData:
|
2014-07-07 15:41:32 +02:00
|
|
|
raise FDroidException('Missing Update Check Data')
|
2013-10-01 11:19:17 +02:00
|
|
|
|
2015-11-28 13:09:47 +01:00
|
|
|
urlcode, codeex, urlver, verex = app.UpdateCheckData.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))
|
2016-01-04 18:02:36 +01:00
|
|
|
req = urllib.request.Request(urlcode, None)
|
|
|
|
resp = urllib.request.urlopen(req, None, 20)
|
2016-03-14 23:13:58 +01:00
|
|
|
page = resp.read().decode('utf-8')
|
2013-10-01 11:19:17 +02:00
|
|
|
|
|
|
|
m = re.search(codeex, page)
|
|
|
|
if not m:
|
2014-07-07 15:41:32 +02:00
|
|
|
raise FDroidException("No RE match for version code")
|
2017-03-15 09:58:08 +01:00
|
|
|
vercode = m.group(1).strip()
|
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))
|
2016-01-04 18:02:36 +01:00
|
|
|
req = urllib.request.Request(urlver, None)
|
|
|
|
resp = urllib.request.urlopen(req, None, 20)
|
2016-03-14 23:13:58 +01:00
|
|
|
page = resp.read().decode('utf-8')
|
2013-10-01 16:06:02 +02:00
|
|
|
|
|
|
|
m = re.search(verex, page)
|
|
|
|
if not m:
|
2014-07-07 15:41:32 +02:00
|
|
|
raise FDroidException("No RE match for version")
|
2013-10-01 16:06:02 +02:00
|
|
|
version = m.group(1)
|
2013-10-01 11:19:17 +02:00
|
|
|
|
|
|
|
return (version, vercode)
|
|
|
|
|
2014-07-07 15:41:32 +02:00
|
|
|
except FDroidException:
|
2015-11-28 13:09:47 +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.
|
2015-01-11 16:26:15 +01:00
|
|
|
# Returns (None, "a message") if this didn't work, or (version, vercode, tag) for
|
2012-08-23 15:25:39 +02:00
|
|
|
# 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:
|
|
|
|
|
2015-11-28 13:09:47 +01:00
|
|
|
if app.RepoType == 'srclib':
|
|
|
|
build_dir = os.path.join('build', 'srclib', app.Repo)
|
|
|
|
repotype = common.getsrclibvcs(app.Repo)
|
2013-05-24 23:35:56 +02:00
|
|
|
else:
|
2015-11-28 13:09:47 +01:00
|
|
|
build_dir = os.path.join('build', app.id)
|
|
|
|
repotype = app.RepoType
|
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
|
|
|
|
2015-11-28 13:09:47 +01:00
|
|
|
if repotype == 'git-svn' and ';' not in app.Repo:
|
2014-06-26 12:41:50 +02:00
|
|
|
return (None, 'Tags update mode used in git-svn, but the repo was not set up with tags', None)
|
|
|
|
|
2012-08-23 15:25:39 +02:00
|
|
|
# Set up vcs interface and make sure we have the latest code...
|
2015-11-28 13:09:47 +01:00
|
|
|
vcs = common.getvcs(app.RepoType, app.Repo, build_dir)
|
2013-05-24 23:35:56 +02:00
|
|
|
|
|
|
|
vcs.gotorevision(None)
|
2012-08-23 15:25:39 +02:00
|
|
|
|
2016-11-18 23:17:19 +01:00
|
|
|
last_build = app.get_last_build()
|
2015-11-28 17:55:27 +01:00
|
|
|
|
2017-12-04 15:10:21 +01:00
|
|
|
try_init_submodules(app, last_build, vcs)
|
2012-08-23 15:25:39 +02:00
|
|
|
|
2014-07-03 13:44:27 +02:00
|
|
|
hpak = None
|
2013-10-29 09:55:15 +01:00
|
|
|
htag = None
|
2012-08-23 15:25:39 +02:00
|
|
|
hver = None
|
|
|
|
hcode = "0"
|
|
|
|
|
2016-03-02 12:30:40 +01:00
|
|
|
tags = []
|
|
|
|
if repotype == 'git':
|
|
|
|
tags = vcs.latesttags()
|
|
|
|
else:
|
|
|
|
tags = vcs.gettags()
|
2015-10-27 13:42:02 +01:00
|
|
|
if not tags:
|
|
|
|
return (None, "No tags found", None)
|
|
|
|
|
2015-08-25 01:24:05 +02:00
|
|
|
logging.debug("All tags: " + ','.join(tags))
|
2014-02-10 12:20:22 +01:00
|
|
|
if pattern:
|
|
|
|
pat = re.compile(pattern)
|
|
|
|
tags = [tag for tag in tags if pat.match(tag)]
|
2015-10-27 13:42:02 +01:00
|
|
|
if not tags:
|
|
|
|
return (None, "No matching tags found", None)
|
2015-08-25 01:24:05 +02:00
|
|
|
logging.debug("Matching tags: " + ','.join(tags))
|
2014-02-10 11:27:28 +01:00
|
|
|
|
2016-03-02 12:30:40 +01:00
|
|
|
if len(tags) > 5 and repotype == 'git':
|
|
|
|
tags = tags[:5]
|
2015-01-26 19:14:29 +01:00
|
|
|
logging.debug("Latest tags: " + ','.join(tags))
|
2014-04-17 21:05:18 +02:00
|
|
|
|
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)
|
|
|
|
|
2015-10-25 12:00:02 +01:00
|
|
|
for subdir in possible_subdirs(app):
|
2015-10-25 19:09:55 +01:00
|
|
|
if subdir == '.':
|
|
|
|
root_dir = build_dir
|
|
|
|
else:
|
|
|
|
root_dir = os.path.join(build_dir, subdir)
|
2015-11-28 17:55:27 +01:00
|
|
|
paths = common.manifest_paths(root_dir, last_build.gradle)
|
2015-10-30 19:03:53 +01:00
|
|
|
version, vercode, package = common.parse_androidmanifests(paths, app)
|
2015-10-25 19:10:23 +01:00
|
|
|
if vercode:
|
2015-10-25 12:00:02 +01:00
|
|
|
logging.debug("Manifest exists in subdir '{0}'. Found version {1} ({2})"
|
|
|
|
.format(subdir, version, vercode))
|
|
|
|
if int(vercode) > int(hcode):
|
|
|
|
hpak = package
|
|
|
|
htag = tag
|
|
|
|
hcode = str(int(vercode))
|
|
|
|
hver = version
|
2012-08-23 15:25:39 +02:00
|
|
|
|
2014-07-03 13:44:27 +02:00
|
|
|
if not hpak:
|
|
|
|
return (None, "Couldn't find package ID", None)
|
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 VCSException as vcse:
|
2015-11-28 13:09:47 +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:
|
2015-11-28 13:09:47 +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:
|
|
|
|
|
2015-11-28 13:09:47 +01:00
|
|
|
if app.RepoType == 'srclib':
|
|
|
|
build_dir = os.path.join('build', 'srclib', app.Repo)
|
|
|
|
repotype = common.getsrclibvcs(app.Repo)
|
2013-05-24 23:35:56 +02:00
|
|
|
else:
|
2015-11-28 13:09:47 +01:00
|
|
|
build_dir = os.path.join('build', app.id)
|
|
|
|
repotype = app.RepoType
|
2012-03-10 13:50:34 +01:00
|
|
|
|
|
|
|
# Set up vcs interface and make sure we have the latest code...
|
2015-11-28 13:09:47 +01:00
|
|
|
vcs = common.getvcs(app.RepoType, 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:
|
2014-05-06 19:56:44 +02:00
|
|
|
branch = 'origin/' + branch
|
2013-09-15 23:20:27 +02:00
|
|
|
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 == '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
|
|
|
|
2015-11-28 17:55:27 +01:00
|
|
|
last_build = metadata.Build()
|
2015-11-28 13:09:47 +01:00
|
|
|
if len(app.builds) > 0:
|
2015-11-28 17:55:27 +01:00
|
|
|
last_build = app.builds[-1]
|
|
|
|
|
2017-12-04 15:10:21 +01:00
|
|
|
try_init_submodules(app, last_build, vcs)
|
2012-03-10 13:50:34 +01:00
|
|
|
|
2015-10-25 12:09:01 +01:00
|
|
|
hpak = None
|
|
|
|
hver = None
|
|
|
|
hcode = "0"
|
|
|
|
for subdir in possible_subdirs(app):
|
2015-10-25 19:09:55 +01:00
|
|
|
if subdir == '.':
|
|
|
|
root_dir = build_dir
|
|
|
|
else:
|
|
|
|
root_dir = os.path.join(build_dir, subdir)
|
2015-11-28 17:55:27 +01:00
|
|
|
paths = common.manifest_paths(root_dir, last_build.gradle)
|
2015-10-30 19:03:53 +01:00
|
|
|
version, vercode, package = common.parse_androidmanifests(paths, app)
|
2015-10-25 19:10:23 +01:00
|
|
|
if vercode:
|
2015-10-25 12:09:01 +01:00
|
|
|
logging.debug("Manifest exists in subdir '{0}'. Found version {1} ({2})"
|
|
|
|
.format(subdir, version, vercode))
|
|
|
|
if int(vercode) > int(hcode):
|
|
|
|
hpak = package
|
|
|
|
hcode = str(int(vercode))
|
|
|
|
hver = version
|
2013-08-08 12:55:48 +02:00
|
|
|
|
2015-10-25 12:09:01 +01:00
|
|
|
if not hpak:
|
2012-08-23 15:25:39 +02:00
|
|
|
return (None, "Couldn't find package ID")
|
2015-10-25 12:09:01 +01:00
|
|
|
if hver:
|
|
|
|
return (hver, hcode)
|
|
|
|
return (None, "Couldn't find any version information")
|
2012-03-10 13:50:34 +01:00
|
|
|
|
|
|
|
except VCSException as vcse:
|
2015-11-28 13:09:47 +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:
|
2015-11-28 13:09:47 +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
|
|
|
|
2017-04-13 12:30:04 +02:00
|
|
|
def check_repotrunk(app):
|
2013-10-17 23:27:55 +02:00
|
|
|
|
|
|
|
try:
|
2015-11-28 13:09:47 +01:00
|
|
|
if app.RepoType == 'srclib':
|
|
|
|
build_dir = os.path.join('build', 'srclib', app.Repo)
|
|
|
|
repotype = common.getsrclibvcs(app.Repo)
|
2013-10-17 23:27:55 +02:00
|
|
|
else:
|
2015-11-28 13:09:47 +01:00
|
|
|
build_dir = os.path.join('build', app.id)
|
|
|
|
repotype = app.RepoType
|
2013-10-17 23:27:55 +02:00
|
|
|
|
2014-07-18 12:39:24 +02:00
|
|
|
if repotype not in ('git-svn', ):
|
|
|
|
return (None, 'RepoTrunk update mode only makes sense in git-svn repositories')
|
2013-10-17 23:27:55 +02:00
|
|
|
|
|
|
|
# Set up vcs interface and make sure we have the latest code...
|
2015-11-28 13:09:47 +01:00
|
|
|
vcs = common.getvcs(app.RepoType, app.Repo, build_dir)
|
2013-10-17 23:27:55 +02:00
|
|
|
|
|
|
|
vcs.gotorevision(None)
|
|
|
|
|
|
|
|
ref = vcs.getref()
|
|
|
|
return (ref, ref)
|
|
|
|
except VCSException as vcse:
|
2015-11-28 13:09:47 +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:
|
2015-11-28 13:09:47 +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)
|
2015-11-28 13:09:47 +01:00
|
|
|
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'}
|
2016-01-04 18:02:36 +01:00
|
|
|
req = urllib.request.Request(url, None, headers)
|
2013-02-11 16:24:01 +01:00
|
|
|
try:
|
2016-01-04 18:02:36 +01:00
|
|
|
resp = urllib.request.urlopen(req, None, 20)
|
2017-09-13 01:40:09 +02:00
|
|
|
page = resp.read().decode()
|
2016-01-04 18:02:36 +01:00
|
|
|
except urllib.error.HTTPError as e:
|
2013-08-14 14:24:34 +02:00
|
|
|
return (None, str(e.code))
|
2015-09-17 13:25:08 +02:00
|
|
|
except Exception as e:
|
2013-05-31 08:50:21 +02:00
|
|
|
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:
|
2017-09-13 01:42:15 +02:00
|
|
|
version = html.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
|
|
|
|
|
|
|
|
2017-12-04 15:10:21 +01:00
|
|
|
def try_init_submodules(app, last_build, vcs):
|
|
|
|
"""Try to init submodules if the last build entry used them.
|
|
|
|
They might have been removed from the app's repo in the meantime,
|
|
|
|
so if we can't find any submodules we continue with the updates check.
|
|
|
|
If there is any other error in initializing them then we stop the check.
|
|
|
|
"""
|
|
|
|
if last_build.submodules:
|
|
|
|
try:
|
|
|
|
vcs.initsubmodules()
|
|
|
|
except NoSubmodulesException:
|
|
|
|
logging.info("No submodules present for {}".format(app.Name))
|
|
|
|
|
|
|
|
|
2014-07-03 17:25:31 +02:00
|
|
|
# Return all directories under startdir that contain any of the manifest
|
|
|
|
# files, and thus are probably an Android project.
|
|
|
|
def dirs_with_manifest(startdir):
|
2017-09-14 08:44:43 +02:00
|
|
|
for root, dirs, files in os.walk(startdir):
|
|
|
|
if any(m in files for m in [
|
2014-07-03 17:25:31 +02:00
|
|
|
'AndroidManifest.xml', 'pom.xml', 'build.gradle']):
|
2017-09-14 08:44:43 +02:00
|
|
|
yield root
|
2014-07-03 17:25:31 +02:00
|
|
|
|
|
|
|
|
|
|
|
# Tries to find a new subdir starting from the root build_dir. Returns said
|
|
|
|
# subdir relative to the build dir if found, None otherwise.
|
2015-10-25 12:00:02 +01:00
|
|
|
def possible_subdirs(app):
|
2014-07-03 17:25:31 +02:00
|
|
|
|
2015-11-28 13:09:47 +01:00
|
|
|
if app.RepoType == 'srclib':
|
|
|
|
build_dir = os.path.join('build', 'srclib', app.Repo)
|
2014-07-03 17:25:31 +02:00
|
|
|
else:
|
2015-11-28 13:09:47 +01:00
|
|
|
build_dir = os.path.join('build', app.id)
|
2014-07-03 17:25:31 +02:00
|
|
|
|
2016-11-18 23:17:19 +01:00
|
|
|
last_build = app.get_last_build()
|
2014-07-03 17:25:31 +02:00
|
|
|
|
|
|
|
for d in dirs_with_manifest(build_dir):
|
2015-11-28 17:55:27 +01:00
|
|
|
m_paths = common.manifest_paths(d, last_build.gradle)
|
2015-10-30 19:03:53 +01:00
|
|
|
package = common.parse_androidmanifests(m_paths, app)[2]
|
|
|
|
if package is not None:
|
2015-10-25 12:00:02 +01:00
|
|
|
subdir = os.path.relpath(d, build_dir)
|
|
|
|
logging.debug("Adding possible subdir %s" % subdir)
|
|
|
|
yield subdir
|
2014-07-03 17:25:31 +02:00
|
|
|
|
|
|
|
|
2014-07-04 09:55:06 +02:00
|
|
|
def fetch_autoname(app, tag):
|
|
|
|
|
2015-11-28 13:09:47 +01:00
|
|
|
if not app.RepoType or app.UpdateCheckMode in ('None', 'Static'):
|
2014-07-04 09:55:06 +02:00
|
|
|
return None
|
|
|
|
|
2015-11-28 13:09:47 +01:00
|
|
|
if app.RepoType == 'srclib':
|
|
|
|
build_dir = os.path.join('build', 'srclib', app.Repo)
|
2014-07-04 09:55:06 +02:00
|
|
|
else:
|
2015-11-28 13:09:47 +01:00
|
|
|
build_dir = os.path.join('build', app.id)
|
2014-07-04 09:55:06 +02:00
|
|
|
|
|
|
|
try:
|
2015-11-28 13:09:47 +01:00
|
|
|
vcs = common.getvcs(app.RepoType, app.Repo, build_dir)
|
2014-07-04 09:55:06 +02:00
|
|
|
vcs.gotorevision(tag)
|
|
|
|
except VCSException:
|
|
|
|
return None
|
|
|
|
|
2016-11-18 23:17:19 +01:00
|
|
|
last_build = app.get_last_build()
|
2014-07-04 09:55:06 +02:00
|
|
|
|
2015-11-14 10:24:43 +01:00
|
|
|
logging.debug("...fetch auto name from " + build_dir)
|
2015-11-14 22:05:28 +01:00
|
|
|
new_name = None
|
2015-11-14 10:24:43 +01:00
|
|
|
for subdir in possible_subdirs(app):
|
|
|
|
if subdir == '.':
|
|
|
|
root_dir = build_dir
|
|
|
|
else:
|
|
|
|
root_dir = os.path.join(build_dir, subdir)
|
2015-11-28 17:55:27 +01:00
|
|
|
new_name = common.fetch_real_name(root_dir, last_build.gradle)
|
2015-11-14 22:05:28 +01:00
|
|
|
if new_name is not None:
|
|
|
|
break
|
2015-01-13 09:25:27 +01:00
|
|
|
commitmsg = None
|
2015-06-03 14:35:31 +02:00
|
|
|
if new_name:
|
|
|
|
logging.debug("...got autoname '" + new_name + "'")
|
2015-11-28 13:09:47 +01:00
|
|
|
if new_name != app.AutoName:
|
|
|
|
app.AutoName = new_name
|
2014-07-04 09:55:06 +02:00
|
|
|
if not commitmsg:
|
|
|
|
commitmsg = "Set autoname of {0}".format(common.getappname(app))
|
2015-06-03 14:35:31 +02:00
|
|
|
else:
|
|
|
|
logging.debug("...couldn't get autoname")
|
2014-07-04 09:55:06 +02:00
|
|
|
|
|
|
|
return commitmsg
|
|
|
|
|
|
|
|
|
2017-04-13 12:30:04 +02:00
|
|
|
def checkupdates_app(app):
|
2014-07-03 17:25:31 +02: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
|
|
|
|
|
|
|
|
tag = None
|
|
|
|
msg = None
|
|
|
|
vercode = None
|
|
|
|
noverok = False
|
2015-11-28 13:09:47 +01:00
|
|
|
mode = app.UpdateCheckMode
|
2014-07-03 17:25:31 +02:00
|
|
|
if mode.startswith('Tags'):
|
|
|
|
pattern = mode[5:] if len(mode) > 4 else None
|
|
|
|
(version, vercode, tag) = check_tags(app, pattern)
|
2016-02-11 19:50:16 +01:00
|
|
|
if version == 'Unknown':
|
|
|
|
version = tag
|
2014-07-03 17:25:31 +02:00
|
|
|
msg = vercode
|
|
|
|
elif mode == 'RepoManifest':
|
|
|
|
(version, vercode) = check_repomanifest(app)
|
|
|
|
msg = vercode
|
|
|
|
elif mode.startswith('RepoManifest/'):
|
|
|
|
tag = mode[13:]
|
|
|
|
(version, vercode) = check_repomanifest(app, tag)
|
|
|
|
msg = vercode
|
|
|
|
elif mode == 'RepoTrunk':
|
|
|
|
(version, vercode) = check_repotrunk(app)
|
|
|
|
msg = vercode
|
|
|
|
elif mode == 'HTTP':
|
|
|
|
(version, vercode) = check_http(app)
|
|
|
|
msg = vercode
|
|
|
|
elif mode in ('None', 'Static'):
|
|
|
|
version = None
|
|
|
|
msg = 'Checking disabled'
|
|
|
|
noverok = True
|
|
|
|
else:
|
|
|
|
version = None
|
|
|
|
msg = 'Invalid update check method'
|
|
|
|
|
2015-11-28 13:09:47 +01:00
|
|
|
if version and vercode and app.VercodeOperation:
|
2015-09-09 19:26:33 +02:00
|
|
|
oldvercode = str(int(vercode))
|
2015-11-28 13:09:47 +01:00
|
|
|
op = app.VercodeOperation.replace("%c", oldvercode)
|
2014-07-03 17:25:31 +02:00
|
|
|
vercode = str(eval(op))
|
2015-09-09 19:26:33 +02:00
|
|
|
logging.debug("Applied vercode operation: %s -> %s" % (oldvercode, vercode))
|
2014-07-03 17:25:31 +02:00
|
|
|
|
2015-09-12 08:17:46 +02:00
|
|
|
if version and any(version.startswith(s) for s in [
|
|
|
|
'${', # Gradle variable names
|
|
|
|
'@string/', # Strings we could not resolve
|
|
|
|
]):
|
|
|
|
version = "Unknown"
|
|
|
|
|
2014-07-03 17:25:31 +02:00
|
|
|
updating = False
|
2014-07-04 09:55:06 +02:00
|
|
|
if version is None:
|
2015-11-28 13:09:47 +01:00
|
|
|
logmsg = "...{0} : {1}".format(app.id, msg)
|
2014-07-03 17:25:31 +02:00
|
|
|
if noverok:
|
|
|
|
logging.info(logmsg)
|
|
|
|
else:
|
|
|
|
logging.warn(logmsg)
|
2015-11-28 13:09:47 +01:00
|
|
|
elif vercode == app.CurrentVersionCode:
|
2014-07-03 17:25:31 +02:00
|
|
|
logging.info("...up to date")
|
|
|
|
else:
|
2017-03-15 09:58:08 +01:00
|
|
|
logging.debug("...updating - old vercode={0}, new vercode={1}".format(
|
|
|
|
app.CurrentVersionCode, vercode))
|
2015-11-28 13:09:47 +01:00
|
|
|
app.CurrentVersion = version
|
|
|
|
app.CurrentVersionCode = str(int(vercode))
|
2014-07-03 17:25:31 +02:00
|
|
|
updating = True
|
|
|
|
|
2014-07-04 09:55:06 +02:00
|
|
|
commitmsg = fetch_autoname(app, tag)
|
2014-07-03 17:25:31 +02:00
|
|
|
|
|
|
|
if updating:
|
|
|
|
name = common.getappname(app)
|
|
|
|
ver = common.getcvname(app)
|
|
|
|
logging.info('...updating to version %s' % ver)
|
|
|
|
commitmsg = 'Update CV of %s to %s' % (name, ver)
|
|
|
|
|
|
|
|
if options.auto:
|
2015-11-28 13:09:47 +01:00
|
|
|
mode = app.AutoUpdateMode
|
checkupdates: avoid crash with --auto and None CVC
Reproducible via `fdroid checkupdates --auto subreddit.android.appstore`
at fdroiddata HEAD (e76449ab).
WARNING: ...subreddit.android.appstore : Couldn't find package ID
CRITICAL: Unknown exception found!
Traceback (most recent call last):
File "/home/mvdan/.bin/fdroid", line 147, in <module>
main()
File "/home/mvdan/.bin/fdroid", line 124, in main
mod.main()
File "/home/mvdan/git/fsr/fdroidserver/checkupdates.py", line 571, in main
checkupdates_app(app)
File "/home/mvdan/git/fsr/fdroidserver/checkupdates.py", line 469, in checkupdates_app
if int(build.vercode) >= int(app.CurrentVersionCode):
TypeError: int() argument must be a string, a bytes-like object or a number, not 'NoneType'
2016-09-26 22:07:55 +02:00
|
|
|
if not app.CurrentVersionCode:
|
|
|
|
logging.warn("Can't auto-update app with no current version code: " + app.id)
|
|
|
|
elif mode in ('None', 'Static'):
|
2014-07-03 17:25:31 +02:00
|
|
|
pass
|
|
|
|
elif mode.startswith('Version '):
|
|
|
|
pattern = mode[8:]
|
|
|
|
if pattern.startswith('+'):
|
|
|
|
try:
|
|
|
|
suffix, pattern = pattern.split(' ', 1)
|
|
|
|
except ValueError:
|
|
|
|
raise MetaDataException("Invalid AUM: " + mode)
|
|
|
|
else:
|
|
|
|
suffix = ''
|
|
|
|
gotcur = False
|
|
|
|
latest = None
|
2015-11-28 13:09:47 +01:00
|
|
|
for build in app.builds:
|
2016-11-23 17:52:04 +01:00
|
|
|
if int(build.versionCode) >= int(app.CurrentVersionCode):
|
2014-07-03 17:25:31 +02:00
|
|
|
gotcur = True
|
2016-11-23 17:52:04 +01:00
|
|
|
if not latest or int(build.versionCode) > int(latest.versionCode):
|
2014-07-03 17:25:31 +02:00
|
|
|
latest = build
|
|
|
|
|
2016-11-23 17:52:04 +01:00
|
|
|
if int(latest.versionCode) > int(app.CurrentVersionCode):
|
2015-09-09 18:27:18 +02:00
|
|
|
logging.info("Refusing to auto update, since the latest build is newer")
|
|
|
|
|
2014-07-03 17:25:31 +02:00
|
|
|
if not gotcur:
|
2015-12-07 12:39:04 +01:00
|
|
|
newbuild = copy.deepcopy(latest)
|
2015-11-28 17:55:27 +01:00
|
|
|
newbuild.disable = False
|
2016-11-23 17:52:04 +01:00
|
|
|
newbuild.versionCode = app.CurrentVersionCode
|
|
|
|
newbuild.versionName = app.CurrentVersion + suffix
|
|
|
|
logging.info("...auto-generating build for " + newbuild.versionName)
|
|
|
|
commit = pattern.replace('%v', newbuild.versionName)
|
|
|
|
commit = commit.replace('%c', newbuild.versionCode)
|
2015-11-28 17:55:27 +01:00
|
|
|
newbuild.commit = commit
|
2015-11-28 13:09:47 +01:00
|
|
|
app.builds.append(newbuild)
|
2014-07-03 17:25:31 +02:00
|
|
|
name = common.getappname(app)
|
|
|
|
ver = common.getcvname(app)
|
|
|
|
commitmsg = "Update %s to %s" % (name, ver)
|
|
|
|
else:
|
2015-11-28 13:09:47 +01:00
|
|
|
logging.warn('Invalid auto update mode "' + mode + '" on ' + app.id)
|
2014-07-03 17:25:31 +02:00
|
|
|
|
|
|
|
if commitmsg:
|
2015-11-28 13:09:47 +01:00
|
|
|
metadatapath = os.path.join('metadata', app.id + '.txt')
|
2015-08-10 22:29:17 +02:00
|
|
|
metadata.write_metadata(metadatapath, app)
|
2014-07-03 17:25:31 +02:00
|
|
|
if options.commit:
|
2015-08-05 11:37:30 +02:00
|
|
|
logging.info("Commiting update for " + metadatapath)
|
2014-07-03 17:25:31 +02:00
|
|
|
gitcmd = ["git", "commit", "-m", commitmsg]
|
|
|
|
if 'auto_author' in config:
|
|
|
|
gitcmd.extend(['--author', config['auto_author']])
|
2015-08-05 11:37:30 +02:00
|
|
|
gitcmd.extend(["--", metadatapath])
|
2014-07-03 17:25:31 +02:00
|
|
|
if subprocess.call(gitcmd) != 0:
|
2017-05-22 21:33:52 +02:00
|
|
|
raise FDroidException("Git commit failed")
|
2014-07-03 17:25:31 +02:00
|
|
|
|
|
|
|
|
2018-01-17 21:11:32 +01:00
|
|
|
def update_wiki(gplaylog, locallog):
|
|
|
|
if config.get('wiki_server') and config.get('wiki_path'):
|
|
|
|
try:
|
|
|
|
import mwclient
|
|
|
|
site = mwclient.Site((config['wiki_protocol'], config['wiki_server']),
|
|
|
|
path=config['wiki_path'])
|
|
|
|
site.login(config['wiki_user'], config['wiki_password'])
|
|
|
|
|
|
|
|
# Write a page with the last build log for this version code
|
|
|
|
wiki_page_path = 'checkupdates_' + time.strftime('%s', start_timestamp)
|
|
|
|
newpage = site.Pages[wiki_page_path]
|
|
|
|
txt = ''
|
|
|
|
txt += "* command line: <code>" + ' '.join(sys.argv) + "</code>\n"
|
|
|
|
txt += "* started at " + common.get_wiki_timestamp(start_timestamp) + '\n'
|
|
|
|
txt += "* completed at " + common.get_wiki_timestamp() + '\n'
|
|
|
|
txt += "\n\n"
|
|
|
|
txt += common.get_android_tools_version_log()
|
|
|
|
txt += "\n\n"
|
|
|
|
if gplaylog:
|
|
|
|
txt += '== --gplay check ==\n\n'
|
|
|
|
txt += gplaylog
|
|
|
|
if locallog:
|
|
|
|
txt += '== local source check ==\n\n'
|
|
|
|
txt += locallog
|
|
|
|
newpage.save(txt, summary='Run log')
|
|
|
|
newpage = site.Pages['checkupdates']
|
|
|
|
newpage.save('#REDIRECT [[' + wiki_page_path + ']]', summary='Update redirect')
|
|
|
|
except Exception as e:
|
|
|
|
logging.error(_('Error while attempting to publish log: %s') % e)
|
|
|
|
|
|
|
|
|
2013-11-01 12:10:57 +01:00
|
|
|
config = None
|
|
|
|
options = None
|
2018-01-17 15:18:05 +01:00
|
|
|
start_timestamp = time.gmtime()
|
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...
|
2015-09-04 11:37:05 +02:00
|
|
|
parser = ArgumentParser(usage="%(prog)s [options] [APPID [APPID ...]]")
|
2015-09-12 08:42:50 +02:00
|
|
|
common.setup_global_opts(parser)
|
2017-09-15 11:41:39 +02:00
|
|
|
parser.add_argument("appid", nargs='*', help=_("applicationId to check for updates"))
|
2015-09-04 11:37:05 +02:00
|
|
|
parser.add_argument("--auto", action="store_true", default=False,
|
2017-09-13 18:03:57 +02:00
|
|
|
help=_("Process auto-updates"))
|
2015-09-04 11:37:05 +02:00
|
|
|
parser.add_argument("--autoonly", action="store_true", default=False,
|
2017-09-13 18:03:57 +02:00
|
|
|
help=_("Only process apps with auto-updates"))
|
2015-09-04 11:37:05 +02:00
|
|
|
parser.add_argument("--commit", action="store_true", default=False,
|
2017-09-13 18:03:57 +02:00
|
|
|
help=_("Commit changes"))
|
2015-09-04 11:37:05 +02:00
|
|
|
parser.add_argument("--gplay", action="store_true", default=False,
|
2017-09-13 18:03:57 +02:00
|
|
|
help=_("Only print differences with the Play Store"))
|
2016-09-12 12:55:48 +02:00
|
|
|
metadata.add_metadata_arguments(parser)
|
2015-09-04 11:37:05 +02:00
|
|
|
options = parser.parse_args()
|
2016-09-12 12:55:48 +02:00
|
|
|
metadata.warnings_action = options.W
|
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...
|
2014-05-20 18:48:45 +02:00
|
|
|
allapps = metadata.read_metadata()
|
2012-01-13 11:29:19 +01:00
|
|
|
|
2015-09-04 11:37:05 +02:00
|
|
|
apps = common.read_app_args(options.appid, allapps, False)
|
2012-01-23 22:26:51 +01:00
|
|
|
|
2018-01-17 15:21:16 +01:00
|
|
|
gplaylog = ''
|
2013-08-14 14:51:17 +02:00
|
|
|
if options.gplay:
|
2017-09-13 01:40:09 +02:00
|
|
|
for appid, app in apps.items():
|
2018-01-17 15:21:16 +01:00
|
|
|
gplaylog += '* ' + appid + '\n'
|
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:
|
2015-11-28 13:09:47 +01:00
|
|
|
stored = app.CurrentVersion
|
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))
|
2018-01-17 21:11:32 +01:00
|
|
|
update_wiki(gplaylog, None)
|
2013-08-14 14:24:34 +02:00
|
|
|
return
|
|
|
|
|
2018-01-17 15:21:16 +01:00
|
|
|
locallog = ''
|
2016-01-04 17:02:28 +01:00
|
|
|
for appid, app in apps.items():
|
2013-06-14 08:16:58 +02:00
|
|
|
|
2015-11-28 13:09:47 +01:00
|
|
|
if options.autoonly and app.AutoUpdateMode in ('None', 'Static'):
|
2017-09-15 23:20:29 +02:00
|
|
|
logging.debug(_("Nothing to do for {appid}.").format(appid=appid))
|
2013-10-31 15:43:36 +01:00
|
|
|
continue
|
2013-10-31 15:42:58 +01:00
|
|
|
|
2018-01-17 15:21:16 +01:00
|
|
|
msg = _("Processing {appid}").format(appid=appid)
|
|
|
|
logging.info(msg)
|
|
|
|
locallog += '* ' + msg + '\n'
|
2013-10-31 15:42:58 +01:00
|
|
|
|
2017-03-15 09:57:24 +01:00
|
|
|
try:
|
|
|
|
checkupdates_app(app)
|
|
|
|
except Exception as e:
|
2018-01-17 15:21:16 +01:00
|
|
|
msg = _("...checkupdate failed for {appid} : {error}").format(appid=appid, error=e)
|
|
|
|
logging.error(msg)
|
|
|
|
locallog += msg + '\n'
|
2012-02-26 15:18:58 +01:00
|
|
|
|
2018-01-17 21:11:32 +01:00
|
|
|
update_wiki(None, locallog)
|
2018-01-17 15:18:05 +01:00
|
|
|
|
2017-09-13 18:03:57 +02:00
|
|
|
logging.info(_("Finished"))
|
2012-02-26 15:18:58 +01:00
|
|
|
|
2016-11-15 21:55:06 +01:00
|
|
|
|
2012-02-26 15:18:58 +01:00
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|