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