2012-04-28 00:42:03 +00:00
|
|
|
#!/usr/bin/env python
|
2012-06-21 02:29:49 +00:00
|
|
|
import argparse, sys
|
|
|
|
from libpathod import pathod, utils, version
|
2012-04-28 00:42:03 +00:00
|
|
|
|
2012-06-21 02:29:49 +00:00
|
|
|
if __name__ == "__main__":
|
|
|
|
parser = argparse.ArgumentParser(description='Process some integers.')
|
|
|
|
parser.add_argument("-p", dest='port', default=9999, type=int, help='Port. Specify 0 to pick an arbitrary empty port.')
|
|
|
|
parser.add_argument("-l", dest='address', default="0.0.0.0", type=str, help='Listening address.')
|
|
|
|
parser.add_argument(
|
2012-06-24 04:38:32 +00:00
|
|
|
"-a", dest='anchors', default=[], type=str, action="append", metavar="ANCHOR",
|
2012-06-21 02:29:49 +00:00
|
|
|
help='Add an anchor. Specified as a string with the form pattern=pagespec'
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
"-d", dest='staticdir', default=None, type=str,
|
|
|
|
help='Directory for static files.'
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
"-s", dest='ssl', default=False,
|
|
|
|
action="store_true",
|
|
|
|
help='Serve with SSL.'
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
"--keyfile", dest='ssl_keyfile', default=None,
|
|
|
|
type=str,
|
|
|
|
help='SSL key file. If not specified, a default key is used.'
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
"--certfile", dest='ssl_certfile', default=None,
|
|
|
|
type=str,
|
|
|
|
help='SSL cert file. If not specified, a default cert is used.'
|
|
|
|
)
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
sl = [args.ssl_keyfile, args.ssl_certfile]
|
|
|
|
if any(sl) and not all(sl):
|
|
|
|
parser.error("Both --certfile and --keyfile must be specified.")
|
|
|
|
|
|
|
|
if args.ssl:
|
|
|
|
ssl = dict(
|
|
|
|
keyfile = args.ssl_keyfile or utils.data.path("resources/server.key"),
|
|
|
|
certfile = args.ssl_certfile or utils.data.path("resources/server.crt"),
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
ssl = None
|
|
|
|
|
2012-06-24 04:38:32 +00:00
|
|
|
alst = []
|
|
|
|
for i in args.anchors:
|
|
|
|
parts = utils.parse_anchor_spec(i)
|
|
|
|
if not parts:
|
|
|
|
parser.error("Invalid anchor specification: %s"%i)
|
|
|
|
alst.append(parts)
|
|
|
|
|
|
|
|
try:
|
|
|
|
pd = pathod.Pathod(
|
|
|
|
(args.address, args.port),
|
|
|
|
ssloptions = ssl,
|
|
|
|
staticdir = args.staticdir,
|
|
|
|
anchors = alst
|
|
|
|
)
|
|
|
|
except pathod.PathodError, v:
|
|
|
|
parser.error(str(v))
|
2012-06-21 02:29:49 +00:00
|
|
|
try:
|
|
|
|
print "%s listening on port %s"%(version.NAMEVERSION, pd.port)
|
|
|
|
pd.serve_forever()
|
|
|
|
except KeyboardInterrupt:
|
|
|
|
pass
|