chiark / gitweb /
A few more verification fixes
[fdroidserver.git] / fdroidserver / verify.py
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3 #
4 # publish.py - part of the FDroid server tools
5 # Copyright (C) 2010-13, 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 shutil
23 import subprocess
24 import glob
25 from optparse import OptionParser
26
27 from common import BuildException
28
29 def main():
30
31     #Read configuration...
32     execfile('config.py', globals())
33
34     # Parse command line...
35     parser = OptionParser()
36     parser.add_option("-v", "--verbose", action="store_true", default=False,
37                       help="Spew out even more information than normal")
38     parser.add_option("-p", "--package", default=None,
39                       help="Verify only the specified package")
40     (options, args) = parser.parse_args()
41
42     tmp_dir = 'tmp'
43     if not os.path.isdir(tmp_dir):
44         print "Creating temporary directory"
45         os.makedirs(tmp_dir)
46
47     unsigned_dir = 'unsigned'
48     if not os.path.isdir(unsigned_dir):
49         print "No unsigned directory - nothing to do"
50         sys.exit(0)
51
52     for apkfile in sorted(glob.glob(os.path.join(unsigned_dir, '*.apk'))):
53
54         apkfilename = os.path.basename(apkfile)
55         i = apkfilename.rfind('_')
56         if i == -1:
57             raise BuildException("Invalid apk name")
58         appid = apkfilename[:i]
59         print "Processing " + apkfilename
60
61         if not options.package or options.package == appid:
62
63             remoteapk = os.path.join(tmp_dir, apkfilename)
64             if os.path.exists(remoteapk):
65                 os.remove(remoteapk)
66             url = 'https://f-droid.org/repo/' + apkfilename
67             print "...retrieving " + url
68             p = subprocess.Popen(['wget', url],
69                 cwd=tmp_dir,
70                 stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
71             out = p.communicate()[0]
72             if p.returncode != 0:
73                 print "Failed to get " + apkfilename
74                 sys.exit(1)
75
76             thisdir = os.path.join(tmp_dir, 'this_apk')
77             thatdir = os.path.join(tmp_dir, 'that_apk')
78             for d in [thisdir, thatdir]:
79                 if os.path.exists(d):
80                     shutil.rmtree(d)
81                 os.mkdir(d)
82
83             if subprocess.call(['jar', 'xf',
84                 os.path.join("..", "..", unsigned_dir, apkfilename)],
85                 cwd=thisdir) != 0:
86                 print "Failed to unpack local build of " + apkfilename
87                 sys.exit(1)
88             if subprocess.call(['jar', 'xf', os.path.join("..", "..", remoteapk)],
89                 cwd=thisdir) != 0:
90                 print "Failed to unpack remote build of " + apkfilename
91                 sys.exit(1)
92
93             p = subprocess.Popen(['diff', '-r', 'this_apk', 'that_apk'],
94                 cwd=tmp_dir, stdout=subprocess.PIPE)
95             out = p.communicate()[0]
96             lines = out.splitlines()
97             if len(lines) != 1 or lines[0].find('META-INF') == -1:
98                 print "Unexpected diff output"
99                 print out
100                 sys.exit(1)
101
102             print "...successfully verified"
103
104 if __name__ == "__main__":
105     main()
106
107