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