chiark / gitweb /
Don't use logging before it's set up
[fdroidserver.git] / fdroid
1 #!/usr/bin/env python2
2 # -*- coding: utf-8 -*-
3 #
4 # fdroid.py - part of the FDroid server tools
5 # Copyright (C) 2010-13, Ciaran Gultnieks, ciaran@ciarang.com
6 # Copyright (C) 2013-2014 Daniel Martí <mvdan@mvdan.cc>
7 #
8 # This program is free software: you can redistribute it and/or modify
9 # it under the terms of the GNU Affero General Public License as published by
10 # the Free Software Foundation, either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU Affero General Public License for more details.
17 #
18 # You should have received a copy of the GNU Affero General Public License
19 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
21 import sys
22 import logging
23
24 commands = {
25         "build": "Build a package from source",
26         "init": "Quickly start a new repository",
27         "publish": "Sign and place packages in the repo",
28         "update": "Update repo information for new packages",
29         "verify": "Verify the integrity of downloaded packages",
30         "checkupdates": "Check for updates to applications",
31         "import": "Add a new application from its source code",
32         "install": "Install built packages on devices",
33         "readmeta": "Read all the metadata files and exit",
34         "rewritemeta": "Rewrite all the metadata files",
35         "lint": "Warn about possible metadata errors",
36         "scanner": "Scan the source code of a package",
37         "stats": "Update the stats of the repo",
38         "server": "Interact with the repo HTTP server",
39         }
40
41 def print_help():
42     print "usage: fdroid [-h|--help] <command> [<args>]"
43     print
44     print "Valid commands are:"
45     for cmd,summary in commands.items():
46         print "   " + cmd + ' '*(15-len(cmd)) + summary
47     print
48
49 def main():
50
51     if len(sys.argv) <= 1:
52         print_help()
53         sys.exit(0)
54
55     command = sys.argv[1]
56     if command not in commands:
57         if command in ('-h', '--help'):
58             print_help()
59             sys.exit(0)
60         else:
61             print "Command '%s' not recognised.\n" % command
62             print_help()
63             sys.exit(1)
64
65     verbose = any(s in sys.argv for s in ['-v', '--verbose'])
66
67     if verbose:
68         logging.basicConfig(format='%(levelname)s: %(message)s', level=logging.DEBUG)
69     else:
70         logging.basicConfig(format='%(message)s', level=logging.INFO)
71
72     # Trick optparse into displaying the right usage when --help is used.
73     sys.argv[0] += ' ' + command
74
75     del sys.argv[1]
76     mod = __import__('fdroidserver.' + command, None, None, [command])
77     mod.main()
78     sys.exit(0)
79
80 if __name__ == "__main__":
81     main()
82