chiark / gitweb /
fdroid.py: a pointer to the -h option of commands
[fdroidserver.git] / fdroid
1 #!/usr/bin/python
2 # -*- coding: utf-8 -*-
3 #
4 # fdroid.py - part of the FDroid server tools
5 # Copyright (C) 2010-12, Ciaran Gultnieks, ciaran@ciarang.com
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 fdroidserver
22
23 commands = [
24         "build",
25         "update",
26         "publish",
27         "checkupdates",
28         "import",
29         "rewritemeta",
30         "scanner",
31         "stats",
32         "server"]
33
34 def print_help():
35     print "Valid commands are:"
36     for command in commands:
37         print "  " + command
38     print "Use '%s <command> -h' for more info about that command."%sys.argv[0]
39
40 def main():
41
42     if len(sys.argv) <= 1:
43         print_help()
44         sys.exit(0)
45
46     command = sys.argv[1]
47     if not command in commands:
48         print "Command '" + command + "' not recognised."
49         print ""
50         print_help()
51         sys.exit(1)
52
53     # Trick optparse into displaying the right usage when --help is used.
54     sys.argv[0] += ' ' + command
55
56     del sys.argv[1]
57     mod = __import__('fdroidserver.' + command, None, None, [command])
58     mod.main()
59     sys.exit(0)
60
61 if __name__ == "__main__":
62     main()
63