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