chiark / gitweb /
07b0b155b65680172d79196780ed47d2eb4f1c9a
[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 argparse import ArgumentParser
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 = ArgumentParser(usage="%(prog)s [options]")
39     common.setup_global_opts(parser)
40     options = parser.parse_args()
41
42     config = common.read_config(options)
43
44     repodirs = ['repo']
45     if config['archive_older'] != 0:
46         repodirs.append('archive')
47
48     for output_dir in repodirs:
49         if not os.path.isdir(output_dir):
50             logging.error("Missing output directory '" + output_dir + "'")
51             sys.exit(1)
52
53         # Process any apks that are waiting to be signed...
54         for apkfile in sorted(glob.glob(os.path.join(output_dir, '*.apk'))):
55
56             apkfilename = os.path.basename(apkfile)
57             sigfilename = apkfilename + ".asc"
58             sigpath = os.path.join(output_dir, sigfilename)
59
60             if not os.path.exists(sigpath):
61                 gpgargs = ['gpg', '-a',
62                            '--output', sigpath,
63                            '--detach-sig']
64                 if 'gpghome' in config:
65                     gpgargs.extend(['--homedir', config['gpghome']])
66                 if 'gpgkey' in config:
67                     gpgargs.extend(['--local-user', config['gpgkey']])
68                 gpgargs.append(os.path.join(output_dir, apkfilename))
69                 p = FDroidPopen(gpgargs)
70                 if p.returncode != 0:
71                     logging.error("Signing failed.")
72                     sys.exit(1)
73
74                 logging.info('Signed ' + apkfilename)
75
76
77 if __name__ == "__main__":
78     main()