chiark / gitweb /
Merge branch 'support-vagrant-cachier' into 'master'
[fdroidserver.git] / fdroidserver / gpgsign.py
1 #!/usr/bin/env python2
2 # -*- coding: utf-8 -*-
3 #
4 # gpgsign.py - part of the FDroid server tools
5 # Copyright (C) 2014, 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
28
29 config = None
30 options = None
31
32
33 def main():
34
35     global config, options
36
37     # Parse command line...
38     parser = OptionParser(usage="Usage: %prog [options]")
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     repodirs = ['repo']
48     if config['archive_older'] != 0:
49         repodirs.append('archive')
50
51     for output_dir in repodirs:
52         if not os.path.isdir(output_dir):
53             logging.error("Missing output directory '" + output_dir + "'")
54             sys.exit(1)
55
56         # Process any apks that are waiting to be signed...
57         for apkfile in sorted(glob.glob(os.path.join(output_dir, '*.apk'))):
58
59             apkfilename = os.path.basename(apkfile)
60             sigfilename = apkfilename + ".asc"
61             sigpath = os.path.join(output_dir, sigfilename)
62
63             if not os.path.exists(sigpath):
64                 gpgargs = ['gpg', '-a',
65                            '--output', sigpath,
66                            '--detach-sig']
67                 if 'gpghome' in config:
68                     gpgargs.extend(['--homedir', config['gpghome']])
69                 gpgargs.append(os.path.join(output_dir, apkfilename))
70                 p = FDroidPopen(gpgargs)
71                 if p.returncode != 0:
72                     logging.error("Signing failed.")
73                     sys.exit(1)
74
75                 logging.info('Signed ' + apkfilename)
76
77
78 if __name__ == "__main__":
79     main()