chiark / gitweb /
Apply some autopep8-python2 suggestions
[fdroidserver.git] / fdroid
diff --git a/fdroid b/fdroid
index 77e468cfeb73e6272cb2ba8bb3e7d5ca2cc2fd89..ab901a7bb8038d15382b1f150cb9d7a569cea5e9 100755 (executable)
--- a/fdroid
+++ b/fdroid
 import sys
 import logging
 
+from fdroidserver.common import FDroidException
+from optparse import OptionError
+
 commands = {
-        "build": "Build a package from source",
-        "init": "Quickly start a new repository",
-        "publish": "Sign and place packages in the repo",
-        "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",
-        }
+    "build": "Build a package from source",
+    "init": "Quickly start a new repository",
+    "publish": "Sign and place packages in the repo",
+    "gpgsign": "Add gpg signatures for packages in repo",
+    "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",
+}
+
 
 def print_help():
     print "usage: fdroid [-h|--help] <command> [<args>]"
     print
     print "Valid commands are:"
-    for cmd,summary in commands.items():
-        print "   " + cmd + ' '*(15-len(cmd)) + summary
+    for cmd, summary in commands.items():
+        print "   " + cmd + ' ' * (15 - len(cmd)) + summary
     print
 
+
 def main():
 
     if len(sys.argv) <= 1:
@@ -63,20 +69,46 @@ def main():
             sys.exit(1)
 
     verbose = any(s in sys.argv for s in ['-v', '--verbose'])
+    quiet = any(s in sys.argv for s in ['-q', '--quiet'])
 
     if verbose:
         logging.basicConfig(format='%(levelname)s: %(message)s', level=logging.DEBUG)
+    elif quiet:
+        logging.basicConfig(format='%(message)s', level=logging.WARN)
     else:
         logging.basicConfig(format='%(message)s', level=logging.INFO)
 
+    if verbose and quiet:
+        logging.critical("Specifying --verbose and --quiet and the same time is silly")
+        sys.exit(1)
+
     # 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()
+
+    try:
+        mod.main()
+    # These are ours, contain a proper message and are "expected"
+    except FDroidException, e:
+        if verbose:
+            raise
+        else:
+            logging.critical(str(e))
+        sys.exit(1)
+    except OptionError, e:
+        logging.critical(str(e))
+        sys.exit(1)
+    except KeyboardInterrupt:
+        print('')
+        sys.exit(1)
+    # 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
     sys.exit(0)
 
 if __name__ == "__main__":
     main()
-