chiark / gitweb /
Switch all headers to python3
[fdroidserver.git] / fdroidserver / gpgsign.py
1 #!/usr/bin/env python3
2 #
3 # gpgsign.py - part of the FDroid server tools
4 # Copyright (C) 2014, Ciaran Gultnieks, ciaran@ciarang.com
5 #
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU Affero General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU Affero General Public License for more details.
15 #
16 # You should have received a copy of the GNU Affero General Public License
17 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
18
19 import sys
20 import os
21 import glob
22 from argparse import ArgumentParser
23 import logging
24
25 import common
26 from common import FDroidPopen
27
28 config = None
29 options = None
30
31
32 def main():
33
34     global config, options
35
36     # Parse command line...
37     parser = ArgumentParser(usage="%(prog)s [options]")
38     common.setup_global_opts(parser)
39     options = parser.parse_args()
40
41     config = common.read_config(options)
42
43     repodirs = ['repo']
44     if config['archive_older'] != 0:
45         repodirs.append('archive')
46
47     for output_dir in repodirs:
48         if not os.path.isdir(output_dir):
49             logging.error("Missing output directory '" + output_dir + "'")
50             sys.exit(1)
51
52         # Process any apks that are waiting to be signed...
53         for apkfile in sorted(glob.glob(os.path.join(output_dir, '*.apk'))):
54
55             apkfilename = os.path.basename(apkfile)
56             sigfilename = apkfilename + ".asc"
57             sigpath = os.path.join(output_dir, sigfilename)
58
59             if not os.path.exists(sigpath):
60                 gpgargs = ['gpg', '-a',
61                            '--output', sigpath,
62                            '--detach-sig']
63                 if 'gpghome' in config:
64                     gpgargs.extend(['--homedir', config['gpghome']])
65                 if 'gpgkey' in config:
66                     gpgargs.extend(['--local-user', config['gpgkey']])
67                 gpgargs.append(os.path.join(output_dir, apkfilename))
68                 p = FDroidPopen(gpgargs)
69                 if p.returncode != 0:
70                     logging.error("Signing failed.")
71                     sys.exit(1)
72
73                 logging.info('Signed ' + apkfilename)
74
75
76 if __name__ == "__main__":
77     main()