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