chiark / gitweb /
build: log vcs tools version on every build attempt
[fdroidserver.git] / fdroid
1 #!/usr/bin/env python3
2 #
3 # fdroid.py - part of the FDroid server tools
4 # Copyright (C) 2010-2015, Ciaran Gultnieks, ciaran@ciarang.com
5 # Copyright (C) 2013-2014 Daniel Marti <mvdan@mvdan.cc>
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 logging
22
23 import fdroidserver.common
24 import fdroidserver.metadata
25 from fdroidserver import _
26 from argparse import ArgumentError
27 from collections import OrderedDict
28
29
30 commands = OrderedDict([
31     ("build", _("Build a package from source")),
32     ("init", _("Quickly start a new repository")),
33     ("publish", _("Sign and place packages in the repo")),
34     ("gpgsign", _("Add PGP signatures using GnuPG for packages in repo")),
35     ("update", _("Update repo information for new packages")),
36     ("verify", _("Verify the integrity of downloaded packages")),
37     ("checkupdates", _("Check for updates to applications")),
38     ("import", _("Add a new application from its source code")),
39     ("install", _("Install built packages on devices")),
40     ("readmeta", _("Read all the metadata files and exit")),
41     ("rewritemeta", _("Rewrite all the metadata files")),
42     ("lint", _("Warn about possible metadata errors")),
43     ("scanner", _("Scan the source code of a package")),
44     ("dscanner", _("Dynamically scan APKs post build")),
45     ("stats", _("Update the stats of the repo")),
46     ("server", _("Interact with the repo HTTP server")),
47     ("signindex", _("Sign indexes created using update --nosign")),
48     ("btlog", _("Update the binary transparency log for a URL")),
49     ("signatures", _("Extract signatures from APKs")),
50     ("nightly", _("Set up an app build for a nightly build repo")),
51 ])
52
53
54 def print_help():
55     print(_("usage: ") + _("fdroid [-h|--help|--version] <command> [<args>]"))
56     print("")
57     print(_("Valid commands are:"))
58     for cmd, summary in commands.items():
59         print("   " + cmd + ' ' * (15 - len(cmd)) + summary)
60     print("")
61
62
63 def main():
64
65     if len(sys.argv) <= 1:
66         print_help()
67         sys.exit(0)
68
69     command = sys.argv[1]
70     if command not in commands:
71         if command in ('-h', '--help'):
72             print_help()
73             sys.exit(0)
74         elif command == '--version':
75             import os.path
76             output = _('no version info found!')
77             cmddir = os.path.realpath(os.path.dirname(__file__))
78             moduledir = os.path.realpath(os.path.dirname(fdroidserver.common.__file__) + '/..')
79             if cmddir == moduledir:
80                 # running from git
81                 os.chdir(cmddir)
82                 if os.path.isdir('.git'):
83                     import subprocess
84                     try:
85                         output = subprocess.check_output(['git', 'describe'],
86                                                          stderr=subprocess.STDOUT,
87                                                          universal_newlines=True)
88                     except subprocess.CalledProcessError:
89                         output = 'git commit ' + subprocess.check_output(['git', 'rev-parse', 'HEAD'],
90                                                                          universal_newlines=True)
91                 elif os.path.exists('setup.py'):
92                     import re
93                     m = re.search(r'''.*[\s,\(]+version\s*=\s*["']([0-9a-z.]+)["'].*''',
94                                   open('setup.py').read(), flags=re.MULTILINE)
95                     if m:
96                         output = m.group(1) + '\n'
97             else:
98                 from pkg_resources import get_distribution
99                 output = get_distribution('fdroidserver').version + '\n'
100             print(output),
101             sys.exit(0)
102         else:
103             print(_("Command '%s' not recognised.\n" % command))
104             print_help()
105             sys.exit(1)
106
107     verbose = any(s in sys.argv for s in ['-v', '--verbose'])
108     quiet = any(s in sys.argv for s in ['-q', '--quiet'])
109
110     # Helpful to differentiate warnings from errors even when on quiet
111     logformat = '%(levelname)s: %(message)s'
112     loglevel = logging.INFO
113     if verbose:
114         loglevel = logging.DEBUG
115     elif quiet:
116         loglevel = logging.WARN
117
118     logging.basicConfig(format=logformat, level=loglevel)
119
120     if verbose and quiet:
121         logging.critical("Specifying --verbose and --quiet and the same time is silly")
122         sys.exit(1)
123
124     # Trick optparse into displaying the right usage when --help is used.
125     sys.argv[0] += ' ' + command
126
127     del sys.argv[1]
128     mod = __import__('fdroidserver.' + command, None, None, [command])
129
130     try:
131         mod.main()
132     # These are ours, contain a proper message and are "expected"
133     except (fdroidserver.common.FDroidException,
134             fdroidserver.metadata.MetaDataException) as e:
135         if verbose:
136             raise
137         else:
138             logging.critical(str(e))
139         sys.exit(1)
140     except ArgumentError as e:
141         logging.critical(str(e))
142         sys.exit(1)
143     except KeyboardInterrupt:
144         print('')
145         sys.exit(1)
146     # These should only be unexpected crashes due to bugs in the code
147     # str(e) often doesn't contain a reason, so just show the backtrace
148     except Exception as e:
149         logging.critical(_("Unknown exception found!"))
150         raise
151     sys.exit(0)
152
153
154 if __name__ == "__main__":
155     main()