chiark / gitweb /
fix PEP8 "E302 expected 2 blank lines, found 1"
[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
42 def print_help():
43     print "usage: fdroid [-h|--help] <command> [<args>]"
44     print
45     print "Valid commands are:"
46     for cmd, summary in commands.items():
47         print "   " + cmd + ' '*(15-len(cmd)) + summary
48     print
49
50
51 def main():
52
53     if len(sys.argv) <= 1:
54         print_help()
55         sys.exit(0)
56
57     command = sys.argv[1]
58     if command not in commands:
59         if command in ('-h', '--help'):
60             print_help()
61             sys.exit(0)
62         else:
63             print "Command '%s' not recognised.\n" % command
64             print_help()
65             sys.exit(1)
66
67     verbose = any(s in sys.argv for s in ['-v', '--verbose'])
68     quiet = any(s in sys.argv for s in ['-q', '--quiet'])
69     if verbose and quiet:
70         print "Specifying verbose and quiet and the same time is silly"
71         sys.exit(1)
72
73     if verbose:
74         logging.basicConfig(format='%(levelname)s: %(message)s', level=logging.DEBUG)
75     elif quiet:
76         logging.basicConfig(format='%(levelname)s: %(message)s', level=logging.WARN)
77     else:
78         logging.basicConfig(format='%(message)s', level=logging.INFO)
79
80     # Trick optparse into displaying the right usage when --help is used.
81     sys.argv[0] += ' ' + command
82
83     del sys.argv[1]
84     mod = __import__('fdroidserver.' + command, None, None, [command])
85     mod.main()
86     sys.exit(0)
87
88 if __name__ == "__main__":
89     main()
90