2017-08-10 15:20:44 -04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
import os
|
|
|
|
import logging
|
|
|
|
import signal
|
|
|
|
import traceback
|
2018-05-11 06:08:29 -04:00
|
|
|
import zulip
|
|
|
|
import sys
|
2017-08-10 15:20:44 -04:00
|
|
|
|
|
|
|
from types import FrameType
|
|
|
|
from typing import Any, Callable, Dict
|
|
|
|
|
|
|
|
from matrix_bridge_config import config
|
2018-05-11 06:08:29 -04:00
|
|
|
from matrix_client.api import MatrixRequestError
|
2017-08-10 15:20:44 -04:00
|
|
|
from matrix_client.client import MatrixClient
|
|
|
|
|
|
|
|
def die(signal: int, frame: FrameType) -> None:
|
|
|
|
# We actually want to exit, so run os._exit (so as not to be caught and restarted)
|
|
|
|
os._exit(1)
|
|
|
|
|
|
|
|
def zulip_to_matrix_username(full_name: str, site: str) -> str:
|
|
|
|
return "@**{0}**:{1}".format(full_name, site)
|
|
|
|
|
2018-05-11 06:08:29 -04:00
|
|
|
def matrix_to_zulip(zulip_client: zulip.Client, zulip_config: Dict[str, Any],
|
|
|
|
matrix_config: Dict[str, Any]) -> Callable[[Any, Dict[str, Any]], None]:
|
2017-08-10 15:20:44 -04:00
|
|
|
def _matrix_to_zulip(room: Any, event: Dict[str, Any]) -> None:
|
|
|
|
"""
|
2018-05-11 06:08:29 -04:00
|
|
|
Matrix -> Zulip
|
|
|
|
"""
|
|
|
|
content = get_message_content_from_event(event)
|
|
|
|
|
|
|
|
zulip_bot_user = ('@%s:matrix.org' % matrix_config['username'])
|
|
|
|
# We do this to identify the messages generated from Zulip -> Matrix
|
|
|
|
# and we make sure we don't forward it again to the Zulip stream.
|
|
|
|
not_from_zulip_bot = ('body' not in event['content'] or
|
|
|
|
event['sender'] != zulip_bot_user)
|
|
|
|
|
|
|
|
if not_from_zulip_bot:
|
|
|
|
try:
|
|
|
|
result = zulip_client.send_message({
|
|
|
|
"sender": zulip_client.email,
|
|
|
|
"type": "stream",
|
|
|
|
"to": zulip_config["stream"],
|
|
|
|
"subject": zulip_config["subject"],
|
|
|
|
"content": content,
|
|
|
|
})
|
|
|
|
except MatrixRequestError as e:
|
|
|
|
# Generally raised when user is forbidden
|
|
|
|
raise Exception(e)
|
|
|
|
if result['result'] != 'success':
|
|
|
|
# Generally raised when API key is invalid
|
|
|
|
raise Exception(result['msg'])
|
|
|
|
|
2017-08-10 15:20:44 -04:00
|
|
|
return _matrix_to_zulip
|
|
|
|
|
2018-05-11 06:08:29 -04:00
|
|
|
def get_message_content_from_event(event: Dict[str, Any]) -> str:
|
|
|
|
if event['type'] == "m.room.member":
|
|
|
|
if event['membership'] == "join":
|
|
|
|
content = "{0} joined".format(event['sender'])
|
|
|
|
elif event['membership'] == "leave":
|
|
|
|
content = "{0} quit".format(event['sender'])
|
|
|
|
elif event['type'] == "m.room.message":
|
|
|
|
if event['content']['msgtype'] == "m.text" or event['content']['msgtype'] == "m.emote":
|
|
|
|
content = "{0}: {1}".format(event['sender'], event['content']['body'])
|
|
|
|
else:
|
|
|
|
content = event['type']
|
|
|
|
return content
|
|
|
|
|
|
|
|
def zulip_to_matrix(config: Dict[str, Any], room: Any) -> Callable[[Dict[str, Any]], None]:
|
|
|
|
site_without_http = config["site"].replace("https://", "").replace("http://", "")
|
2017-08-10 15:20:44 -04:00
|
|
|
|
|
|
|
def _zulip_to_matrix(msg: Dict[str, Any]) -> None:
|
2018-05-11 06:08:29 -04:00
|
|
|
"""
|
|
|
|
Zulip -> Matrix
|
2017-08-10 15:20:44 -04:00
|
|
|
"""
|
|
|
|
isa_stream = msg["type"] == "stream"
|
2018-05-11 06:08:29 -04:00
|
|
|
not_from_bot = msg["sender_email"] != config["email"]
|
|
|
|
in_the_specified_stream = msg["display_recipient"] == config["stream"]
|
|
|
|
at_the_specified_subject = msg["subject"] == config["subject"]
|
2017-08-10 15:20:44 -04:00
|
|
|
if isa_stream and not_from_bot and in_the_specified_stream and at_the_specified_subject:
|
|
|
|
matrix_username = zulip_to_matrix_username(msg["sender_full_name"], site_without_http)
|
|
|
|
matrix_text = "{0}: {1}".format(matrix_username,
|
|
|
|
msg["content"])
|
|
|
|
print(matrix_text)
|
|
|
|
room.send_text(matrix_text)
|
|
|
|
return _zulip_to_matrix
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
signal.signal(signal.SIGINT, die)
|
|
|
|
logging.basicConfig(level=logging.WARNING)
|
|
|
|
|
|
|
|
# Get config for each clients
|
|
|
|
zulip_config = config["zulip"]
|
|
|
|
matrix_config = config["matrix"]
|
|
|
|
|
|
|
|
# Initiate clients
|
|
|
|
backoff = zulip.RandomExponentialBackoff(timeout_success_equivalent=300)
|
|
|
|
while backoff.keep_going():
|
|
|
|
print("Starting matrix mirroring bot")
|
|
|
|
try:
|
|
|
|
zulip_client = zulip.Client(email=zulip_config["email"],
|
|
|
|
api_key=zulip_config["api_key"],
|
|
|
|
site=zulip_config["site"])
|
|
|
|
matrix_client = MatrixClient(matrix_config["host"])
|
|
|
|
|
|
|
|
# TODO this lacks the proper error handling
|
|
|
|
matrix_client.login_with_password(matrix_config["username"],
|
|
|
|
matrix_config["password"])
|
|
|
|
room = matrix_client.join_room(matrix_config["room_id"])
|
2018-05-11 06:08:29 -04:00
|
|
|
room.add_listener(matrix_to_zulip(zulip_client, zulip_config, matrix_config))
|
2017-08-10 15:20:44 -04:00
|
|
|
|
|
|
|
print("Starting listener thread on Matrix client")
|
|
|
|
matrix_client.start_listener_thread()
|
|
|
|
|
|
|
|
print("Starting message handler on Zulip client")
|
|
|
|
zulip_client.call_on_each_message(zulip_to_matrix(zulip_config, room))
|
|
|
|
except Exception:
|
|
|
|
traceback.print_exc()
|
|
|
|
backoff.fail()
|