X-Git-Url: https://jfr.im/git/irc/quakenet/qwebirc.git/blobdiff_plain/4bc06f300af19f6371fbdef71755c6d24c15912d..ad986f3a5d67626877b94bfe0f2fba8303cc9a3c:/run.py diff --git a/run.py b/run.py index acea65b..2d44a3a 100755 --- a/run.py +++ b/run.py @@ -1,13 +1,15 @@ #!/usr/bin/env python -# this entire thing is a hack +# this entire thing is a hack and badly needs reimplementing +import bin.compile +bin.compile.vcheck() + DEFAULT_PORT = 9090 -import qwebirc -from twisted.scripts.twistd import run from optparse import OptionParser -import sys, os +import sys, os, config def run_twistd(args1=None, args2=None): + from twisted.scripts.twistd import run args = [sys.argv[0]] if args1 is not None: args.extend(args1) @@ -30,9 +32,24 @@ parser.add_option("-b", "--debug", help="Run in the Python Debugger.", action="s parser.add_option("-t", "--tracebacks", help="Display tracebacks in error pages (this reveals a LOT of information, do NOT use in production!)", action="store_true", dest="tracebacks", default=False) parser.add_option("-r", "--reactor", help="Which reactor to use (see --help-reactors for a list).", dest="reactor", default=DEFAULT_REACTOR) parser.add_option("-p", "--port", help="Port to start the server on.", type="int", dest="port", default=DEFAULT_PORT) +parser.add_option("-i", "--ip", help="IP address to listen on.", dest="ip", default="0.0.0.0") parser.add_option("-l", "--logfile", help="Path to twisted log file.", dest="logfile") parser.add_option("-c", "--clf", help="Path to web CLF (Combined Log Format) log file.", dest="clogfile") -(options, args) = parser.parse_args() +parser.add_option("-C", "--certificate", help="Path to SSL certificate.", dest="sslcertificate") +parser.add_option("-k", "--key", help="Path to SSL key.", dest="sslkey") +parser.add_option("-H", "--certificate-chain", help="Path to SSL certificate chain file.", dest="sslchain") +parser.add_option("-P", "--pidfile", help="Path to store PID file", dest="pidfile") +parser.add_option("-s", "--syslog", help="Log to syslog", action="store_true", dest="syslog", default=False) +parser.add_option("--profile", help="Run in profile mode, dumping results to this file", dest="profile") +parser.add_option("--profiler", help="Name of profiler to use", dest="profiler") +parser.add_option("--syslog-prefix", help="Syslog prefix", dest="syslog_prefix", default="qwebirc") + +sargs = sys.argv[1:] +if "ARGS" in dir(config): + import shlex + sargs = shlex.split(config.ARGS) + sargs + +(options, args) = parser.parse_args(args=sargs) args1, args2 = [], [] @@ -42,14 +59,35 @@ if options.debug: args1.append("-b") if options.reactor != DEFAULT_REACTOR: - args1+=["--reactor", options.reactor] + rn = options.reactor + "reactor" + getattr(__import__("twisted.internet", fromlist=[rn]), rn).install() if options.logfile: - args+=["--logfile", options.logfile] + args1+=["--logfile", options.logfile] +if options.pidfile: + args1+=["--pidfile", options.pidfile] +if options.syslog: + args1+=["--syslog"] +if options.profile: + args1+=["--profile", options.profile] +if options.profiler: + args1+=["--profiler", options.profiler] + +if options.syslog and options.syslog_prefix: + import syslog + syslog.openlog(options.syslog_prefix) -args2+=["--port", options.port] if not options.tracebacks: args2.append("-n") if options.clogfile: args2+=["--logfile", options.clogfile] +if options.sslcertificate and options.sslkey: + args2+=["--certificate", options.sslcertificate, "--privkey", options.sslkey, "--https", options.port] + if options.sslchain: + args2+=["--certificate-chain", options.sslchain] +else: + args2+=["--port", options.port] + +args2+=["--ip", options.ip] + run_twistd(args1, args2)