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
|
|
|
|
2014-07-03 13:59:36 +02:00
|
|
|
from fdroidserver.common import FDroidException
|
2014-08-25 17:48:18 +02:00
|
|
|
from optparse import OptionError
|
2014-07-03 13:59:36 +02:00
|
|
|
|
2014-02-19 00:38:09 +01:00
|
|
|
commands = {
|
2014-05-06 19:50:52 +02:00
|
|
|
"build": "Build a package from source",
|
|
|
|
"init": "Quickly start a new repository",
|
|
|
|
"publish": "Sign and place packages in the repo",
|
2014-05-12 22:55:59 +02:00
|
|
|
"gpgsign": "Add gpg signatures for packages in repo",
|
2014-05-06 19:50:52 +02:00
|
|
|
"update": "Update repo information for new packages",
|
|
|
|
"verify": "Verify the integrity of downloaded packages",
|
|
|
|
"checkupdates": "Check for updates to applications",
|
|
|
|
"import": "Add a new application from its source code",
|
|
|
|
"install": "Install built packages on devices",
|
|
|
|
"readmeta": "Read all the metadata files and exit",
|
|
|
|
"rewritemeta": "Rewrite all the metadata files",
|
|
|
|
"lint": "Warn about possible metadata errors",
|
|
|
|
"scanner": "Scan the source code of a package",
|
|
|
|
"stats": "Update the stats of the repo",
|
|
|
|
"server": "Interact with the repo HTTP server",
|
|
|
|
}
|
2012-03-11 12:59:19 +01:00
|
|
|
|
2014-05-02 05:39:33 +02:00
|
|
|
|
2012-03-11 22:15:17 +01:00
|
|
|
def print_help():
|
2014-02-19 00:38:09 +01:00
|
|
|
print "usage: fdroid [-h|--help] <command> [<args>]"
|
|
|
|
print
|
2012-03-11 22:15:17 +01:00
|
|
|
print "Valid commands are:"
|
2014-05-02 04:16:32 +02:00
|
|
|
for cmd, summary in commands.items():
|
2014-05-06 19:56:44 +02:00
|
|
|
print " " + cmd + ' ' * (15 - len(cmd)) + summary
|
2014-02-19 00:38:09 +01:00
|
|
|
print
|
2012-03-11 22:15:17 +01:00
|
|
|
|
2014-05-02 05:39:33 +02: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]
|
2014-02-19 00:38:09 +01:00
|
|
|
if command not in commands:
|
|
|
|
if command in ('-h', '--help'):
|
|
|
|
print_help()
|
|
|
|
sys.exit(0)
|
|
|
|
else:
|
2014-02-19 01:14:40 +01:00
|
|
|
print "Command '%s' not recognised.\n" % command
|
2014-02-19 00:38:09 +01:00
|
|
|
print_help()
|
|
|
|
sys.exit(1)
|
2012-03-11 12:59:19 +01:00
|
|
|
|
2014-01-27 15:59:40 +01:00
|
|
|
verbose = any(s in sys.argv for s in ['-v', '--verbose'])
|
2014-02-22 10:46:24 +01:00
|
|
|
quiet = any(s in sys.argv for s in ['-q', '--quiet'])
|
2014-01-27 15:59:40 +01:00
|
|
|
|
2014-02-09 12:39:43 +01:00
|
|
|
if verbose:
|
2014-02-19 00:38:09 +01:00
|
|
|
logging.basicConfig(format='%(levelname)s: %(message)s', level=logging.DEBUG)
|
2014-02-22 10:46:24 +01:00
|
|
|
elif quiet:
|
2014-07-05 14:15:31 +02:00
|
|
|
logging.basicConfig(format='%(message)s', level=logging.WARN)
|
2014-02-09 12:39:43 +01:00
|
|
|
else:
|
2014-02-19 00:38:09 +01:00
|
|
|
logging.basicConfig(format='%(message)s', level=logging.INFO)
|
2014-01-27 15:59:40 +01:00
|
|
|
|
2014-07-05 14:17:02 +02:00
|
|
|
if verbose and quiet:
|
|
|
|
logging.critical("Specifying --verbose and --quiet and the same time is silly")
|
|
|
|
sys.exit(1)
|
|
|
|
|
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])
|
2014-07-03 13:59:36 +02:00
|
|
|
|
2014-05-20 23:14:19 +02:00
|
|
|
try:
|
|
|
|
mod.main()
|
2014-07-03 13:59:36 +02:00
|
|
|
# These are ours, contain a proper message and are "expected"
|
|
|
|
except FDroidException, e:
|
2014-05-20 23:14:19 +02:00
|
|
|
if verbose:
|
|
|
|
raise
|
|
|
|
else:
|
2014-07-03 13:59:36 +02:00
|
|
|
logging.critical(str(e))
|
2014-05-20 23:14:19 +02:00
|
|
|
sys.exit(1)
|
2014-08-25 17:48:18 +02:00
|
|
|
except OptionError, e:
|
|
|
|
logging.critical(str(e))
|
|
|
|
sys.exit(1)
|
2014-07-03 18:26:49 +02:00
|
|
|
except KeyboardInterrupt:
|
|
|
|
print('')
|
|
|
|
sys.exit(1)
|
2014-07-03 13:59:36 +02:00
|
|
|
# These should only be unexpected crashes due to bugs in the code
|
|
|
|
# str(e) often doesn't contain a reason, so just show the backtrace
|
|
|
|
except Exception, e:
|
|
|
|
logging.critical("Unknown exception found!")
|
|
|
|
raise
|
2012-03-11 12:59:19 +01:00
|
|
|
sys.exit(0)
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|