2016-04-07 09:03:22 -04:00
|
|
|
#!/usr/bin/env python
|
2013-10-09 14:03:47 -04:00
|
|
|
#
|
|
|
|
# EXPERIMENTAL
|
|
|
|
# IRC <=> Zulip mirroring bot
|
|
|
|
#
|
|
|
|
# Setup: First, you need to install python-irc version 8.5.3
|
2016-10-10 17:15:23 -04:00
|
|
|
# (https://github.com/jaraco/irc)
|
2013-10-09 14:03:47 -04:00
|
|
|
|
2015-11-01 11:11:06 -05:00
|
|
|
from __future__ import print_function
|
2017-08-01 17:38:33 -04:00
|
|
|
import argparse
|
2017-09-01 10:27:46 -04:00
|
|
|
import zulip
|
|
|
|
import sys
|
|
|
|
import traceback
|
2017-09-04 07:57:08 -04:00
|
|
|
|
2016-11-30 15:45:02 -05:00
|
|
|
if False:
|
2017-03-03 13:01:52 -05:00
|
|
|
from typing import Any, Dict
|
2016-09-10 15:19:08 -04:00
|
|
|
|
2017-08-25 05:03:06 -04:00
|
|
|
usage = """./irc-mirror.py --irc-server=IRC_SERVER --channel=<CHANNEL> --nick-prefix=<NICK> [optional args]
|
2013-10-09 14:03:47 -04:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2016-11-21 19:44:16 -05:00
|
|
|
./irc-mirror.py --irc-server=127.0.0.1 --channel='#test' --nick-prefix=username
|
2017-08-25 05:03:06 -04:00
|
|
|
|
|
|
|
Specify your Zulip API credentials and server in a ~/.zuliprc file or using the options.
|
2013-10-09 14:03:47 -04:00
|
|
|
|
|
|
|
Note that "_zulip" will be automatically appended to the IRC nick provided
|
|
|
|
|
|
|
|
Also note that at present you need to edit this code to do the Zulip => IRC side
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2017-09-01 10:27:46 -04:00
|
|
|
parser = zulip.add_default_arguments(argparse.ArgumentParser(usage=usage), allow_provisioning=True)
|
2017-08-01 17:38:33 -04:00
|
|
|
parser.add_argument('--irc-server', default=None)
|
|
|
|
parser.add_argument('--port', default=6667)
|
|
|
|
parser.add_argument('--nick-prefix', default=None)
|
|
|
|
parser.add_argument('--channel', default=None)
|
|
|
|
|
|
|
|
options = parser.parse_args()
|
2013-10-09 14:03:47 -04:00
|
|
|
# Setting the client to irc_mirror is critical for this to work
|
|
|
|
options.client = "irc_mirror"
|
|
|
|
zulip_client = zulip.init_from_options(options)
|
2017-09-01 10:27:46 -04:00
|
|
|
try:
|
|
|
|
from irc_mirror_backend import IRCBot
|
|
|
|
except ImportError as e:
|
|
|
|
traceback.print_exc()
|
|
|
|
print("You have unsatisfied dependencies. Install all missing dependencies with "
|
|
|
|
"{} --provision".format(sys.argv[0]))
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
if options.irc_server is None or options.nick_prefix is None or options.channel is None:
|
|
|
|
parser.error("Missing required argument")
|
2013-10-09 14:03:47 -04:00
|
|
|
|
|
|
|
nickname = options.nick_prefix + "_zulip"
|
2017-09-04 07:51:55 -04:00
|
|
|
bot = IRCBot(zulip_client, options.channel, nickname, options.irc_server, options.port)
|
2013-10-09 14:03:47 -04:00
|
|
|
bot.start()
|