chiark / gitweb /
Very simple verifier
[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             if subprocess.call(['wget',
67                 'https://f-droid.org/repo/' + apkfilename],
68                 cwd=tmp_dir) != 0:
69                 print "Failed to get " + apkfilename
70                 sys.exit(1)
71
72             thisdir = os.path.join(tmp_dir, 'this_apk')
73             thatdir = os.path.join(tmp_dir, 'that_apk')
74             for d in [thisdir, thatdir]:
75                 if os.path.exists(d):
76                     shutil.rmtree(d)
77                 os.mkdir(d)
78
79             if subprocess.call(['jar', 'xf',
80                 os.path.join(unsigned_dir, apkfilename)],
81                 cwd=thisdir) != 0:
82                 print "Failed to unpack local build of " + apkfilename
83                 sys.exit(1)
84             if subprocess.call(['jar', 'xf', remoteapk],
85                 cwd=thisdir) != 0:
86                 print "Failed to unpack remote build of " + apkfilename
87                 sys.exit(1)
88
89             p = subprocess.Popen(['diff', '-r', 'this_apk', 'that_apk'],
90                 cwd=tmp_dir, stdout=subprocess.PIPE)
91             out = p.communicate()[0]
92             lines = out.splitlines()
93             if len(lines) != 1 or lines[0].find('META-INF') == -1:
94                 print "Unexpected diff output"
95                 print out
96                 sys.exit(1)
97
98             print "...successfully verified"
99
100 if __name__ == "__main__":
101     main()
102
103