chiark / gitweb /
Remove some unnecessary stuff
[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 shutil
23 import subprocess
24 import glob
25 from optparse import OptionParser
26
27 import common
28
29 options = None
30 config = None
31
32 def main():
33
34     global options, config
35
36     # Parse command line...
37     parser = OptionParser()
38     parser.add_option("-v", "--verbose", action="store_true", default=False,
39                       help="Spew out even more information than normal")
40     parser.add_option("-p", "--package", default=None,
41                       help="Verify only the specified package")
42     (options, args) = parser.parse_args()
43
44     config = common.read_config(options)
45
46     tmp_dir = 'tmp'
47     if not os.path.isdir(tmp_dir):
48         print "Creating temporary directory"
49         os.makedirs(tmp_dir)
50
51     unsigned_dir = 'unsigned'
52     if not os.path.isdir(unsigned_dir):
53         print "No unsigned directory - nothing to do"
54         sys.exit(0)
55
56     verified = 0
57     notverified = 0
58
59     vercodes = common.read_pkg_args(args, 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.apknameinfo(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             print "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             print "...retrieving " + url
80             p = subprocess.Popen(['wget', url],
81                 cwd=tmp_dir,
82                 stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
83             out = p.communicate()[0]
84             if p.returncode != 0:
85                 raise Exception("Failed to get " + apkfilename)
86
87             thisdir = os.path.join(tmp_dir, 'this_apk')
88             thatdir = os.path.join(tmp_dir, 'that_apk')
89             for d in [thisdir, thatdir]:
90                 if os.path.exists(d):
91                     shutil.rmtree(d)
92                 os.mkdir(d)
93
94             if subprocess.call(['jar', 'xf',
95                 os.path.join("..", "..", unsigned_dir, apkfilename)],
96                 cwd=thisdir) != 0:
97                 raise Exception("Failed to unpack local build of " + apkfilename)
98             if subprocess.call(['jar', 'xf', os.path.join("..", "..", remoteapk)],
99                 cwd=thatdir) != 0:
100                 raise Exception("Failed to unpack remote build of " + apkfilename)
101
102             p = subprocess.Popen(['diff', '-r', 'this_apk', 'that_apk'],
103                 cwd=tmp_dir, stdout=subprocess.PIPE)
104             out = p.communicate()[0]
105             lines = out.splitlines()
106             if len(lines) != 1 or lines[0].find('META-INF') == -1:
107                 raise Exception("Unexpected diff output - " + out)
108
109             print "...successfully verified"
110             verified += 1
111
112         except Exception, e:
113             print "...NOT verified - {0}".format(e)
114             notverified += 1
115
116     print "\nFinished"
117     print "{0} successfully verified".format(verified)
118     print "{0} NOT verified".format(notverified)
119
120 if __name__ == "__main__":
121     main()
122
123