chiark / gitweb /
fdroid.py: list commands when not giving a right command (I used ./fdroid -h and...
[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 main():
35
36     if len(sys.argv) <= 1:
37         print "Specify a command. Valid commands are:"
38         for command in commands:
39             print "  " + command
40         sys.exit(0)
41
42     command = sys.argv[1]
43     if not command in commands:
44         print "Command '" + command + "' not recognised."
45         print ""
46         print "Valid commands are:"
47         for command in commands:
48             print "  " + command
49         sys.exit(1)
50
51     # Trick optparse into displaying the right usage when --help is used.
52     sys.argv[0] += ' ' + command
53
54     del sys.argv[1]
55     mod = __import__('fdroidserver.' + command, None, None, [command])
56     mod.main()
57     sys.exit(0)
58
59 if __name__ == "__main__":
60     main()
61