chiark / gitweb /
Merge commit 'refs/merge-requests/93' of gitorious.org:f-droid/fdroidserver
[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 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
23 commands = [
24         "build",
25         "init",
26         "install",
27         "update",
28         "publish",
29         "verify",
30         "checkupdates",
31         "import",
32         "rewritemeta",
33         "lint",
34         "scanner",
35         "stats",
36         "server"]
37
38 def print_help():
39     print "Valid commands are:"
40     for command in commands:
41         print "  " + command
42     print "Use '%s <command> --help' for more info about that command."%sys.argv[0]
43
44 def main():
45
46     if len(sys.argv) <= 1:
47         print_help()
48         sys.exit(0)
49
50     command = sys.argv[1]
51     if not command in commands:
52         if command not in ('-h', '--help'):
53             print "Command '" + command + "' not recognised.\n"
54         print_help()
55         sys.exit(1)
56
57     # Trick optparse into displaying the right usage when --help is used.
58     sys.argv[0] += ' ' + command
59
60     del sys.argv[1]
61     mod = __import__('fdroidserver.' + command, None, None, [command])
62     mod.main()
63     sys.exit(0)
64
65 if __name__ == "__main__":
66     main()
67