chiark / gitweb /
Don't show INFO: when not doing verbose runs
[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",
26         "init",
27         "install",
28         "update",
29         "publish",
30         "verify",
31         "checkupdates",
32         "import",
33         "readmeta",
34         "rewritemeta",
35         "lint",
36         "scanner",
37         "stats",
38         "server"]
39
40 def print_help():
41     print "Valid commands are:"
42     for command in commands:
43         print "  " + command
44     print "Use '%s <command> --help' for more info about that command."%sys.argv[0]
45
46 def main():
47
48     if len(sys.argv) <= 1:
49         print_help()
50         sys.exit(0)
51
52     command = sys.argv[1]
53     if not command in commands:
54         if command not in ('-h', '--help'):
55             print "Command '" + command + "' not recognised.\n"
56         print_help()
57         sys.exit(1)
58
59     verbose = any(s in sys.argv for s in ['-v', '--verbose'])
60
61     if verbose:
62         logging.basicConfig(format='%(levelname)s: %(message)s',
63                 level=logging.DEBUG)
64     else:
65         logging.basicConfig(format='%(message)s',
66                 level=logging.INFO)
67
68     # Trick optparse into displaying the right usage when --help is used.
69     sys.argv[0] += ' ' + command
70
71     del sys.argv[1]
72     mod = __import__('fdroidserver.' + command, None, None, [command])
73     mod.main()
74     sys.exit(0)
75
76 if __name__ == "__main__":
77     main()
78