1
0
Fork 0

Server factory takes initializer dict

This commit is contained in:
nemunaire 2015-10-26 06:23:32 +01:00
parent 59ea2e971b
commit 92530ef1b2
1 changed files with 8 additions and 4 deletions

View File

@ -26,14 +26,14 @@ _wlist = []
_xlist = []
def factory(uri):
def factory(uri, **init_args):
from urllib.parse import urlparse, unquote
o = urlparse(uri)
if o.scheme == "irc" or o.scheme == "ircs":
# http://www.w3.org/Addressing/draft-mirashi-url-irc-01.txt
# http://www-archive.mozilla.org/projects/rt-messaging/chatzilla/irc-urls.html
args = dict()
args = init_args
modifiers = o.path.split(",")
target = unquote(modifiers.pop(0)[1:])
@ -51,9 +51,13 @@ def factory(uri):
else:
key, val = q, ""
if key == "msg":
args["on_connect"] = [ "PRIVMSG %s :%s" % (target, unquote(val)) ]
if "on_connect" not in args:
args["on_connect"] = []
args["on_connect"].append("PRIVMSG %s :%s" % (target, unquote(val)))
elif key == "key":
args["channels"] = [ (target, unquote(val)) ]
if "channels" not in args:
args["channels"] = []
args["channels"].append((target, unquote(val)))
elif key == "pass":
args["password"] = unquote(val)
elif key == "charset":