chiark / gitweb /
common: allow starting without a config file
[fdroidserver.git] / fdroidserver / verify.py
1 #!/usr/bin/env python3
2 #
3 # verify.py - part of the FDroid server tools
4 # Copyright (C) 2013, Ciaran Gultnieks, ciaran@ciarang.com
5 #
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU Affero General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU Affero General Public License for more details.
15 #
16 # You should have received a copy of the GNU Affero General Public License
17 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
18
19 import sys
20 import os
21 import glob
22 import requests
23 from argparse import ArgumentParser
24 import logging
25
26 from . import common
27 from . import net
28 from .exception import FDroidException
29
30 options = None
31 config = None
32
33
34 def main():
35
36     global options, config
37
38     # Parse command line...
39     parser = ArgumentParser(usage="%(prog)s [options] [APPID[:VERCODE] [APPID[:VERCODE] ...]]")
40     common.setup_global_opts(parser)
41     parser.add_argument("appid", nargs='*', help="app-id with optional versionCode in the form APPID[:VERCODE]")
42     options = parser.parse_args()
43
44     config = common.read_config(options)
45
46     tmp_dir = 'tmp'
47     if not os.path.isdir(tmp_dir):
48         logging.info("Creating temporary directory")
49         os.makedirs(tmp_dir)
50
51     unsigned_dir = 'unsigned'
52     if not os.path.isdir(unsigned_dir):
53         logging.error("No unsigned directory - nothing to do")
54         sys.exit(0)
55
56     verified = 0
57     notverified = 0
58
59     vercodes = common.read_pkg_args(options.appid, True)
60
61     for apkfile in sorted(glob.glob(os.path.join(unsigned_dir, '*.apk'))):
62
63         apkfilename = os.path.basename(apkfile)
64         appid, vercode = common.publishednameinfo(apkfile)
65
66         if vercodes and appid not in vercodes:
67             continue
68         if vercodes[appid] and vercode not in vercodes[appid]:
69             continue
70
71         try:
72
73             logging.info("Processing " + apkfilename)
74
75             remoteapk = os.path.join(tmp_dir, apkfilename)
76             if os.path.exists(remoteapk):
77                 os.remove(remoteapk)
78             url = 'https://f-droid.org/repo/' + apkfilename
79             logging.info("...retrieving " + url)
80             try:
81                 net.download_file(url, dldir=tmp_dir)
82             except requests.exceptions.HTTPError as e:
83                 try:
84                     net.download_file(url.replace('/repo', '/archive'), dldir=tmp_dir)
85                 except requests.exceptions.HTTPError as e:
86                     raise FDroidException('Downloading %s failed. %s', (url, e))
87
88             compare_result = common.verify_apks(
89                 remoteapk,
90                 os.path.join(unsigned_dir, apkfilename),
91                 tmp_dir)
92             if compare_result:
93                 raise FDroidException(compare_result)
94
95             logging.info("...successfully verified")
96             verified += 1
97
98         except FDroidException as e:
99             logging.info("...NOT verified - {0}".format(e))
100             notverified += 1
101
102     logging.info("Finished")
103     logging.info("{0} successfully verified".format(verified))
104     logging.info("{0} NOT verified".format(notverified))
105
106
107 if __name__ == "__main__":
108     main()