chiark / gitweb /
makebuildserver: update platform and build tool releases
[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 os
20 import glob
21 from argparse import ArgumentParser
22 import logging
23
24 from . import common
25 from .common import FDroidPopen
26 from .exception import FDroidException
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             raise FDroidException("Missing output directory '" + output_dir + "'")
50
51         # Process any apks that are waiting to be signed...
52         for f in sorted(glob.glob(os.path.join(output_dir, '*.*'))):
53             if common.get_file_extension(f) == 'asc':
54                 continue
55             if not common.is_repo_file(f):
56                 continue
57             filename = os.path.basename(f)
58             sigfilename = filename + ".asc"
59             sigpath = os.path.join(output_dir, sigfilename)
60
61             if not os.path.exists(sigpath):
62                 gpgargs = ['gpg', '-a',
63                            '--output', sigpath,
64                            '--detach-sig']
65                 if 'gpghome' in config:
66                     gpgargs.extend(['--homedir', config['gpghome']])
67                 if 'gpgkey' in config:
68                     gpgargs.extend(['--local-user', config['gpgkey']])
69                 gpgargs.append(os.path.join(output_dir, filename))
70                 p = FDroidPopen(gpgargs)
71                 if p.returncode != 0:
72                     raise FDroidException("Signing failed.")
73
74                 logging.info('Signed ' + filename)
75
76
77 if __name__ == "__main__":
78     main()