2013-10-31 13:25:39 +01:00
|
|
|
#!/usr/bin/env python2
|
2012-03-11 12:59:19 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
|
|
|
# fdroid.py - part of the FDroid server tools
|
2013-12-30 17:15:27 +01:00
|
|
|
# Copyright (C) 2010-13, Ciaran Gultnieks, ciaran@ciarang.com
|
2014-01-28 14:07:19 +01:00
|
|
|
# Copyright (C) 2013-2014 Daniel Martí <mvdan@mvdan.cc>
|
2012-03-11 12:59:19 +01:00
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Affero General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Affero General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
import sys
|
2014-01-27 15:59:40 +01:00
|
|
|
import logging
|
2012-03-11 12:59:19 +01:00
|
|
|
|
|
|
|
commands = [
|
|
|
|
"build",
|
2013-11-02 01:39:32 +01:00
|
|
|
"init",
|
2013-12-11 18:35:58 +01:00
|
|
|
"install",
|
2012-03-11 12:59:19 +01:00
|
|
|
"update",
|
|
|
|
"publish",
|
2013-08-29 15:14:09 +02:00
|
|
|
"verify",
|
2012-03-11 12:59:19 +01:00
|
|
|
"checkupdates",
|
|
|
|
"import",
|
2014-02-02 15:11:26 +01:00
|
|
|
"readmeta",
|
2012-03-11 12:59:19 +01:00
|
|
|
"rewritemeta",
|
2014-01-02 19:28:55 +01:00
|
|
|
"lint",
|
2012-03-11 12:59:19 +01:00
|
|
|
"scanner",
|
2012-03-11 14:17:37 +01:00
|
|
|
"stats",
|
|
|
|
"server"]
|
2012-03-11 12:59:19 +01:00
|
|
|
|
2012-03-11 22:15:17 +01:00
|
|
|
def print_help():
|
|
|
|
print "Valid commands are:"
|
|
|
|
for command in commands:
|
|
|
|
print " " + command
|
2012-03-12 21:31:58 +01:00
|
|
|
print "Use '%s <command> --help' for more info about that command."%sys.argv[0]
|
2012-03-11 22:15:17 +01:00
|
|
|
|
2012-03-11 12:59:19 +01:00
|
|
|
def main():
|
|
|
|
|
|
|
|
if len(sys.argv) <= 1:
|
2012-03-11 22:15:17 +01:00
|
|
|
print_help()
|
2012-03-11 12:59:19 +01:00
|
|
|
sys.exit(0)
|
|
|
|
|
|
|
|
command = sys.argv[1]
|
|
|
|
if not command in commands:
|
2013-06-06 15:27:53 +02:00
|
|
|
if command not in ('-h', '--help'):
|
|
|
|
print "Command '" + command + "' not recognised.\n"
|
2012-03-11 22:15:17 +01:00
|
|
|
print_help()
|
2012-03-11 12:59:19 +01:00
|
|
|
sys.exit(1)
|
|
|
|
|
2014-01-27 15:59:40 +01:00
|
|
|
verbose = any(s in sys.argv for s in ['-v', '--verbose'])
|
|
|
|
|
2014-02-09 12:39:43 +01:00
|
|
|
if verbose:
|
|
|
|
logging.basicConfig(format='%(levelname)s: %(message)s',
|
|
|
|
level=logging.DEBUG)
|
|
|
|
else:
|
|
|
|
logging.basicConfig(format='%(message)s',
|
|
|
|
level=logging.INFO)
|
2014-01-27 15:59:40 +01:00
|
|
|
|
2012-03-11 12:59:19 +01:00
|
|
|
# Trick optparse into displaying the right usage when --help is used.
|
|
|
|
sys.argv[0] += ' ' + command
|
|
|
|
|
|
|
|
del sys.argv[1]
|
|
|
|
mod = __import__('fdroidserver.' + command, None, None, [command])
|
|
|
|
mod.main()
|
|
|
|
sys.exit(0)
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|
|
|
|
|